Class: Aws::Sustainability::Types::TimePeriod
- Inherits:
-
Struct
- Object
- Struct
- Aws::Sustainability::Types::TimePeriod
- Defined in:
- gems/aws-sdk-sustainability/lib/aws-sdk-sustainability/types.rb
Overview
Represents a duration of time defined by start and end timestamps.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end ⇒ Time
The end (exclusive) of the time period.
-
#start ⇒ Time
The start (inclusive) of the time period.
Instance Attribute Details
#end ⇒ Time
The end (exclusive) of the time period. ISO-8601 formatted
timestamp, for example: YYYY-MM-DDThh:mm:ss.sssZ
305 306 307 308 309 310 |
# File 'gems/aws-sdk-sustainability/lib/aws-sdk-sustainability/types.rb', line 305 class TimePeriod < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Time
The start (inclusive) of the time period. ISO-8601 formatted
timestamp, for example: YYYY-MM-DDThh:mm:ss.sssZ
305 306 307 308 309 310 |
# File 'gems/aws-sdk-sustainability/lib/aws-sdk-sustainability/types.rb', line 305 class TimePeriod < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |