Class: Aws::SecurityHub::Types::ParameterConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-securityhub/types.rb

Overview

An object that provides the current value of a security control parameter and identifies whether it has been customized.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#valueTypes::ParameterValue

The current value of a control parameter.



27400
27401
27402
27403
27404
27405
# File 'lib/aws-sdk-securityhub/types.rb', line 27400

class ParameterConfiguration < Struct.new(
  :value_type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#value_typeString

Identifies whether a control parameter uses a custom user-defined value or subscribes to the default Security Hub behavior.

When ‘ValueType` is set equal to `DEFAULT`, the default behavior can be a specific Security Hub default value, or the default behavior can be to ignore a specific parameter. When `ValueType` is set equal to `DEFAULT`, Security Hub ignores user-provided input for the `Value` field.

When ‘ValueType` is set equal to `CUSTOM`, the `Value` field can’t be empty.

Returns:

  • (String)


27400
27401
27402
27403
27404
27405
# File 'lib/aws-sdk-securityhub/types.rb', line 27400

class ParameterConfiguration < Struct.new(
  :value_type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end