Class: Aws::SecurityHub::Types::IntegerConfigurationOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::IntegerConfigurationOptions
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
The options for customizing a security control parameter that is an integer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_value ⇒ Integer
The Security Hub default value for a control parameter that is an integer.
-
#max ⇒ Integer
The maximum valid value for a control parameter that is an integer.
-
#min ⇒ Integer
The minimum valid value for a control parameter that is an integer.
Instance Attribute Details
#default_value ⇒ Integer
The Security Hub default value for a control parameter that is an integer.
25972 25973 25974 25975 25976 25977 25978 |
# File 'lib/aws-sdk-securityhub/types.rb', line 25972 class IntegerConfigurationOptions < Struct.new( :default_value, :min, :max) SENSITIVE = [] include Aws::Structure end |
#max ⇒ Integer
The maximum valid value for a control parameter that is an integer.
25972 25973 25974 25975 25976 25977 25978 |
# File 'lib/aws-sdk-securityhub/types.rb', line 25972 class IntegerConfigurationOptions < Struct.new( :default_value, :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum valid value for a control parameter that is an integer.
25972 25973 25974 25975 25976 25977 25978 |
# File 'lib/aws-sdk-securityhub/types.rb', line 25972 class IntegerConfigurationOptions < Struct.new( :default_value, :min, :max) SENSITIVE = [] include Aws::Structure end |