Class: Aws::SecurityHub::Types::DateRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::DateRange
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
A date range for the date filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison ⇒ String
The condition to apply to a date range filter.
-
#unit ⇒ String
A date range unit for the date filter.
-
#value ⇒ Integer
A date range value for the date filter.
Instance Attribute Details
#comparison ⇒ String
The condition to apply to a date range filter. If you specify
WITHIN, Security Hub filters for dates within the specified date
range. If you specify OLDER_THAN, Security Hub filters for dates
before the specified date range. If you don't specify a value, the
default is WITHIN.
23768 23769 23770 23771 23772 23773 23774 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 23768 class DateRange < Struct.new( :value, :unit, :comparison) SENSITIVE = [] include Aws::Structure end |