Class: Aws::Inspector::Types::TimestampRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector::Types::TimestampRange
- Defined in:
- gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb
Overview
Note:
When making an API call, you may pass TimestampRange data as a hash:
{
begin_date: Time.now,
end_date: Time.now,
}
This data type is used in the AssessmentRunFilter data type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#begin_date ⇒ Time
The minimum value of the timestamp range.
-
#end_date ⇒ Time
The maximum value of the timestamp range.
Instance Attribute Details
#begin_date ⇒ Time
The minimum value of the timestamp range.
3191 3192 3193 3194 3195 3196 |
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 3191 class TimestampRange < Struct.new( :begin_date, :end_date) SENSITIVE = [] include Aws::Structure end |
#end_date ⇒ Time
The maximum value of the timestamp range.
3191 3192 3193 3194 3195 3196 |
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 3191 class TimestampRange < Struct.new( :begin_date, :end_date) SENSITIVE = [] include Aws::Structure end |