Class: Aws::ACM::Types::TimestampRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::TimestampRange
- Defined in:
- gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb
Overview
Specifies a time range for filtering certificates.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end ⇒ Time
The end of the time range.
-
#start ⇒ Time
The start of the time range.
Instance Attribute Details
#end ⇒ Time
The end of the time range. This value is inclusive.
2370 2371 2372 2373 2374 2375 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 2370 class TimestampRange < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Time
The start of the time range. This value is inclusive.
2370 2371 2372 2373 2374 2375 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 2370 class TimestampRange < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |