Class: Aws::GroundStation::Types::ISO8601TimeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::ISO8601TimeRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
Time range specified using ISO 8601 format timestamps.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
End time in ISO 8601 format in Coordinated Universal Time (UTC).
-
#start_time ⇒ Time
Start time in ISO 8601 format in Coordinated Universal Time (UTC).
Instance Attribute Details
#end_time ⇒ Time
End time in ISO 8601 format in Coordinated Universal Time (UTC).
Example: ‘2024-01-15T12:00:00.000Z`
2386 2387 2388 2389 2390 2391 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2386 class ISO8601TimeRange < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
Start time in ISO 8601 format in Coordinated Universal Time (UTC).
Example: ‘2026-11-15T10:28:48.000Z`
2386 2387 2388 2389 2390 2391 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2386 class ISO8601TimeRange < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |