Class: Aws::SecurityHub::Types::DateFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::DateFilter
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass DateFilter data as a hash:
{
start: "NonEmptyString",
end: "NonEmptyString",
date_range: {
value: 1,
unit: "DAYS", # accepts DAYS
},
}
A date filter for querying findings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date_range ⇒ Types::DateRange
A date range for the date filter.
-
#end ⇒ String
An end date for the date filter.
-
#start ⇒ String
A start date for the date filter.
Instance Attribute Details
#date_range ⇒ Types::DateRange
A date range for the date filter.
16485 16486 16487 16488 16489 16490 16491 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16485 class DateFilter < Struct.new( :start, :end, :date_range) SENSITIVE = [] include Aws::Structure end |
#end ⇒ String
An end date for the date filter.
16485 16486 16487 16488 16489 16490 16491 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16485 class DateFilter < Struct.new( :start, :end, :date_range) SENSITIVE = [] include Aws::Structure end |
#start ⇒ String
A start date for the date filter.
16485 16486 16487 16488 16489 16490 16491 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16485 class DateFilter < Struct.new( :start, :end, :date_range) SENSITIVE = [] include Aws::Structure end |