Class: Aws::Inspector2::Types::DateFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::DateFilter
- Defined in:
- gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb
Overview
Contains details on the time range used to filter findings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_inclusive ⇒ Time
A timestamp representing the end of the time period filtered on.
-
#start_inclusive ⇒ Time
A timestamp representing the start of the time period filtered on.
Instance Attribute Details
#end_inclusive ⇒ Time
A timestamp representing the end of the time period filtered on.
3329 3330 3331 3332 3333 3334 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 3329 class DateFilter < Struct.new( :start_inclusive, :end_inclusive) SENSITIVE = [] include Aws::Structure end |
#start_inclusive ⇒ Time
A timestamp representing the start of the time period filtered on.
3329 3330 3331 3332 3333 3334 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 3329 class DateFilter < Struct.new( :start_inclusive, :end_inclusive) SENSITIVE = [] include Aws::Structure end |