Class: Aws::CodeDeploy::Types::TimeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::TimeRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Information about a time range.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end ⇒ Time
The end time of the time range.
-
#start ⇒ Time
The start time of the time range.
Instance Attribute Details
#end ⇒ Time
The end time of the time range.
<note markdown=“1”> Specify null to leave the end time open-ended.
</note>
4842 4843 4844 4845 4846 4847 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4842 class TimeRange < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Time
The start time of the time range.
<note markdown=“1”> Specify null to leave the start time open-ended.
</note>
4842 4843 4844 4845 4846 4847 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4842 class TimeRange < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |