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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityhub/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.



27249
27250
27251
27252
27253
27254
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27249

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)


27249
27250
27251
27252
27253
27254
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27249

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