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.
3585 3586 3587 3588 3589 3590 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 3585 class TimestampRange < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Time
The start of the time range. This value is inclusive.
3585 3586 3587 3588 3589 3590 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 3585 class TimestampRange < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |