Class: Aws::GroundStation::Types::ISO8601TimeRange

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb

Overview

Time range specified using ISO 8601 format timestamps.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_timeTime

End time in ISO 8601 format in Coordinated Universal Time (UTC).

Example: 2024-01-15T12:00:00.000Z

Returns:

  • (Time)


2386
2387
2388
2389
2390
2391
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2386

class ISO8601TimeRange < Struct.new(
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

Start time in ISO 8601 format in Coordinated Universal Time (UTC).

Example: 2026-11-15T10:28:48.000Z

Returns:

  • (Time)


2386
2387
2388
2389
2390
2391
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2386

class ISO8601TimeRange < Struct.new(
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end