Class: Aws::Inspector::Types::DurationRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector::Types::DurationRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-inspector/types.rb
Overview
This data type is used in the AssessmentTemplateFilter data type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_seconds ⇒ Integer
The maximum value of the duration range.
-
#min_seconds ⇒ Integer
The minimum value of the duration range.
Instance Attribute Details
#max_seconds ⇒ Integer
The maximum value of the duration range. Must be less than or equal to 604800 seconds (1 week).
1159 1160 1161 1162 1163 1164 |
# File 'lib/aws-sdk-inspector/types.rb', line 1159 class DurationRange < Struct.new( :min_seconds, :max_seconds) SENSITIVE = [] include Aws::Structure end |
#min_seconds ⇒ Integer
The minimum value of the duration range. Must be greater than zero.
1159 1160 1161 1162 1163 1164 |
# File 'lib/aws-sdk-inspector/types.rb', line 1159 class DurationRange < Struct.new( :min_seconds, :max_seconds) SENSITIVE = [] include Aws::Structure end |