aws-sdk-groundstation 1.73.0 → 1.75.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,18 +12,10 @@ module Aws::GroundStation
12
12
 
13
13
  # Detailed information about the agent.
14
14
  #
15
- # @!attribute [rw] agent_cpu_cores
16
- # List of CPU cores reserved for the agent.
17
- # @return [Array<Integer>]
18
- #
19
15
  # @!attribute [rw] agent_version
20
16
  # Current agent version.
21
17
  # @return [String]
22
18
  #
23
- # @!attribute [rw] component_versions
24
- # List of versions being used by agent components.
25
- # @return [Array<Types::ComponentVersion>]
26
- #
27
19
  # @!attribute [rw] instance_id
28
20
  # ID of EC2 instance agent is running on.
29
21
  # @return [String]
@@ -33,42 +25,51 @@ module Aws::GroundStation
33
25
  # @return [String]
34
26
  #
35
27
  # @!attribute [rw] reserved_cpu_cores
36
- # <note markdown="1"> This field should not be used. Use agentCpuCores instead.
28
+ # <note markdown="1"> This field should not be used. Use agentCpuCores
29
+ # instead.
37
30
  #
38
31
  # </note>
39
32
  #
40
- # List of CPU cores reserved for processes other than the agent
33
+ # List of CPU cores reserved for processes other than the agent
41
34
  # running on the EC2 instance.
42
35
  # @return [Array<Integer>]
43
36
  #
37
+ # @!attribute [rw] agent_cpu_cores
38
+ # List of CPU cores reserved for the agent.
39
+ # @return [Array<Integer>]
40
+ #
41
+ # @!attribute [rw] component_versions
42
+ # List of versions being used by agent components.
43
+ # @return [Array<Types::ComponentVersion>]
44
+ #
44
45
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AgentDetails AWS API Documentation
45
46
  #
46
47
  class AgentDetails < Struct.new(
47
- :agent_cpu_cores,
48
48
  :agent_version,
49
- :component_versions,
50
49
  :instance_id,
51
50
  :instance_type,
52
- :reserved_cpu_cores)
51
+ :reserved_cpu_cores,
52
+ :agent_cpu_cores,
53
+ :component_versions)
53
54
  SENSITIVE = []
54
55
  include Aws::Structure
55
56
  end
56
57
 
57
58
  # Aggregate status of Agent components.
58
59
  #
59
- # @!attribute [rw] signature_map
60
- # Sparse map of failure signatures.
61
- # @return [Hash<String,Boolean>]
62
- #
63
60
  # @!attribute [rw] status
64
61
  # Aggregate status.
65
62
  # @return [String]
66
63
  #
64
+ # @!attribute [rw] signature_map
65
+ # Sparse map of failure signatures.
66
+ # @return [Hash<String,Boolean>]
67
+ #
67
68
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AggregateStatus AWS API Documentation
68
69
  #
69
70
  class AggregateStatus < Struct.new(
70
- :signature_map,
71
- :status)
71
+ :status,
72
+ :signature_map)
72
73
  SENSITIVE = []
73
74
  include Aws::Structure
74
75
  end
@@ -105,30 +106,34 @@ module Aws::GroundStation
105
106
  # Information about how AWS Ground Station should configure an antenna
106
107
  # for downlink demod decode during a contact.
107
108
  #
108
- # @!attribute [rw] decode_config
109
- # Information about the decode `Config`.
110
- # @return [Types::DecodeConfig]
109
+ # @!attribute [rw] spectrum_config
110
+ # Information about the spectral `Config`.
111
+ # @return [Types::SpectrumConfig]
111
112
  #
112
113
  # @!attribute [rw] demodulation_config
113
114
  # Information about the demodulation `Config`.
114
115
  # @return [Types::DemodulationConfig]
115
116
  #
116
- # @!attribute [rw] spectrum_config
117
- # Information about the spectral `Config`.
118
- # @return [Types::SpectrumConfig]
117
+ # @!attribute [rw] decode_config
118
+ # Information about the decode `Config`.
119
+ # @return [Types::DecodeConfig]
119
120
  #
120
121
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AntennaDownlinkDemodDecodeConfig AWS API Documentation
121
122
  #
122
123
  class AntennaDownlinkDemodDecodeConfig < Struct.new(
123
- :decode_config,
124
+ :spectrum_config,
124
125
  :demodulation_config,
125
- :spectrum_config)
126
+ :decode_config)
126
127
  SENSITIVE = []
127
128
  include Aws::Structure
128
129
  end
129
130
 
130
131
  # Information about the uplink `Config` of an antenna.
131
132
  #
133
+ # @!attribute [rw] transmit_disabled
134
+ # Whether or not uplink transmit is disabled.
135
+ # @return [Boolean]
136
+ #
132
137
  # @!attribute [rw] spectrum_config
133
138
  # Information about the uplink spectral `Config`.
134
139
  # @return [Types::UplinkSpectrumConfig]
@@ -137,28 +142,21 @@ module Aws::GroundStation
137
142
  # EIRP of the target.
138
143
  # @return [Types::Eirp]
139
144
  #
140
- # @!attribute [rw] transmit_disabled
141
- # Whether or not uplink transmit is disabled.
142
- # @return [Boolean]
143
- #
144
145
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AntennaUplinkConfig AWS API Documentation
145
146
  #
146
147
  class AntennaUplinkConfig < Struct.new(
148
+ :transmit_disabled,
147
149
  :spectrum_config,
148
- :target_eirp,
149
- :transmit_disabled)
150
+ :target_eirp)
150
151
  SENSITIVE = []
151
152
  include Aws::Structure
152
153
  end
153
154
 
154
155
  # Information about AwsGroundStationAgentEndpoint.
155
156
  #
156
- # @!attribute [rw] agent_status
157
- # The status of AgentEndpoint.
158
- # @return [String]
159
- #
160
- # @!attribute [rw] audit_results
161
- # The results of the audit.
157
+ # @!attribute [rw] name
158
+ # Name string associated with AgentEndpoint. Used as a human-readable
159
+ # identifier for AgentEndpoint.
162
160
  # @return [String]
163
161
  #
164
162
  # @!attribute [rw] egress_address
@@ -169,21 +167,205 @@ module Aws::GroundStation
169
167
  # The ingress address of AgentEndpoint.
170
168
  # @return [Types::RangedConnectionDetails]
171
169
  #
172
- # @!attribute [rw] name
173
- # Name string associated with AgentEndpoint. Used as a human-readable
174
- # identifier for AgentEndpoint.
170
+ # @!attribute [rw] agent_status
171
+ # The status of AgentEndpoint.
172
+ # @return [String]
173
+ #
174
+ # @!attribute [rw] audit_results
175
+ # The results of the audit.
175
176
  # @return [String]
176
177
  #
177
178
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AwsGroundStationAgentEndpoint AWS API Documentation
178
179
  #
179
180
  class AwsGroundStationAgentEndpoint < Struct.new(
180
- :agent_status,
181
- :audit_results,
181
+ :name,
182
182
  :egress_address,
183
183
  :ingress_address,
184
- :name)
184
+ :agent_status,
185
+ :audit_results)
186
+ SENSITIVE = []
187
+ include Aws::Structure
188
+ end
189
+
190
+ # Azimuth elevation ephemeris data.
191
+ #
192
+ # Use this ephemeris type to provide pointing angles directly, rather
193
+ # than satellite orbital elements. Use this when you need precise
194
+ # antenna pointing but have imprecise or unknown satellite trajectory
195
+ # information.
196
+ #
197
+ # The azimuth elevation data specifies the antenna pointing direction at
198
+ # specific times relative to a ground station location. AWS Ground
199
+ # Station uses 4th order Lagrange interpolation to compute pointing
200
+ # angles between the provided data points.
201
+ #
202
+ # AWS Ground Station automatically filters interpolated pointing angles,
203
+ # including only those that are above the site mask elevation of the
204
+ # specified ground station.
205
+ #
206
+ # For more detail about providing azimuth elevation ephemerides to AWS
207
+ # Ground Station, see the [azimuth elevation ephemeris section][1] of
208
+ # the AWS Ground Station User Guide.
209
+ #
210
+ #
211
+ #
212
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-azimuth-elevation-ephemeris-data.html
213
+ #
214
+ # @!attribute [rw] ground_station
215
+ # The ground station name for which you're providing azimuth
216
+ # elevation data.
217
+ #
218
+ # This ephemeris is specific to this ground station and can't be used
219
+ # at other locations.
220
+ # @return [String]
221
+ #
222
+ # @!attribute [rw] data
223
+ # Azimuth elevation segment data.
224
+ #
225
+ # You can provide data inline in the request or through an Amazon S3
226
+ # object reference.
227
+ # @return [Types::AzElSegmentsData]
228
+ #
229
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AzElEphemeris AWS API Documentation
230
+ #
231
+ class AzElEphemeris < Struct.new(
232
+ :ground_station,
233
+ :data)
234
+ SENSITIVE = []
235
+ include Aws::Structure
236
+ end
237
+
238
+ # Filter for selecting contacts that use a specific AzElEphemeris.
239
+ #
240
+ # @!attribute [rw] id
241
+ # Unique identifier of the azimuth elevation ephemeris.
242
+ # @return [String]
243
+ #
244
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AzElEphemerisFilter AWS API Documentation
245
+ #
246
+ class AzElEphemerisFilter < Struct.new(
247
+ :id)
248
+ SENSITIVE = []
249
+ include Aws::Structure
250
+ end
251
+
252
+ # Program track settings for AzElEphemeris.
253
+ #
254
+ # @!attribute [rw] ephemeris_id
255
+ # Unique identifier of the azimuth elevation ephemeris.
256
+ # @return [String]
257
+ #
258
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AzElProgramTrackSettings AWS API Documentation
259
+ #
260
+ class AzElProgramTrackSettings < Struct.new(
261
+ :ephemeris_id)
262
+ SENSITIVE = []
263
+ include Aws::Structure
264
+ end
265
+
266
+ # A time segment containing azimuth elevation pointing data.
267
+ #
268
+ # Each segment defines a continuous time period with pointing angle data
269
+ # points. AWS Ground Station uses 4th order Lagrange interpolation
270
+ # between the provided points, so each segment must contain at least
271
+ # five data points.
272
+ #
273
+ # @!attribute [rw] reference_epoch
274
+ # The reference time for this segment in ISO 8601 format in
275
+ # Coordinated Universal Time (UTC).
276
+ #
277
+ # All time values within the segment's AzElSegment$azElList are
278
+ # specified as offsets in atomic seconds from this reference epoch.
279
+ #
280
+ # Example: `2024-01-15T12:00:00.000Z`
281
+ # @return [Time]
282
+ #
283
+ # @!attribute [rw] valid_time_range
284
+ # The valid time range for this segment.
285
+ #
286
+ # Specifies the start and end timestamps in ISO 8601 format in
287
+ # Coordinated Universal Time (UTC). The segment's pointing data must
288
+ # cover this entire time range.
289
+ # @return [Types::ISO8601TimeRange]
290
+ #
291
+ # @!attribute [rw] az_el_list
292
+ # List of time-tagged azimuth elevation data points.
293
+ #
294
+ # Must contain at least five points to support 4th order Lagrange
295
+ # interpolation. Points must be in chronological order with no
296
+ # duplicates.
297
+ # @return [Array<Types::TimeAzEl>]
298
+ #
299
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AzElSegment AWS API Documentation
300
+ #
301
+ class AzElSegment < Struct.new(
302
+ :reference_epoch,
303
+ :valid_time_range,
304
+ :az_el_list)
305
+ SENSITIVE = []
306
+ include Aws::Structure
307
+ end
308
+
309
+ # Azimuth elevation segment collection.
310
+ #
311
+ # Contains five or more time-ordered segments that define antenna
312
+ # pointing angles over the ephemeris validity period.
313
+ #
314
+ # @!attribute [rw] angle_unit
315
+ # The unit of measure for azimuth and elevation angles. All angles in
316
+ # all segments must use the same unit.
317
+ # @return [String]
318
+ #
319
+ # @!attribute [rw] az_el_segment_list
320
+ # List of azimuth elevation segments.
321
+ #
322
+ # Must contain between 1 and 100 segments. Segments must be in
323
+ # chronological order with no overlaps.
324
+ # @return [Array<Types::AzElSegment>]
325
+ #
326
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AzElSegments AWS API Documentation
327
+ #
328
+ class AzElSegments < Struct.new(
329
+ :angle_unit,
330
+ :az_el_segment_list)
331
+ SENSITIVE = []
332
+ include Aws::Structure
333
+ end
334
+
335
+ # Container for azimuth elevation segment data.
336
+ #
337
+ # Specify either AzElSegmentsData$s3Object to reference data in Amazon
338
+ # S3, or AzElSegmentsData$azElData to provide data inline.
339
+ #
340
+ # @note AzElSegmentsData is a union - when making an API calls you must set exactly one of the members.
341
+ #
342
+ # @!attribute [rw] s3_object
343
+ # The Amazon S3 object containing azimuth elevation segment data.
344
+ #
345
+ # The Amazon S3 object must contain JSON-formatted azimuth elevation
346
+ # data matching the AzElSegments structure.
347
+ # @return [Types::S3Object]
348
+ #
349
+ # @!attribute [rw] az_el_data
350
+ # Azimuth elevation segment data provided directly in the request.
351
+ #
352
+ # Use this option for smaller datasets or when Amazon S3 access is not
353
+ # available.
354
+ # @return [Types::AzElSegments]
355
+ #
356
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AzElSegmentsData AWS API Documentation
357
+ #
358
+ class AzElSegmentsData < Struct.new(
359
+ :s3_object,
360
+ :az_el_data,
361
+ :unknown)
185
362
  SENSITIVE = []
186
363
  include Aws::Structure
364
+ include Aws::Structure::Union
365
+
366
+ class S3Object < AzElSegmentsData; end
367
+ class AzElData < AzElSegmentsData; end
368
+ class Unknown < AzElSegmentsData; end
187
369
  end
188
370
 
189
371
  # @!attribute [rw] contact_id
@@ -200,44 +382,44 @@ module Aws::GroundStation
200
382
 
201
383
  # Data on the status of agent components.
202
384
  #
203
- # @!attribute [rw] bytes_received
204
- # Bytes received by the component.
205
- # @return [Integer]
206
- #
207
- # @!attribute [rw] bytes_sent
208
- # Bytes sent by the component.
209
- # @return [Integer]
385
+ # @!attribute [rw] component_type
386
+ # The Component type.
387
+ # @return [String]
210
388
  #
211
389
  # @!attribute [rw] capability_arn
212
390
  # Capability ARN of the component.
213
391
  # @return [String]
214
392
  #
215
- # @!attribute [rw] component_type
216
- # The Component type.
393
+ # @!attribute [rw] status
394
+ # Component status.
217
395
  # @return [String]
218
396
  #
219
- # @!attribute [rw] dataflow_id
220
- # Dataflow UUID associated with the component.
221
- # @return [String]
397
+ # @!attribute [rw] bytes_sent
398
+ # Bytes sent by the component.
399
+ # @return [Integer]
400
+ #
401
+ # @!attribute [rw] bytes_received
402
+ # Bytes received by the component.
403
+ # @return [Integer]
222
404
  #
223
405
  # @!attribute [rw] packets_dropped
224
406
  # Packets dropped by component.
225
407
  # @return [Integer]
226
408
  #
227
- # @!attribute [rw] status
228
- # Component status.
409
+ # @!attribute [rw] dataflow_id
410
+ # Dataflow UUID associated with the component.
229
411
  # @return [String]
230
412
  #
231
413
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ComponentStatusData AWS API Documentation
232
414
  #
233
415
  class ComponentStatusData < Struct.new(
234
- :bytes_received,
235
- :bytes_sent,
236
- :capability_arn,
237
416
  :component_type,
238
- :dataflow_id,
417
+ :capability_arn,
418
+ :status,
419
+ :bytes_sent,
420
+ :bytes_received,
239
421
  :packets_dropped,
240
- :status)
422
+ :dataflow_id)
241
423
  SENSITIVE = []
242
424
  include Aws::Structure
243
425
  end
@@ -265,14 +447,14 @@ module Aws::GroundStation
265
447
  #
266
448
  # @note ConfigDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfigDetails corresponding to the set member.
267
449
  #
268
- # @!attribute [rw] antenna_demod_decode_details
269
- # Details for antenna demod decode `Config` in a contact.
270
- # @return [Types::AntennaDemodDecodeDetails]
271
- #
272
450
  # @!attribute [rw] endpoint_details
273
451
  # Information about the endpoint details.
274
452
  # @return [Types::EndpointDetails]
275
453
  #
454
+ # @!attribute [rw] antenna_demod_decode_details
455
+ # Details for antenna demod decode `Config` in a contact.
456
+ # @return [Types::AntennaDemodDecodeDetails]
457
+ #
276
458
  # @!attribute [rw] s3_recording_details
277
459
  # Details for an S3 recording `Config` in a contact.
278
460
  # @return [Types::S3RecordingDetails]
@@ -280,24 +462,20 @@ module Aws::GroundStation
280
462
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConfigDetails AWS API Documentation
281
463
  #
282
464
  class ConfigDetails < Struct.new(
283
- :antenna_demod_decode_details,
284
465
  :endpoint_details,
466
+ :antenna_demod_decode_details,
285
467
  :s3_recording_details,
286
468
  :unknown)
287
469
  SENSITIVE = []
288
470
  include Aws::Structure
289
471
  include Aws::Structure::Union
290
472
 
291
- class AntennaDemodDecodeDetails < ConfigDetails; end
292
473
  class EndpointDetails < ConfigDetails; end
474
+ class AntennaDemodDecodeDetails < ConfigDetails; end
293
475
  class S3RecordingDetails < ConfigDetails; end
294
476
  class Unknown < ConfigDetails; end
295
477
  end
296
478
 
297
- # @!attribute [rw] config_arn
298
- # ARN of a `Config`.
299
- # @return [String]
300
- #
301
479
  # @!attribute [rw] config_id
302
480
  # UUID of a `Config`.
303
481
  # @return [String]
@@ -306,22 +484,22 @@ module Aws::GroundStation
306
484
  # Type of a `Config`.
307
485
  # @return [String]
308
486
  #
487
+ # @!attribute [rw] config_arn
488
+ # ARN of a `Config`.
489
+ # @return [String]
490
+ #
309
491
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConfigIdResponse AWS API Documentation
310
492
  #
311
493
  class ConfigIdResponse < Struct.new(
312
- :config_arn,
313
494
  :config_id,
314
- :config_type)
495
+ :config_type,
496
+ :config_arn)
315
497
  SENSITIVE = []
316
498
  include Aws::Structure
317
499
  end
318
500
 
319
501
  # An item in a list of `Config` objects.
320
502
  #
321
- # @!attribute [rw] config_arn
322
- # ARN of a `Config`.
323
- # @return [String]
324
- #
325
503
  # @!attribute [rw] config_id
326
504
  # UUID of a `Config`.
327
505
  # @return [String]
@@ -330,6 +508,10 @@ module Aws::GroundStation
330
508
  # Type of a `Config`.
331
509
  # @return [String]
332
510
  #
511
+ # @!attribute [rw] config_arn
512
+ # ARN of a `Config`.
513
+ # @return [String]
514
+ #
333
515
  # @!attribute [rw] name
334
516
  # Name of a `Config`.
335
517
  # @return [String]
@@ -337,9 +519,9 @@ module Aws::GroundStation
337
519
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConfigListItem AWS API Documentation
338
520
  #
339
521
  class ConfigListItem < Struct.new(
340
- :config_arn,
341
522
  :config_id,
342
523
  :config_type,
524
+ :config_arn,
343
525
  :name)
344
526
  SENSITIVE = []
345
527
  include Aws::Structure
@@ -358,6 +540,15 @@ module Aws::GroundStation
358
540
  # for downlink during a contact.
359
541
  # @return [Types::AntennaDownlinkConfig]
360
542
  #
543
+ # @!attribute [rw] tracking_config
544
+ # Object that determines whether tracking should be used during a
545
+ # contact executed with this `Config` in the mission profile.
546
+ # @return [Types::TrackingConfig]
547
+ #
548
+ # @!attribute [rw] dataflow_endpoint_config
549
+ # Information about the dataflow endpoint `Config`.
550
+ # @return [Types::DataflowEndpointConfig]
551
+ #
361
552
  # @!attribute [rw] antenna_downlink_demod_decode_config
362
553
  # Information about how AWS Ground Station should configure an antenna
363
554
  # for downlink demod decode during a contact.
@@ -368,19 +559,6 @@ module Aws::GroundStation
368
559
  # for uplink during a contact.
369
560
  # @return [Types::AntennaUplinkConfig]
370
561
  #
371
- # @!attribute [rw] dataflow_endpoint_config
372
- # Information about the dataflow endpoint `Config`.
373
- # @return [Types::DataflowEndpointConfig]
374
- #
375
- # @!attribute [rw] s3_recording_config
376
- # Information about an S3 recording `Config`.
377
- # @return [Types::S3RecordingConfig]
378
- #
379
- # @!attribute [rw] tracking_config
380
- # Object that determines whether tracking should be used during a
381
- # contact executed with this `Config` in the mission profile.
382
- # @return [Types::TrackingConfig]
383
- #
384
562
  # @!attribute [rw] uplink_echo_config
385
563
  # Information about an uplink echo `Config`.
386
564
  #
@@ -389,47 +567,51 @@ module Aws::GroundStation
389
567
  # `UplinkEchoConfig` is used in a contact.
390
568
  # @return [Types::UplinkEchoConfig]
391
569
  #
570
+ # @!attribute [rw] s3_recording_config
571
+ # Information about an S3 recording `Config`.
572
+ # @return [Types::S3RecordingConfig]
573
+ #
392
574
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConfigTypeData AWS API Documentation
393
575
  #
394
576
  class ConfigTypeData < Struct.new(
395
577
  :antenna_downlink_config,
578
+ :tracking_config,
579
+ :dataflow_endpoint_config,
396
580
  :antenna_downlink_demod_decode_config,
397
581
  :antenna_uplink_config,
398
- :dataflow_endpoint_config,
399
- :s3_recording_config,
400
- :tracking_config,
401
582
  :uplink_echo_config,
583
+ :s3_recording_config,
402
584
  :unknown)
403
585
  SENSITIVE = []
404
586
  include Aws::Structure
405
587
  include Aws::Structure::Union
406
588
 
407
589
  class AntennaDownlinkConfig < ConfigTypeData; end
590
+ class TrackingConfig < ConfigTypeData; end
591
+ class DataflowEndpointConfig < ConfigTypeData; end
408
592
  class AntennaDownlinkDemodDecodeConfig < ConfigTypeData; end
409
593
  class AntennaUplinkConfig < ConfigTypeData; end
410
- class DataflowEndpointConfig < ConfigTypeData; end
411
- class S3RecordingConfig < ConfigTypeData; end
412
- class TrackingConfig < ConfigTypeData; end
413
594
  class UplinkEchoConfig < ConfigTypeData; end
595
+ class S3RecordingConfig < ConfigTypeData; end
414
596
  class Unknown < ConfigTypeData; end
415
597
  end
416
598
 
417
599
  # Egress address of AgentEndpoint with an optional mtu.
418
600
  #
601
+ # @!attribute [rw] socket_address
602
+ # A socket address.
603
+ # @return [Types::SocketAddress]
604
+ #
419
605
  # @!attribute [rw] mtu
420
606
  # Maximum transmission unit (MTU) size in bytes of a dataflow
421
607
  # endpoint.
422
608
  # @return [Integer]
423
609
  #
424
- # @!attribute [rw] socket_address
425
- # A socket address.
426
- # @return [Types::SocketAddress]
427
- #
428
610
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConnectionDetails AWS API Documentation
429
611
  #
430
612
  class ConnectionDetails < Struct.new(
431
- :mtu,
432
- :socket_address)
613
+ :socket_address,
614
+ :mtu)
433
615
  SENSITIVE = []
434
616
  include Aws::Structure
435
617
  end
@@ -440,58 +622,58 @@ module Aws::GroundStation
440
622
  # UUID of a contact.
441
623
  # @return [String]
442
624
  #
443
- # @!attribute [rw] contact_status
444
- # Status of a contact.
625
+ # @!attribute [rw] mission_profile_arn
626
+ # ARN of a mission profile.
445
627
  # @return [String]
446
628
  #
629
+ # @!attribute [rw] satellite_arn
630
+ # ARN of a satellite.
631
+ # @return [String]
632
+ #
633
+ # @!attribute [rw] start_time
634
+ # Start time of a contact in UTC.
635
+ # @return [Time]
636
+ #
447
637
  # @!attribute [rw] end_time
448
638
  # End time of a contact in UTC.
449
639
  # @return [Time]
450
640
  #
451
- # @!attribute [rw] error_message
452
- # Error message of a contact.
453
- # @return [String]
641
+ # @!attribute [rw] pre_pass_start_time
642
+ # Amount of time prior to contact start you’d like to receive a
643
+ # CloudWatch event indicating an upcoming pass.
644
+ # @return [Time]
645
+ #
646
+ # @!attribute [rw] post_pass_end_time
647
+ # Amount of time after a contact ends that you’d like to receive a
648
+ # CloudWatch event indicating the pass has finished.
649
+ # @return [Time]
454
650
  #
455
651
  # @!attribute [rw] ground_station
456
652
  # Name of a ground station.
457
653
  # @return [String]
458
654
  #
459
- # @!attribute [rw] maximum_elevation
460
- # Maximum elevation angle of a contact.
461
- # @return [Types::Elevation]
462
- #
463
- # @!attribute [rw] mission_profile_arn
464
- # ARN of a mission profile.
655
+ # @!attribute [rw] contact_status
656
+ # Status of a contact.
465
657
  # @return [String]
466
658
  #
467
- # @!attribute [rw] post_pass_end_time
468
- # Amount of time after a contact ends that you’d like to receive a
469
- # CloudWatch event indicating the pass has finished.
470
- # @return [Time]
659
+ # @!attribute [rw] error_message
660
+ # Error message of a contact.
661
+ # @return [String]
471
662
  #
472
- # @!attribute [rw] pre_pass_start_time
473
- # Amount of time prior to contact start you’d like to receive a
474
- # CloudWatch event indicating an upcoming pass.
475
- # @return [Time]
663
+ # @!attribute [rw] maximum_elevation
664
+ # Maximum elevation angle of a contact.
665
+ # @return [Types::Elevation]
476
666
  #
477
667
  # @!attribute [rw] region
478
668
  # Region of a contact.
479
669
  # @return [String]
480
670
  #
481
- # @!attribute [rw] satellite_arn
482
- # ARN of a satellite.
483
- # @return [String]
484
- #
485
- # @!attribute [rw] start_time
486
- # Start time of a contact in UTC.
487
- # @return [Time]
488
- #
489
671
  # @!attribute [rw] tags
490
672
  # Tags assigned to a contact.
491
673
  # @return [Hash<String,String>]
492
674
  #
493
- # @!attribute [rw] visibility_end_time
494
- # Projected time in UTC your satellite will set below the [receive
675
+ # @!attribute [rw] visibility_start_time
676
+ # Projected time in UTC your satellite will rise above the [receive
495
677
  # mask][1]. This time is based on the satellite's current active
496
678
  # ephemeris for future contacts and the ephemeris that was active
497
679
  # during contact execution for completed contacts. *This field is not
@@ -502,8 +684,8 @@ module Aws::GroundStation
502
684
  # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html
503
685
  # @return [Time]
504
686
  #
505
- # @!attribute [rw] visibility_start_time
506
- # Projected time in UTC your satellite will rise above the [receive
687
+ # @!attribute [rw] visibility_end_time
688
+ # Projected time in UTC your satellite will set below the [receive
507
689
  # mask][1]. This time is based on the satellite's current active
508
690
  # ephemeris for future contacts and the ephemeris that was active
509
691
  # during contact execution for completed contacts. *This field is not
@@ -514,24 +696,29 @@ module Aws::GroundStation
514
696
  # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html
515
697
  # @return [Time]
516
698
  #
699
+ # @!attribute [rw] ephemeris
700
+ # The ephemeris that determines antenna pointing for the contact.
701
+ # @return [Types::EphemerisResponseData]
702
+ #
517
703
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ContactData AWS API Documentation
518
704
  #
519
705
  class ContactData < Struct.new(
520
706
  :contact_id,
521
- :contact_status,
707
+ :mission_profile_arn,
708
+ :satellite_arn,
709
+ :start_time,
522
710
  :end_time,
523
- :error_message,
711
+ :pre_pass_start_time,
712
+ :post_pass_end_time,
524
713
  :ground_station,
714
+ :contact_status,
715
+ :error_message,
525
716
  :maximum_elevation,
526
- :mission_profile_arn,
527
- :post_pass_end_time,
528
- :pre_pass_start_time,
529
717
  :region,
530
- :satellite_arn,
531
- :start_time,
532
718
  :tags,
719
+ :visibility_start_time,
533
720
  :visibility_end_time,
534
- :visibility_start_time)
721
+ :ephemeris)
535
722
  SENSITIVE = []
536
723
  include Aws::Structure
537
724
  end
@@ -548,14 +735,14 @@ module Aws::GroundStation
548
735
  include Aws::Structure
549
736
  end
550
737
 
551
- # @!attribute [rw] config_data
552
- # Parameters of a `Config`.
553
- # @return [Types::ConfigTypeData]
554
- #
555
738
  # @!attribute [rw] name
556
739
  # Name of a `Config`.
557
740
  # @return [String]
558
741
  #
742
+ # @!attribute [rw] config_data
743
+ # Parameters of a `Config`.
744
+ # @return [Types::ConfigTypeData]
745
+ #
559
746
  # @!attribute [rw] tags
560
747
  # Tags assigned to a `Config`.
561
748
  # @return [Hash<String,String>]
@@ -563,13 +750,39 @@ module Aws::GroundStation
563
750
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateConfigRequest AWS API Documentation
564
751
  #
565
752
  class CreateConfigRequest < Struct.new(
566
- :config_data,
567
753
  :name,
754
+ :config_data,
568
755
  :tags)
569
756
  SENSITIVE = []
570
757
  include Aws::Structure
571
758
  end
572
759
 
760
+ # @!attribute [rw] endpoint_details
761
+ # Endpoint details of each endpoint in the dataflow endpoint group.
762
+ # All dataflow endpoints within a single dataflow endpoint group must
763
+ # be of the same type. You cannot mix [ AWS Ground Station Agent
764
+ # endpoints][1] with [Dataflow endpoints][2] in the same group. If
765
+ # your use case requires both types of endpoints, you must create
766
+ # separate dataflow endpoint groups for each type.
767
+ #
768
+ #
769
+ #
770
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/APIReference/API_AwsGroundStationAgentEndpoint.html
771
+ # [2]: https://docs.aws.amazon.com/ground-station/latest/APIReference/API_DataflowEndpoint.html
772
+ # @return [Array<Types::EndpointDetails>]
773
+ #
774
+ # @!attribute [rw] tags
775
+ # Tags of a dataflow endpoint group.
776
+ # @return [Hash<String,String>]
777
+ #
778
+ # @!attribute [rw] contact_pre_pass_duration_seconds
779
+ # Amount of time, in seconds, before a contact starts that the Ground
780
+ # Station Dataflow Endpoint Group will be in a `PREPASS` state. A
781
+ # Ground Station Dataflow Endpoint Group State Change event will be
782
+ # emitted when the Dataflow Endpoint Group enters and exits the
783
+ # `PREPASS` state.
784
+ # @return [Integer]
785
+ #
573
786
  # @!attribute [rw] contact_post_pass_duration_seconds
574
787
  # Amount of time, in seconds, after a contact ends that the Ground
575
788
  # Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
@@ -578,6 +791,21 @@ module Aws::GroundStation
578
791
  # `POSTPASS` state.
579
792
  # @return [Integer]
580
793
  #
794
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateDataflowEndpointGroupRequest AWS API Documentation
795
+ #
796
+ class CreateDataflowEndpointGroupRequest < Struct.new(
797
+ :endpoint_details,
798
+ :tags,
799
+ :contact_pre_pass_duration_seconds,
800
+ :contact_post_pass_duration_seconds)
801
+ SENSITIVE = []
802
+ include Aws::Structure
803
+ end
804
+
805
+ # @!attribute [rw] endpoints
806
+ # Dataflow endpoint group's endpoint definitions
807
+ # @return [Array<Types::CreateEndpointDetails>]
808
+ #
581
809
  # @!attribute [rw] contact_pre_pass_duration_seconds
582
810
  # Amount of time, in seconds, before a contact starts that the Ground
583
811
  # Station Dataflow Endpoint Group will be in a `PREPASS` state. A
@@ -586,73 +814,103 @@ module Aws::GroundStation
586
814
  # `PREPASS` state.
587
815
  # @return [Integer]
588
816
  #
589
- # @!attribute [rw] endpoint_details
590
- # Endpoint details of each endpoint in the dataflow endpoint group.
591
- # All dataflow endpoints within a single dataflow endpoint group must
592
- # be of the same type. You cannot mix <a
593
- # href="https://docs.aws.amazon.com/ground-station/latest/APIReference/API_AwsGroundStationAgentEndpoint.html">
594
- # AWS Ground Station Agent endpoints</a> with <a
595
- # href="https://docs.aws.amazon.com/ground-station/latest/APIReference/API_DataflowEndpoint.html">Dataflow
596
- # endpoints</a> in the same group. If your use case requires both
597
- # types of endpoints, you must create separate dataflow endpoint
598
- # groups for each type. </p>
599
- # @return [Array<Types::EndpointDetails>]
817
+ # @!attribute [rw] contact_post_pass_duration_seconds
818
+ # Amount of time, in seconds, after a contact ends that the Ground
819
+ # Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
820
+ # Ground Station Dataflow Endpoint Group State Change event will be
821
+ # emitted when the Dataflow Endpoint Group enters and exits the
822
+ # `POSTPASS` state.
823
+ # @return [Integer]
600
824
  #
601
825
  # @!attribute [rw] tags
602
- # Tags of a dataflow endpoint group.
826
+ # Tags of a V2 dataflow endpoint group.
603
827
  # @return [Hash<String,String>]
604
828
  #
605
- # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateDataflowEndpointGroupRequest AWS API Documentation
829
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateDataflowEndpointGroupV2Request AWS API Documentation
606
830
  #
607
- class CreateDataflowEndpointGroupRequest < Struct.new(
608
- :contact_post_pass_duration_seconds,
831
+ class CreateDataflowEndpointGroupV2Request < Struct.new(
832
+ :endpoints,
609
833
  :contact_pre_pass_duration_seconds,
610
- :endpoint_details,
834
+ :contact_post_pass_duration_seconds,
611
835
  :tags)
612
836
  SENSITIVE = []
613
837
  include Aws::Structure
614
838
  end
615
839
 
616
- # @!attribute [rw] enabled
617
- # Whether to set the ephemeris status to `ENABLED` after validation.
840
+ # @!attribute [rw] dataflow_endpoint_group_id
841
+ # Dataflow endpoint group ID
842
+ # @return [String]
843
+ #
844
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateDataflowEndpointGroupV2Response AWS API Documentation
618
845
  #
619
- # Setting this to false will set the ephemeris status to `DISABLED`
620
- # after validation.
846
+ class CreateDataflowEndpointGroupV2Response < Struct.new(
847
+ :dataflow_endpoint_group_id)
848
+ SENSITIVE = []
849
+ include Aws::Structure
850
+ end
851
+
852
+ # Endpoint definition used for creating a dataflow endpoint
853
+ #
854
+ # @note CreateEndpointDetails is a union - when making an API calls you must set exactly one of the members.
855
+ #
856
+ # @!attribute [rw] uplink_aws_ground_station_agent_endpoint
857
+ # Definition for an uplink agent endpoint
858
+ # @return [Types::UplinkAwsGroundStationAgentEndpoint]
859
+ #
860
+ # @!attribute [rw] downlink_aws_ground_station_agent_endpoint
861
+ # Definition for a downlink agent endpoint
862
+ # @return [Types::DownlinkAwsGroundStationAgentEndpoint]
863
+ #
864
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateEndpointDetails AWS API Documentation
865
+ #
866
+ class CreateEndpointDetails < Struct.new(
867
+ :uplink_aws_ground_station_agent_endpoint,
868
+ :downlink_aws_ground_station_agent_endpoint,
869
+ :unknown)
870
+ SENSITIVE = []
871
+ include Aws::Structure
872
+ include Aws::Structure::Union
873
+
874
+ class UplinkAwsGroundStationAgentEndpoint < CreateEndpointDetails; end
875
+ class DownlinkAwsGroundStationAgentEndpoint < CreateEndpointDetails; end
876
+ class Unknown < CreateEndpointDetails; end
877
+ end
878
+
879
+ # @!attribute [rw] satellite_id
880
+ # The satellite ID that associates this ephemeris with a satellite in
881
+ # AWS Ground Station.
882
+ # @return [String]
883
+ #
884
+ # @!attribute [rw] enabled
885
+ # Set to `true` to enable the ephemeris after validation. Set to
886
+ # `false` to keep it disabled.
621
887
  # @return [Boolean]
622
888
  #
623
- # @!attribute [rw] ephemeris
624
- # Ephemeris data.
625
- # @return [Types::EphemerisData]
889
+ # @!attribute [rw] priority
890
+ # A priority score that determines which ephemeris to use when
891
+ # multiple ephemerides overlap.
892
+ #
893
+ # Higher numbers take precedence. The default is 1. Must be 1 or
894
+ # greater.
895
+ # @return [Integer]
626
896
  #
627
897
  # @!attribute [rw] expiration_time
628
898
  # An overall expiration time for the ephemeris in UTC, after which it
629
899
  # will become `EXPIRED`.
630
900
  # @return [Time]
631
901
  #
632
- # @!attribute [rw] kms_key_arn
633
- # The ARN of a KMS key used to encrypt the ephemeris in Ground
634
- # Station.
635
- # @return [String]
636
- #
637
902
  # @!attribute [rw] name
638
- # A name string associated with the ephemeris. Used as a
639
- # human-readable identifier for the ephemeris.
903
+ # A name that you can use to identify the ephemeris.
640
904
  # @return [String]
641
905
  #
642
- # @!attribute [rw] priority
643
- # Customer-provided priority score to establish the order in which
644
- # overlapping ephemerides should be used.
645
- #
646
- # The default for customer-provided ephemeris priority is 1, and
647
- # higher numbers take precedence.
648
- #
649
- # Priority must be 1 or greater
650
- # @return [Integer]
651
- #
652
- # @!attribute [rw] satellite_id
653
- # AWS Ground Station satellite ID for this ephemeris.
906
+ # @!attribute [rw] kms_key_arn
907
+ # The ARN of the KMS key to use for encrypting the ephemeris.
654
908
  # @return [String]
655
909
  #
910
+ # @!attribute [rw] ephemeris
911
+ # Ephemeris data.
912
+ # @return [Types::EphemerisData]
913
+ #
656
914
  # @!attribute [rw] tags
657
915
  # Tags assigned to an ephemeris.
658
916
  # @return [Hash<String,String>]
@@ -660,33 +918,32 @@ module Aws::GroundStation
660
918
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateEphemerisRequest AWS API Documentation
661
919
  #
662
920
  class CreateEphemerisRequest < Struct.new(
921
+ :satellite_id,
663
922
  :enabled,
664
- :ephemeris,
923
+ :priority,
665
924
  :expiration_time,
666
- :kms_key_arn,
667
925
  :name,
668
- :priority,
669
- :satellite_id,
926
+ :kms_key_arn,
927
+ :ephemeris,
670
928
  :tags)
671
929
  SENSITIVE = []
672
930
  include Aws::Structure
673
931
  end
674
932
 
675
- # @!attribute [rw] contact_post_pass_duration_seconds
676
- # Amount of time after a contact ends that you’d like to receive a
677
- # Ground Station Contact State Change event indicating the pass has
678
- # finished.
679
- # @return [Integer]
933
+ # @!attribute [rw] name
934
+ # Name of a mission profile.
935
+ # @return [String]
680
936
  #
681
937
  # @!attribute [rw] contact_pre_pass_duration_seconds
682
938
  # Amount of time prior to contact start you’d like to receive a Ground
683
939
  # Station Contact State Change event indicating an upcoming pass.
684
940
  # @return [Integer]
685
941
  #
686
- # @!attribute [rw] dataflow_edges
687
- # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
688
- # `Config` and a *to* `Config`.
689
- # @return [Array<Array<String>>]
942
+ # @!attribute [rw] contact_post_pass_duration_seconds
943
+ # Amount of time after a contact ends that you’d like to receive a
944
+ # Ground Station Contact State Change event indicating the pass has
945
+ # finished.
946
+ # @return [Integer]
690
947
  #
691
948
  # @!attribute [rw] minimum_viable_contact_duration_seconds
692
949
  # Smallest amount of time in seconds that you’d like to see for an
@@ -694,10 +951,19 @@ module Aws::GroundStation
694
951
  # contacts shorter than this duration.
695
952
  # @return [Integer]
696
953
  #
697
- # @!attribute [rw] name
698
- # Name of a mission profile.
954
+ # @!attribute [rw] dataflow_edges
955
+ # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
956
+ # `Config` and a *to* `Config`.
957
+ # @return [Array<Array<String>>]
958
+ #
959
+ # @!attribute [rw] tracking_config_arn
960
+ # ARN of a tracking `Config`.
699
961
  # @return [String]
700
962
  #
963
+ # @!attribute [rw] tags
964
+ # Tags assigned to a mission profile.
965
+ # @return [Hash<String,String>]
966
+ #
701
967
  # @!attribute [rw] streams_kms_key
702
968
  # KMS key to use for encrypting streams.
703
969
  # @return [Types::KmsKey]
@@ -706,32 +972,28 @@ module Aws::GroundStation
706
972
  # Role to use for encrypting streams with KMS key.
707
973
  # @return [String]
708
974
  #
709
- # @!attribute [rw] tags
710
- # Tags assigned to a mission profile.
711
- # @return [Hash<String,String>]
712
- #
713
- # @!attribute [rw] tracking_config_arn
714
- # ARN of a tracking `Config`.
715
- # @return [String]
716
- #
717
975
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateMissionProfileRequest AWS API Documentation
718
976
  #
719
977
  class CreateMissionProfileRequest < Struct.new(
720
- :contact_post_pass_duration_seconds,
978
+ :name,
721
979
  :contact_pre_pass_duration_seconds,
722
- :dataflow_edges,
980
+ :contact_post_pass_duration_seconds,
723
981
  :minimum_viable_contact_duration_seconds,
724
- :name,
725
- :streams_kms_key,
726
- :streams_kms_role,
982
+ :dataflow_edges,
983
+ :tracking_config_arn,
727
984
  :tags,
728
- :tracking_config_arn)
985
+ :streams_kms_key,
986
+ :streams_kms_role)
729
987
  SENSITIVE = []
730
988
  include Aws::Structure
731
989
  end
732
990
 
733
991
  # Information about a dataflow edge used in a contact.
734
992
  #
993
+ # @!attribute [rw] source
994
+ # Dataflow details for the source side.
995
+ # @return [Types::Source]
996
+ #
735
997
  # @!attribute [rw] destination
736
998
  # Dataflow details for the destination side.
737
999
  # @return [Types::Destination]
@@ -740,46 +1002,42 @@ module Aws::GroundStation
740
1002
  # Error message for a dataflow.
741
1003
  # @return [String]
742
1004
  #
743
- # @!attribute [rw] source
744
- # Dataflow details for the source side.
745
- # @return [Types::Source]
746
- #
747
1005
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DataflowDetail AWS API Documentation
748
1006
  #
749
1007
  class DataflowDetail < Struct.new(
1008
+ :source,
750
1009
  :destination,
751
- :error_message,
752
- :source)
1010
+ :error_message)
753
1011
  SENSITIVE = []
754
1012
  include Aws::Structure
755
1013
  end
756
1014
 
757
1015
  # Information about a dataflow endpoint.
758
1016
  #
1017
+ # @!attribute [rw] name
1018
+ # Name of a dataflow endpoint.
1019
+ # @return [String]
1020
+ #
759
1021
  # @!attribute [rw] address
760
1022
  # Socket address of a dataflow endpoint.
761
1023
  # @return [Types::SocketAddress]
762
1024
  #
1025
+ # @!attribute [rw] status
1026
+ # Status of a dataflow endpoint.
1027
+ # @return [String]
1028
+ #
763
1029
  # @!attribute [rw] mtu
764
1030
  # Maximum transmission unit (MTU) size in bytes of a dataflow
765
1031
  # endpoint.
766
1032
  # @return [Integer]
767
1033
  #
768
- # @!attribute [rw] name
769
- # Name of a dataflow endpoint.
770
- # @return [String]
771
- #
772
- # @!attribute [rw] status
773
- # Status of a dataflow endpoint.
774
- # @return [String]
775
- #
776
1034
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DataflowEndpoint AWS API Documentation
777
1035
  #
778
1036
  class DataflowEndpoint < Struct.new(
779
- :address,
780
- :mtu,
781
1037
  :name,
782
- :status)
1038
+ :address,
1039
+ :status,
1040
+ :mtu)
783
1041
  SENSITIVE = []
784
1042
  include Aws::Structure
785
1043
  end
@@ -817,19 +1075,19 @@ module Aws::GroundStation
817
1075
 
818
1076
  # Item in a list of `DataflowEndpoint` groups.
819
1077
  #
820
- # @!attribute [rw] dataflow_endpoint_group_arn
821
- # ARN of a dataflow endpoint group.
822
- # @return [String]
823
- #
824
1078
  # @!attribute [rw] dataflow_endpoint_group_id
825
1079
  # UUID of a dataflow endpoint group.
826
1080
  # @return [String]
827
1081
  #
1082
+ # @!attribute [rw] dataflow_endpoint_group_arn
1083
+ # ARN of a dataflow endpoint group.
1084
+ # @return [String]
1085
+ #
828
1086
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DataflowEndpointListItem AWS API Documentation
829
1087
  #
830
1088
  class DataflowEndpointListItem < Struct.new(
831
- :dataflow_endpoint_group_arn,
832
- :dataflow_endpoint_group_id)
1089
+ :dataflow_endpoint_group_id,
1090
+ :dataflow_endpoint_group_arn)
833
1091
  SENSITIVE = []
834
1092
  include Aws::Structure
835
1093
  end
@@ -948,63 +1206,63 @@ module Aws::GroundStation
948
1206
  # UUID of a contact.
949
1207
  # @return [String]
950
1208
  #
951
- # @!attribute [rw] contact_status
952
- # Status of a contact.
1209
+ # @!attribute [rw] mission_profile_arn
1210
+ # ARN of a mission profile.
953
1211
  # @return [String]
954
1212
  #
955
- # @!attribute [rw] dataflow_list
956
- # List describing source and destination details for each dataflow
957
- # edge.
958
- # @return [Array<Types::DataflowDetail>]
1213
+ # @!attribute [rw] satellite_arn
1214
+ # ARN of a satellite.
1215
+ # @return [String]
1216
+ #
1217
+ # @!attribute [rw] start_time
1218
+ # Start time of a contact in UTC.
1219
+ # @return [Time]
959
1220
  #
960
1221
  # @!attribute [rw] end_time
961
1222
  # End time of a contact in UTC.
962
1223
  # @return [Time]
963
1224
  #
964
- # @!attribute [rw] error_message
965
- # Error message for a contact.
966
- # @return [String]
967
- #
968
- # @!attribute [rw] ground_station
969
- # Ground station for a contact.
970
- # @return [String]
971
- #
972
- # @!attribute [rw] maximum_elevation
973
- # Maximum elevation angle of a contact.
974
- # @return [Types::Elevation]
975
- #
976
- # @!attribute [rw] mission_profile_arn
977
- # ARN of a mission profile.
978
- # @return [String]
1225
+ # @!attribute [rw] pre_pass_start_time
1226
+ # Amount of time prior to contact start you’d like to receive a
1227
+ # CloudWatch event indicating an upcoming pass.
1228
+ # @return [Time]
979
1229
  #
980
1230
  # @!attribute [rw] post_pass_end_time
981
1231
  # Amount of time after a contact ends that you’d like to receive a
982
1232
  # CloudWatch event indicating the pass has finished.
983
1233
  # @return [Time]
984
1234
  #
985
- # @!attribute [rw] pre_pass_start_time
986
- # Amount of time prior to contact start you’d like to receive a
987
- # CloudWatch event indicating an upcoming pass.
988
- # @return [Time]
1235
+ # @!attribute [rw] ground_station
1236
+ # Ground station for a contact.
1237
+ # @return [String]
989
1238
  #
990
- # @!attribute [rw] region
991
- # Region of a contact.
1239
+ # @!attribute [rw] contact_status
1240
+ # Status of a contact.
992
1241
  # @return [String]
993
1242
  #
994
- # @!attribute [rw] satellite_arn
995
- # ARN of a satellite.
1243
+ # @!attribute [rw] error_message
1244
+ # Error message for a contact.
996
1245
  # @return [String]
997
1246
  #
998
- # @!attribute [rw] start_time
999
- # Start time of a contact in UTC.
1000
- # @return [Time]
1247
+ # @!attribute [rw] maximum_elevation
1248
+ # Maximum elevation angle of a contact.
1249
+ # @return [Types::Elevation]
1001
1250
  #
1002
1251
  # @!attribute [rw] tags
1003
1252
  # Tags assigned to a contact.
1004
1253
  # @return [Hash<String,String>]
1005
1254
  #
1006
- # @!attribute [rw] visibility_end_time
1007
- # Projected time in UTC your satellite will set below the [receive
1255
+ # @!attribute [rw] region
1256
+ # Region of a contact.
1257
+ # @return [String]
1258
+ #
1259
+ # @!attribute [rw] dataflow_list
1260
+ # List describing source and destination details for each dataflow
1261
+ # edge.
1262
+ # @return [Array<Types::DataflowDetail>]
1263
+ #
1264
+ # @!attribute [rw] visibility_start_time
1265
+ # Projected time in UTC your satellite will rise above the [receive
1008
1266
  # mask][1]. This time is based on the satellite's current active
1009
1267
  # ephemeris for future contacts and the ephemeris that was active
1010
1268
  # during contact execution for completed contacts.
@@ -1014,8 +1272,8 @@ module Aws::GroundStation
1014
1272
  # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html
1015
1273
  # @return [Time]
1016
1274
  #
1017
- # @!attribute [rw] visibility_start_time
1018
- # Projected time in UTC your satellite will rise above the [receive
1275
+ # @!attribute [rw] visibility_end_time
1276
+ # Projected time in UTC your satellite will set below the [receive
1019
1277
  # mask][1]. This time is based on the satellite's current active
1020
1278
  # ephemeris for future contacts and the ephemeris that was active
1021
1279
  # during contact execution for completed contacts.
@@ -1025,25 +1283,37 @@ module Aws::GroundStation
1025
1283
  # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html
1026
1284
  # @return [Time]
1027
1285
  #
1286
+ # @!attribute [rw] tracking_overrides
1287
+ # Tracking configuration overrides specified when the contact was
1288
+ # reserved.
1289
+ # @return [Types::TrackingOverrides]
1290
+ #
1291
+ # @!attribute [rw] ephemeris
1292
+ # The ephemeris that determines antenna pointing directions for the
1293
+ # contact.
1294
+ # @return [Types::EphemerisResponseData]
1295
+ #
1028
1296
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DescribeContactResponse AWS API Documentation
1029
1297
  #
1030
1298
  class DescribeContactResponse < Struct.new(
1031
1299
  :contact_id,
1032
- :contact_status,
1033
- :dataflow_list,
1034
- :end_time,
1035
- :error_message,
1036
- :ground_station,
1037
- :maximum_elevation,
1038
1300
  :mission_profile_arn,
1039
- :post_pass_end_time,
1040
- :pre_pass_start_time,
1041
- :region,
1042
1301
  :satellite_arn,
1043
1302
  :start_time,
1303
+ :end_time,
1304
+ :pre_pass_start_time,
1305
+ :post_pass_end_time,
1306
+ :ground_station,
1307
+ :contact_status,
1308
+ :error_message,
1309
+ :maximum_elevation,
1044
1310
  :tags,
1311
+ :region,
1312
+ :dataflow_list,
1313
+ :visibility_start_time,
1045
1314
  :visibility_end_time,
1046
- :visibility_start_time)
1315
+ :tracking_overrides,
1316
+ :ephemeris)
1047
1317
  SENSITIVE = []
1048
1318
  include Aws::Structure
1049
1319
  end
@@ -1060,85 +1330,90 @@ module Aws::GroundStation
1060
1330
  include Aws::Structure
1061
1331
  end
1062
1332
 
1063
- # @!attribute [rw] creation_time
1064
- # The time the ephemeris was uploaded in UTC.
1065
- # @return [Time]
1066
- #
1067
- # @!attribute [rw] enabled
1068
- # Whether or not the ephemeris is enabled.
1069
- # @return [Boolean]
1070
- #
1071
1333
  # @!attribute [rw] ephemeris_id
1072
1334
  # The AWS Ground Station ephemeris ID.
1073
1335
  # @return [String]
1074
1336
  #
1075
- # @!attribute [rw] invalid_reason
1076
- # Reason that an ephemeris failed validation. Only provided for
1077
- # ephemerides with `INVALID` status.
1337
+ # @!attribute [rw] satellite_id
1338
+ # The AWS Ground Station satellite ID associated with ephemeris.
1078
1339
  # @return [String]
1079
1340
  #
1080
- # @!attribute [rw] name
1081
- # A name string associated with the ephemeris. Used as a
1082
- # human-readable identifier for the ephemeris.
1341
+ # @!attribute [rw] status
1342
+ # The status of the ephemeris.
1083
1343
  # @return [String]
1084
1344
  #
1085
1345
  # @!attribute [rw] priority
1086
- # Customer-provided priority score to establish the order in which
1087
- # overlapping ephemerides should be used.
1088
- #
1089
- # The default for customer-provided ephemeris priority is 1, and
1090
- # higher numbers take precedence.
1346
+ # A priority score that determines which ephemeris to use when
1347
+ # multiple ephemerides overlap.
1091
1348
  #
1092
- # Priority must be 1 or greater
1349
+ # Higher numbers take precedence. The default is 1. Must be 1 or
1350
+ # greater.
1093
1351
  # @return [Integer]
1094
1352
  #
1095
- # @!attribute [rw] satellite_id
1096
- # The AWS Ground Station satellite ID associated with ephemeris.
1097
- # @return [String]
1353
+ # @!attribute [rw] creation_time
1354
+ # The time the ephemeris was uploaded in UTC.
1355
+ # @return [Time]
1098
1356
  #
1099
- # @!attribute [rw] status
1100
- # The status of the ephemeris.
1357
+ # @!attribute [rw] enabled
1358
+ # Whether or not the ephemeris is enabled.
1359
+ # @return [Boolean]
1360
+ #
1361
+ # @!attribute [rw] name
1362
+ # A name that you can use to identify the ephemeris.
1101
1363
  # @return [String]
1102
1364
  #
1365
+ # @!attribute [rw] tags
1366
+ # Tags assigned to an ephemeris.
1367
+ # @return [Hash<String,String>]
1368
+ #
1103
1369
  # @!attribute [rw] supplied_data
1104
1370
  # Supplied ephemeris data.
1105
1371
  # @return [Types::EphemerisTypeDescription]
1106
1372
  #
1107
- # @!attribute [rw] tags
1108
- # Tags assigned to an ephemeris.
1109
- # @return [Hash<String,String>]
1373
+ # @!attribute [rw] invalid_reason
1374
+ # Reason that an ephemeris failed validation. Appears only when the
1375
+ # status is `INVALID`.
1376
+ # @return [String]
1377
+ #
1378
+ # @!attribute [rw] error_reasons
1379
+ # Detailed error information for ephemerides with `INVALID` status.
1380
+ #
1381
+ # Provides specific error codes and messages to help diagnose
1382
+ # validation failures.
1383
+ # @return [Array<Types::EphemerisErrorReason>]
1110
1384
  #
1111
1385
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DescribeEphemerisResponse AWS API Documentation
1112
1386
  #
1113
1387
  class DescribeEphemerisResponse < Struct.new(
1114
- :creation_time,
1115
- :enabled,
1116
1388
  :ephemeris_id,
1117
- :invalid_reason,
1118
- :name,
1119
- :priority,
1120
1389
  :satellite_id,
1121
1390
  :status,
1391
+ :priority,
1392
+ :creation_time,
1393
+ :enabled,
1394
+ :name,
1395
+ :tags,
1122
1396
  :supplied_data,
1123
- :tags)
1397
+ :invalid_reason,
1398
+ :error_reasons)
1124
1399
  SENSITIVE = []
1125
1400
  include Aws::Structure
1126
1401
  end
1127
1402
 
1128
1403
  # Dataflow details for the destination side.
1129
1404
  #
1130
- # @!attribute [rw] config_details
1131
- # Additional details for a `Config`, if type is dataflow endpoint or
1132
- # antenna demod decode.
1133
- # @return [Types::ConfigDetails]
1405
+ # @!attribute [rw] config_type
1406
+ # Type of a `Config`.
1407
+ # @return [String]
1134
1408
  #
1135
1409
  # @!attribute [rw] config_id
1136
1410
  # UUID of a `Config`.
1137
1411
  # @return [String]
1138
1412
  #
1139
- # @!attribute [rw] config_type
1140
- # Type of a `Config`.
1141
- # @return [String]
1413
+ # @!attribute [rw] config_details
1414
+ # Additional details for a `Config`, if type is dataflow endpoint or
1415
+ # antenna demod decode.
1416
+ # @return [Types::ConfigDetails]
1142
1417
  #
1143
1418
  # @!attribute [rw] dataflow_destination_region
1144
1419
  # Region of a dataflow destination.
@@ -1147,9 +1422,9 @@ module Aws::GroundStation
1147
1422
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Destination AWS API Documentation
1148
1423
  #
1149
1424
  class Destination < Struct.new(
1150
- :config_details,
1151
- :config_id,
1152
1425
  :config_type,
1426
+ :config_id,
1427
+ :config_details,
1153
1428
  :dataflow_destination_region)
1154
1429
  SENSITIVE = []
1155
1430
  include Aws::Structure
@@ -1157,99 +1432,201 @@ module Aws::GroundStation
1157
1432
 
1158
1433
  # Data for agent discovery.
1159
1434
  #
1160
- # @!attribute [rw] capability_arns
1161
- # List of capabilities to associate with agent.
1435
+ # @!attribute [rw] public_ip_addresses
1436
+ # List of public IP addresses to associate with agent.
1162
1437
  # @return [Array<String>]
1163
1438
  #
1164
1439
  # @!attribute [rw] private_ip_addresses
1165
1440
  # List of private IP addresses to associate with agent.
1166
1441
  # @return [Array<String>]
1167
1442
  #
1168
- # @!attribute [rw] public_ip_addresses
1169
- # List of public IP addresses to associate with agent.
1443
+ # @!attribute [rw] capability_arns
1444
+ # List of capabilities to associate with agent.
1170
1445
  # @return [Array<String>]
1171
1446
  #
1172
1447
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DiscoveryData AWS API Documentation
1173
1448
  #
1174
1449
  class DiscoveryData < Struct.new(
1175
- :capability_arns,
1450
+ :public_ip_addresses,
1176
1451
  :private_ip_addresses,
1177
- :public_ip_addresses)
1452
+ :capability_arns)
1178
1453
  SENSITIVE = []
1179
1454
  include Aws::Structure
1180
1455
  end
1181
1456
 
1182
- # Object that represents EIRP.
1457
+ # Definition for a downlink agent endpoint
1183
1458
  #
1184
- # @!attribute [rw] units
1185
- # Units of an EIRP.
1459
+ # @!attribute [rw] name
1460
+ # Downlink dataflow endpoint name
1461
+ # @return [String]
1462
+ #
1463
+ # @!attribute [rw] dataflow_details
1464
+ # Dataflow details for the downlink endpoint
1465
+ # @return [Types::DownlinkDataflowDetails]
1466
+ #
1467
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DownlinkAwsGroundStationAgentEndpoint AWS API Documentation
1468
+ #
1469
+ class DownlinkAwsGroundStationAgentEndpoint < Struct.new(
1470
+ :name,
1471
+ :dataflow_details)
1472
+ SENSITIVE = []
1473
+ include Aws::Structure
1474
+ end
1475
+
1476
+ # Details for a downlink agent endpoint
1477
+ #
1478
+ # @!attribute [rw] name
1479
+ # Downlink dataflow endpoint name
1480
+ # @return [String]
1481
+ #
1482
+ # @!attribute [rw] dataflow_details
1483
+ # Dataflow details for the downlink endpoint
1484
+ # @return [Types::DownlinkDataflowDetails]
1485
+ #
1486
+ # @!attribute [rw] agent_status
1487
+ # Status of the agent associated with the downlink dataflow endpoint
1488
+ # @return [String]
1489
+ #
1490
+ # @!attribute [rw] audit_results
1491
+ # Health audit results for the downlink dataflow endpoint
1186
1492
  # @return [String]
1187
1493
  #
1494
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DownlinkAwsGroundStationAgentEndpointDetails AWS API Documentation
1495
+ #
1496
+ class DownlinkAwsGroundStationAgentEndpointDetails < Struct.new(
1497
+ :name,
1498
+ :dataflow_details,
1499
+ :agent_status,
1500
+ :audit_results)
1501
+ SENSITIVE = []
1502
+ include Aws::Structure
1503
+ end
1504
+
1505
+ # Connection details for Ground Station to Agent and Agent to customer
1506
+ #
1507
+ # @!attribute [rw] agent_ip_and_port_address
1508
+ # Ingress address of AgentEndpoint with a port range and an optional
1509
+ # mtu.
1510
+ # @return [Types::RangedConnectionDetails]
1511
+ #
1512
+ # @!attribute [rw] egress_address_and_port
1513
+ # Egress address of AgentEndpoint with an optional mtu.
1514
+ # @return [Types::ConnectionDetails]
1515
+ #
1516
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DownlinkConnectionDetails AWS API Documentation
1517
+ #
1518
+ class DownlinkConnectionDetails < Struct.new(
1519
+ :agent_ip_and_port_address,
1520
+ :egress_address_and_port)
1521
+ SENSITIVE = []
1522
+ include Aws::Structure
1523
+ end
1524
+
1525
+ # Dataflow details for a downlink endpoint
1526
+ #
1527
+ # @note DownlinkDataflowDetails is a union - when making an API calls you must set exactly one of the members.
1528
+ #
1529
+ # @note DownlinkDataflowDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DownlinkDataflowDetails corresponding to the set member.
1530
+ #
1531
+ # @!attribute [rw] agent_connection_details
1532
+ # Downlink connection details for customer to Agent and Agent to
1533
+ # Ground Station
1534
+ # @return [Types::DownlinkConnectionDetails]
1535
+ #
1536
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DownlinkDataflowDetails AWS API Documentation
1537
+ #
1538
+ class DownlinkDataflowDetails < Struct.new(
1539
+ :agent_connection_details,
1540
+ :unknown)
1541
+ SENSITIVE = []
1542
+ include Aws::Structure
1543
+ include Aws::Structure::Union
1544
+
1545
+ class AgentConnectionDetails < DownlinkDataflowDetails; end
1546
+ class Unknown < DownlinkDataflowDetails; end
1547
+ end
1548
+
1549
+ # Object that represents EIRP.
1550
+ #
1188
1551
  # @!attribute [rw] value
1189
1552
  # Value of an EIRP. Valid values are between 20.0 to 50.0 dBW.
1190
1553
  # @return [Float]
1191
1554
  #
1555
+ # @!attribute [rw] units
1556
+ # Units of an EIRP.
1557
+ # @return [String]
1558
+ #
1192
1559
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Eirp AWS API Documentation
1193
1560
  #
1194
1561
  class Eirp < Struct.new(
1195
- :units,
1196
- :value)
1562
+ :value,
1563
+ :units)
1197
1564
  SENSITIVE = []
1198
1565
  include Aws::Structure
1199
1566
  end
1200
1567
 
1201
1568
  # Elevation angle of the satellite in the sky during a contact.
1202
1569
  #
1203
- # @!attribute [rw] unit
1204
- # Elevation angle units.
1205
- # @return [String]
1206
- #
1207
1570
  # @!attribute [rw] value
1208
1571
  # Elevation angle value.
1209
1572
  # @return [Float]
1210
1573
  #
1574
+ # @!attribute [rw] unit
1575
+ # Elevation angle units.
1576
+ # @return [String]
1577
+ #
1211
1578
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Elevation AWS API Documentation
1212
1579
  #
1213
1580
  class Elevation < Struct.new(
1214
- :unit,
1215
- :value)
1581
+ :value,
1582
+ :unit)
1216
1583
  SENSITIVE = []
1217
1584
  include Aws::Structure
1218
1585
  end
1219
1586
 
1220
1587
  # Information about the endpoint details.
1221
1588
  #
1222
- # @!attribute [rw] aws_ground_station_agent_endpoint
1223
- # An agent endpoint.
1224
- # @return [Types::AwsGroundStationAgentEndpoint]
1589
+ # @!attribute [rw] security_details
1590
+ # Endpoint security details including a list of subnets, a list of
1591
+ # security groups and a role to connect streams to instances.
1592
+ # @return [Types::SecurityDetails]
1225
1593
  #
1226
1594
  # @!attribute [rw] endpoint
1227
1595
  # A dataflow endpoint.
1228
1596
  # @return [Types::DataflowEndpoint]
1229
1597
  #
1230
- # @!attribute [rw] health_reasons
1231
- # Health reasons for a dataflow endpoint. This field is ignored when
1232
- # calling `CreateDataflowEndpointGroup`.
1233
- # @return [Array<String>]
1598
+ # @!attribute [rw] aws_ground_station_agent_endpoint
1599
+ # An agent endpoint.
1600
+ # @return [Types::AwsGroundStationAgentEndpoint]
1601
+ #
1602
+ # @!attribute [rw] uplink_aws_ground_station_agent_endpoint
1603
+ # Definition for an uplink agent endpoint
1604
+ # @return [Types::UplinkAwsGroundStationAgentEndpointDetails]
1605
+ #
1606
+ # @!attribute [rw] downlink_aws_ground_station_agent_endpoint
1607
+ # Definition for a downlink agent endpoint
1608
+ # @return [Types::DownlinkAwsGroundStationAgentEndpointDetails]
1234
1609
  #
1235
1610
  # @!attribute [rw] health_status
1236
1611
  # A dataflow endpoint health status. This field is ignored when
1237
1612
  # calling `CreateDataflowEndpointGroup`.
1238
1613
  # @return [String]
1239
1614
  #
1240
- # @!attribute [rw] security_details
1241
- # Endpoint security details including a list of subnets, a list of
1242
- # security groups and a role to connect streams to instances.
1243
- # @return [Types::SecurityDetails]
1615
+ # @!attribute [rw] health_reasons
1616
+ # Health reasons for a dataflow endpoint. This field is ignored when
1617
+ # calling `CreateDataflowEndpointGroup`.
1618
+ # @return [Array<String>]
1244
1619
  #
1245
1620
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EndpointDetails AWS API Documentation
1246
1621
  #
1247
1622
  class EndpointDetails < Struct.new(
1248
- :aws_ground_station_agent_endpoint,
1623
+ :security_details,
1249
1624
  :endpoint,
1250
- :health_reasons,
1625
+ :aws_ground_station_agent_endpoint,
1626
+ :uplink_aws_ground_station_agent_endpoint,
1627
+ :downlink_aws_ground_station_agent_endpoint,
1251
1628
  :health_status,
1252
- :security_details)
1629
+ :health_reasons)
1253
1630
  SENSITIVE = []
1254
1631
  include Aws::Structure
1255
1632
  end
@@ -1258,59 +1635,148 @@ module Aws::GroundStation
1258
1635
  #
1259
1636
  # @note EphemerisData is a union - when making an API calls you must set exactly one of the members.
1260
1637
  #
1638
+ # @!attribute [rw] tle
1639
+ # Two-line element set (TLE) ephemeris.
1640
+ #
1641
+ # For more detail about providing Two-line element sets to AWS Ground
1642
+ # Station, see the [TLE section][1] of the AWS Ground Station user
1643
+ # guide.
1644
+ #
1645
+ #
1646
+ #
1647
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-tle-ephemeris-data.html
1648
+ # @return [Types::TLEEphemeris]
1649
+ #
1261
1650
  # @!attribute [rw] oem
1262
1651
  # Ephemeris data in Orbit Ephemeris Message (OEM) format.
1263
1652
  #
1264
- # AWS Ground Station processes OEM Customer Provided Ephemerides
1265
- # according to the [CCSDS standard][1] with some extra restrictions.
1266
- # OEM files should be in KVN format. For more detail about the OEM
1267
- # format that AWS Ground Station supports, see [OEM ephemeris
1268
- # format][2] in the AWS Ground Station user guide.
1653
+ # AWS Ground Station processes OEM ephemerides according to the [CCSDS
1654
+ # standard][1] with some extra restrictions. OEM files should be in
1655
+ # KVN format. For more detail about the OEM format that AWS Ground
1656
+ # Station supports, see [OEM ephemeris format][2] in the AWS Ground
1657
+ # Station user guide.
1269
1658
  #
1270
1659
  #
1271
1660
  #
1272
- # [1]: https://public.ccsds.org/Pubs/502x0b3e1.pdf
1273
- # [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-custom-ephemeris-data.html#oem-ephemeris-format
1661
+ # [1]: https://ccsds.org/wp-content/uploads/gravity_forms/5-448e85c647331d9cbaf66c096458bdd5/2025/01//502x0b3e1.pdf
1662
+ # [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format
1274
1663
  # @return [Types::OEMEphemeris]
1275
1664
  #
1276
- # @!attribute [rw] tle
1277
- # Two-line element set (TLE) ephemeris.
1278
- # @return [Types::TLEEphemeris]
1665
+ # @!attribute [rw] az_el
1666
+ # Azimuth elevation ephemeris data.
1667
+ #
1668
+ # Use this ephemeris type to provide pointing angles directly, rather
1669
+ # than satellite orbital elements. Use this when you need precise
1670
+ # antenna pointing but have imprecise or unknown satellite trajectory
1671
+ # information.
1672
+ #
1673
+ # The azimuth elevation data specifies the antenna pointing direction
1674
+ # at specific times relative to a ground station location. AWS Ground
1675
+ # Station uses 4th order Lagrange interpolation to compute pointing
1676
+ # angles between the provided data points.
1677
+ #
1678
+ # AWS Ground Station automatically filters interpolated pointing
1679
+ # angles, including only those that are above the site mask elevation
1680
+ # of the specified ground station.
1681
+ #
1682
+ # For more detail about providing azimuth elevation ephemerides to AWS
1683
+ # Ground Station, see the [azimuth elevation ephemeris section][1] of
1684
+ # the AWS Ground Station User Guide.
1685
+ #
1686
+ #
1687
+ #
1688
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-azimuth-elevation-ephemeris-data.html
1689
+ # @return [Types::AzElEphemeris]
1279
1690
  #
1280
1691
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisData AWS API Documentation
1281
1692
  #
1282
1693
  class EphemerisData < Struct.new(
1283
- :oem,
1284
1694
  :tle,
1695
+ :oem,
1696
+ :az_el,
1285
1697
  :unknown)
1286
1698
  SENSITIVE = []
1287
1699
  include Aws::Structure
1288
1700
  include Aws::Structure::Union
1289
1701
 
1290
- class Oem < EphemerisData; end
1291
1702
  class Tle < EphemerisData; end
1703
+ class Oem < EphemerisData; end
1704
+ class AzEl < EphemerisData; end
1292
1705
  class Unknown < EphemerisData; end
1293
1706
  end
1294
1707
 
1295
1708
  # Description of ephemeris.
1296
1709
  #
1710
+ # @!attribute [rw] source_s3_object
1711
+ # Source Amazon S3 object used for the ephemeris.
1712
+ # @return [Types::S3Object]
1713
+ #
1297
1714
  # @!attribute [rw] ephemeris_data
1298
1715
  # Supplied ephemeris data.
1299
1716
  # @return [String]
1300
1717
  #
1301
- # @!attribute [rw] source_s3_object
1302
- # Source S3 object used for the ephemeris.
1303
- # @return [Types::S3Object]
1304
- #
1305
1718
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisDescription AWS API Documentation
1306
1719
  #
1307
1720
  class EphemerisDescription < Struct.new(
1308
- :ephemeris_data,
1309
- :source_s3_object)
1721
+ :source_s3_object,
1722
+ :ephemeris_data)
1723
+ SENSITIVE = []
1724
+ include Aws::Structure
1725
+ end
1726
+
1727
+ # Detailed error information for ephemeris validation failures.
1728
+ #
1729
+ # Provides an error code and descriptive message to help diagnose and
1730
+ # resolve validation issues.
1731
+ #
1732
+ # @!attribute [rw] error_code
1733
+ # The error code identifying the type of validation failure.
1734
+ #
1735
+ # See the [Troubleshooting Invalid Ephemerides guide][1] for error
1736
+ # code details.
1737
+ #
1738
+ #
1739
+ #
1740
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/troubleshooting-invalid-ephemerides.html
1741
+ # @return [String]
1742
+ #
1743
+ # @!attribute [rw] error_message
1744
+ # A human-readable message describing the validation failure.
1745
+ #
1746
+ # Provides specific details about what failed and may include
1747
+ # suggestions for remediation.
1748
+ # @return [String]
1749
+ #
1750
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisErrorReason AWS API Documentation
1751
+ #
1752
+ class EphemerisErrorReason < Struct.new(
1753
+ :error_code,
1754
+ :error_message)
1310
1755
  SENSITIVE = []
1311
1756
  include Aws::Structure
1312
1757
  end
1313
1758
 
1759
+ # Filter for selecting contacts that use a specific ephemeris".
1760
+ #
1761
+ # @note EphemerisFilter is a union - when making an API calls you must set exactly one of the members.
1762
+ #
1763
+ # @!attribute [rw] az_el
1764
+ # Filter for AzElEphemeris.
1765
+ # @return [Types::AzElEphemerisFilter]
1766
+ #
1767
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisFilter AWS API Documentation
1768
+ #
1769
+ class EphemerisFilter < Struct.new(
1770
+ :az_el,
1771
+ :unknown)
1772
+ SENSITIVE = []
1773
+ include Aws::Structure
1774
+ include Aws::Structure::Union
1775
+
1776
+ class AzEl < EphemerisFilter; end
1777
+ class Unknown < EphemerisFilter; end
1778
+ end
1779
+
1314
1780
  # @!attribute [rw] ephemeris_id
1315
1781
  # The AWS Ground Station ephemeris ID.
1316
1782
  # @return [String]
@@ -1325,57 +1791,63 @@ module Aws::GroundStation
1325
1791
 
1326
1792
  # Ephemeris item.
1327
1793
  #
1328
- # @!attribute [rw] creation_time
1329
- # The time the ephemeris was uploaded in UTC.
1330
- # @return [Time]
1331
- #
1332
- # @!attribute [rw] enabled
1333
- # Whether or not the ephemeris is enabled.
1334
- # @return [Boolean]
1335
- #
1336
1794
  # @!attribute [rw] ephemeris_id
1337
1795
  # The AWS Ground Station ephemeris ID.
1338
1796
  # @return [String]
1339
1797
  #
1340
- # @!attribute [rw] name
1341
- # A name string associated with the ephemeris. Used as a
1342
- # human-readable identifier for the ephemeris.
1798
+ # @!attribute [rw] ephemeris_type
1799
+ # The type of ephemeris.
1343
1800
  # @return [String]
1344
1801
  #
1345
- # @!attribute [rw] priority
1346
- # Customer-provided priority score to establish the order in which
1347
- # overlapping ephemerides should be used.
1802
+ # @!attribute [rw] status
1803
+ # The status of the ephemeris.
1804
+ # @return [String]
1348
1805
  #
1349
- # The default for customer-provided ephemeris priority is 1, and
1350
- # higher numbers take precedence.
1806
+ # @!attribute [rw] priority
1807
+ # A priority score that determines which ephemeris to use when
1808
+ # multiple ephemerides overlap.
1351
1809
  #
1352
- # Priority must be 1 or greater
1810
+ # Higher numbers take precedence. The default is 1. Must be 1 or
1811
+ # greater.
1353
1812
  # @return [Integer]
1354
1813
  #
1355
- # @!attribute [rw] source_s3_object
1356
- # Source S3 object used for the ephemeris.
1357
- # @return [Types::S3Object]
1814
+ # @!attribute [rw] enabled
1815
+ # Whether or not the ephemeris is enabled.
1816
+ # @return [Boolean]
1358
1817
  #
1359
- # @!attribute [rw] status
1360
- # The status of the ephemeris.
1818
+ # @!attribute [rw] creation_time
1819
+ # The time the ephemeris was uploaded in UTC.
1820
+ # @return [Time]
1821
+ #
1822
+ # @!attribute [rw] name
1823
+ # A name that you can use to identify the ephemeris.
1361
1824
  # @return [String]
1362
1825
  #
1826
+ # @!attribute [rw] source_s3_object
1827
+ # Source Amazon S3 object used for the ephemeris.
1828
+ # @return [Types::S3Object]
1829
+ #
1363
1830
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisItem AWS API Documentation
1364
1831
  #
1365
1832
  class EphemerisItem < Struct.new(
1366
- :creation_time,
1367
- :enabled,
1368
1833
  :ephemeris_id,
1369
- :name,
1834
+ :ephemeris_type,
1835
+ :status,
1370
1836
  :priority,
1371
- :source_s3_object,
1372
- :status)
1837
+ :enabled,
1838
+ :creation_time,
1839
+ :name,
1840
+ :source_s3_object)
1373
1841
  SENSITIVE = []
1374
1842
  include Aws::Structure
1375
1843
  end
1376
1844
 
1377
1845
  # Metadata describing a particular ephemeris.
1378
1846
  #
1847
+ # @!attribute [rw] source
1848
+ # The `EphemerisSource` that generated a given ephemeris.
1849
+ # @return [String]
1850
+ #
1379
1851
  # @!attribute [rw] ephemeris_id
1380
1852
  # UUID of a customer-provided ephemeris.
1381
1853
  #
@@ -1397,72 +1869,90 @@ module Aws::GroundStation
1397
1869
  # a name associated.
1398
1870
  # @return [String]
1399
1871
  #
1400
- # @!attribute [rw] source
1401
- # The `EphemerisSource` that generated a given ephemeris.
1402
- # @return [String]
1403
- #
1404
1872
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisMetaData AWS API Documentation
1405
1873
  #
1406
1874
  class EphemerisMetaData < Struct.new(
1875
+ :source,
1407
1876
  :ephemeris_id,
1408
1877
  :epoch,
1409
- :name,
1410
- :source)
1878
+ :name)
1879
+ SENSITIVE = []
1880
+ include Aws::Structure
1881
+ end
1882
+
1883
+ # Ephemeris data for a contact.
1884
+ #
1885
+ # @!attribute [rw] ephemeris_id
1886
+ # Unique identifier of the ephemeris. Appears only for custom
1887
+ # ephemerides.
1888
+ # @return [String]
1889
+ #
1890
+ # @!attribute [rw] ephemeris_type
1891
+ # Type of ephemeris.
1892
+ # @return [String]
1893
+ #
1894
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisResponseData AWS API Documentation
1895
+ #
1896
+ class EphemerisResponseData < Struct.new(
1897
+ :ephemeris_id,
1898
+ :ephemeris_type)
1411
1899
  SENSITIVE = []
1412
1900
  include Aws::Structure
1413
1901
  end
1414
1902
 
1415
1903
  # @note EphemerisTypeDescription is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EphemerisTypeDescription corresponding to the set member.
1416
1904
  #
1905
+ # @!attribute [rw] tle
1906
+ # Description of ephemeris.
1907
+ # @return [Types::EphemerisDescription]
1908
+ #
1417
1909
  # @!attribute [rw] oem
1418
1910
  # Description of ephemeris.
1419
1911
  # @return [Types::EphemerisDescription]
1420
1912
  #
1421
- # @!attribute [rw] tle
1913
+ # @!attribute [rw] az_el
1422
1914
  # Description of ephemeris.
1423
1915
  # @return [Types::EphemerisDescription]
1424
1916
  #
1425
1917
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisTypeDescription AWS API Documentation
1426
1918
  #
1427
1919
  class EphemerisTypeDescription < Struct.new(
1428
- :oem,
1429
1920
  :tle,
1921
+ :oem,
1922
+ :az_el,
1430
1923
  :unknown)
1431
1924
  SENSITIVE = []
1432
1925
  include Aws::Structure
1433
1926
  include Aws::Structure::Union
1434
1927
 
1435
- class Oem < EphemerisTypeDescription; end
1436
1928
  class Tle < EphemerisTypeDescription; end
1929
+ class Oem < EphemerisTypeDescription; end
1930
+ class AzEl < EphemerisTypeDescription; end
1437
1931
  class Unknown < EphemerisTypeDescription; end
1438
1932
  end
1439
1933
 
1440
1934
  # Object that describes the frequency.
1441
1935
  #
1442
- # @!attribute [rw] units
1443
- # Frequency units.
1444
- # @return [String]
1445
- #
1446
1936
  # @!attribute [rw] value
1447
1937
  # Frequency value. Valid values are between 2200 to 2300 MHz and 7750
1448
1938
  # to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.
1449
1939
  # @return [Float]
1450
1940
  #
1941
+ # @!attribute [rw] units
1942
+ # Frequency units.
1943
+ # @return [String]
1944
+ #
1451
1945
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Frequency AWS API Documentation
1452
1946
  #
1453
1947
  class Frequency < Struct.new(
1454
- :units,
1455
- :value)
1948
+ :value,
1949
+ :units)
1456
1950
  SENSITIVE = []
1457
1951
  include Aws::Structure
1458
1952
  end
1459
1953
 
1460
1954
  # Object that describes the frequency bandwidth.
1461
1955
  #
1462
- # @!attribute [rw] units
1463
- # Frequency bandwidth units.
1464
- # @return [String]
1465
- #
1466
1956
  # @!attribute [rw] value
1467
1957
  # Frequency bandwidth value. AWS Ground Station currently has the
1468
1958
  # following bandwidth limitations:
@@ -1477,11 +1967,15 @@ module Aws::GroundStation
1477
1967
  # MHz.
1478
1968
  # @return [Float]
1479
1969
  #
1970
+ # @!attribute [rw] units
1971
+ # Frequency bandwidth units.
1972
+ # @return [String]
1973
+ #
1480
1974
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/FrequencyBandwidth AWS API Documentation
1481
1975
  #
1482
1976
  class FrequencyBandwidth < Struct.new(
1483
- :units,
1484
- :value)
1977
+ :value,
1978
+ :units)
1485
1979
  SENSITIVE = []
1486
1980
  include Aws::Structure
1487
1981
  end
@@ -1515,6 +2009,46 @@ module Aws::GroundStation
1515
2009
  include Aws::Structure
1516
2010
  end
1517
2011
 
2012
+ # @!attribute [rw] agent_id
2013
+ # UUID of agent requesting the response URL.
2014
+ # @return [String]
2015
+ #
2016
+ # @!attribute [rw] task_id
2017
+ # GUID of the agent task for which the response URL is being
2018
+ # requested.
2019
+ # @return [String]
2020
+ #
2021
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentTaskResponseUrlRequest AWS API Documentation
2022
+ #
2023
+ class GetAgentTaskResponseUrlRequest < Struct.new(
2024
+ :agent_id,
2025
+ :task_id)
2026
+ SENSITIVE = []
2027
+ include Aws::Structure
2028
+ end
2029
+
2030
+ # @!attribute [rw] agent_id
2031
+ # UUID of the agent.
2032
+ # @return [String]
2033
+ #
2034
+ # @!attribute [rw] task_id
2035
+ # GUID of the agent task.
2036
+ # @return [String]
2037
+ #
2038
+ # @!attribute [rw] presigned_log_url
2039
+ # Presigned URL for uploading agent task response logs.
2040
+ # @return [String]
2041
+ #
2042
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentTaskResponseUrlResponse AWS API Documentation
2043
+ #
2044
+ class GetAgentTaskResponseUrlResponse < Struct.new(
2045
+ :agent_id,
2046
+ :task_id,
2047
+ :presigned_log_url)
2048
+ SENSITIVE = []
2049
+ include Aws::Structure
2050
+ end
2051
+
1518
2052
  # @!attribute [rw] config_id
1519
2053
  # UUID of a `Config`.
1520
2054
  # @return [String]
@@ -1532,25 +2066,25 @@ module Aws::GroundStation
1532
2066
  include Aws::Structure
1533
2067
  end
1534
2068
 
2069
+ # @!attribute [rw] config_id
2070
+ # UUID of a `Config`.
2071
+ # @return [String]
2072
+ #
1535
2073
  # @!attribute [rw] config_arn
1536
2074
  # ARN of a `Config`
1537
2075
  # @return [String]
1538
2076
  #
1539
- # @!attribute [rw] config_data
1540
- # Data elements in a `Config`.
1541
- # @return [Types::ConfigTypeData]
1542
- #
1543
- # @!attribute [rw] config_id
1544
- # UUID of a `Config`.
2077
+ # @!attribute [rw] name
2078
+ # Name of a `Config`.
1545
2079
  # @return [String]
1546
2080
  #
1547
2081
  # @!attribute [rw] config_type
1548
2082
  # Type of a `Config`.
1549
2083
  # @return [String]
1550
2084
  #
1551
- # @!attribute [rw] name
1552
- # Name of a `Config`.
1553
- # @return [String]
2085
+ # @!attribute [rw] config_data
2086
+ # Data elements in a `Config`.
2087
+ # @return [Types::ConfigTypeData]
1554
2088
  #
1555
2089
  # @!attribute [rw] tags
1556
2090
  # Tags assigned to a `Config`.
@@ -1559,11 +2093,11 @@ module Aws::GroundStation
1559
2093
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetConfigResponse AWS API Documentation
1560
2094
  #
1561
2095
  class GetConfigResponse < Struct.new(
1562
- :config_arn,
1563
- :config_data,
1564
2096
  :config_id,
1565
- :config_type,
2097
+ :config_arn,
1566
2098
  :name,
2099
+ :config_type,
2100
+ :config_data,
1567
2101
  :tags)
1568
2102
  SENSITIVE = []
1569
2103
  include Aws::Structure
@@ -1581,30 +2115,14 @@ module Aws::GroundStation
1581
2115
  include Aws::Structure
1582
2116
  end
1583
2117
 
1584
- # @!attribute [rw] contact_post_pass_duration_seconds
1585
- # Amount of time, in seconds, after a contact ends that the Ground
1586
- # Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
1587
- # Ground Station Dataflow Endpoint Group State Change event will be
1588
- # emitted when the Dataflow Endpoint Group enters and exits the
1589
- # `POSTPASS` state.
1590
- # @return [Integer]
1591
- #
1592
- # @!attribute [rw] contact_pre_pass_duration_seconds
1593
- # Amount of time, in seconds, before a contact starts that the Ground
1594
- # Station Dataflow Endpoint Group will be in a `PREPASS` state. A
1595
- # Ground Station Dataflow Endpoint Group State Change event will be
1596
- # emitted when the Dataflow Endpoint Group enters and exits the
1597
- # `PREPASS` state.
1598
- # @return [Integer]
2118
+ # @!attribute [rw] dataflow_endpoint_group_id
2119
+ # UUID of a dataflow endpoint group.
2120
+ # @return [String]
1599
2121
  #
1600
2122
  # @!attribute [rw] dataflow_endpoint_group_arn
1601
2123
  # ARN of a dataflow endpoint group.
1602
2124
  # @return [String]
1603
2125
  #
1604
- # @!attribute [rw] dataflow_endpoint_group_id
1605
- # UUID of a dataflow endpoint group.
1606
- # @return [String]
1607
- #
1608
2126
  # @!attribute [rw] endpoints_details
1609
2127
  # Details of a dataflow endpoint.
1610
2128
  # @return [Array<Types::EndpointDetails>]
@@ -1613,15 +2131,31 @@ module Aws::GroundStation
1613
2131
  # Tags assigned to a dataflow endpoint group.
1614
2132
  # @return [Hash<String,String>]
1615
2133
  #
2134
+ # @!attribute [rw] contact_pre_pass_duration_seconds
2135
+ # Amount of time, in seconds, before a contact starts that the Ground
2136
+ # Station Dataflow Endpoint Group will be in a `PREPASS` state. A
2137
+ # Ground Station Dataflow Endpoint Group State Change event will be
2138
+ # emitted when the Dataflow Endpoint Group enters and exits the
2139
+ # `PREPASS` state.
2140
+ # @return [Integer]
2141
+ #
2142
+ # @!attribute [rw] contact_post_pass_duration_seconds
2143
+ # Amount of time, in seconds, after a contact ends that the Ground
2144
+ # Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
2145
+ # Ground Station Dataflow Endpoint Group State Change event will be
2146
+ # emitted when the Dataflow Endpoint Group enters and exits the
2147
+ # `POSTPASS` state.
2148
+ # @return [Integer]
2149
+ #
1616
2150
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetDataflowEndpointGroupResponse AWS API Documentation
1617
2151
  #
1618
2152
  class GetDataflowEndpointGroupResponse < Struct.new(
1619
- :contact_post_pass_duration_seconds,
1620
- :contact_pre_pass_duration_seconds,
1621
- :dataflow_endpoint_group_arn,
1622
2153
  :dataflow_endpoint_group_id,
2154
+ :dataflow_endpoint_group_arn,
1623
2155
  :endpoints_details,
1624
- :tags)
2156
+ :tags,
2157
+ :contact_pre_pass_duration_seconds,
2158
+ :contact_post_pass_duration_seconds)
1625
2159
  SENSITIVE = []
1626
2160
  include Aws::Structure
1627
2161
  end
@@ -1643,11 +2177,6 @@ module Aws::GroundStation
1643
2177
  include Aws::Structure
1644
2178
  end
1645
2179
 
1646
- # @!attribute [rw] estimated_minutes_remaining
1647
- # Estimated number of minutes remaining for an account, specific to
1648
- # the month being requested.
1649
- # @return [Integer]
1650
- #
1651
2180
  # @!attribute [rw] is_reserved_minutes_customer
1652
2181
  # Returns whether or not an account has signed up for the reserved
1653
2182
  # minutes pricing plan, specific to the month being requested.
@@ -1658,24 +2187,29 @@ module Aws::GroundStation
1658
2187
  # being requested.
1659
2188
  # @return [Integer]
1660
2189
  #
2190
+ # @!attribute [rw] upcoming_minutes_scheduled
2191
+ # Upcoming minutes scheduled for an account, specific to the month
2192
+ # being requested.
2193
+ # @return [Integer]
2194
+ #
1661
2195
  # @!attribute [rw] total_scheduled_minutes
1662
2196
  # Total scheduled minutes for an account, specific to the month being
1663
2197
  # requested.
1664
2198
  # @return [Integer]
1665
2199
  #
1666
- # @!attribute [rw] upcoming_minutes_scheduled
1667
- # Upcoming minutes scheduled for an account, specific to the month
1668
- # being requested.
2200
+ # @!attribute [rw] estimated_minutes_remaining
2201
+ # Estimated number of minutes remaining for an account, specific to
2202
+ # the month being requested.
1669
2203
  # @return [Integer]
1670
2204
  #
1671
2205
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetMinuteUsageResponse AWS API Documentation
1672
2206
  #
1673
2207
  class GetMinuteUsageResponse < Struct.new(
1674
- :estimated_minutes_remaining,
1675
2208
  :is_reserved_minutes_customer,
1676
2209
  :total_reserved_minute_allocation,
2210
+ :upcoming_minutes_scheduled,
1677
2211
  :total_scheduled_minutes,
1678
- :upcoming_minutes_scheduled)
2212
+ :estimated_minutes_remaining)
1679
2213
  SENSITIVE = []
1680
2214
  include Aws::Structure
1681
2215
  end
@@ -1692,20 +2226,31 @@ module Aws::GroundStation
1692
2226
  include Aws::Structure
1693
2227
  end
1694
2228
 
1695
- # @!attribute [rw] contact_post_pass_duration_seconds
1696
- # Amount of time after a contact ends that you’d like to receive a
1697
- # CloudWatch event indicating the pass has finished.
1698
- # @return [Integer]
2229
+ # @!attribute [rw] mission_profile_id
2230
+ # UUID of a mission profile.
2231
+ # @return [String]
2232
+ #
2233
+ # @!attribute [rw] mission_profile_arn
2234
+ # ARN of a mission profile.
2235
+ # @return [String]
2236
+ #
2237
+ # @!attribute [rw] name
2238
+ # Name of a mission profile.
2239
+ # @return [String]
2240
+ #
2241
+ # @!attribute [rw] region
2242
+ # Region of a mission profile.
2243
+ # @return [String]
1699
2244
  #
1700
2245
  # @!attribute [rw] contact_pre_pass_duration_seconds
1701
2246
  # Amount of time prior to contact start you’d like to receive a
1702
2247
  # CloudWatch event indicating an upcoming pass.
1703
2248
  # @return [Integer]
1704
2249
  #
1705
- # @!attribute [rw] dataflow_edges
1706
- # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
1707
- # `Config` and a *to* `Config`.
1708
- # @return [Array<Array<String>>]
2250
+ # @!attribute [rw] contact_post_pass_duration_seconds
2251
+ # Amount of time after a contact ends that you’d like to receive a
2252
+ # CloudWatch event indicating the pass has finished.
2253
+ # @return [Integer]
1709
2254
  #
1710
2255
  # @!attribute [rw] minimum_viable_contact_duration_seconds
1711
2256
  # Smallest amount of time in seconds that you’d like to see for an
@@ -1713,21 +2258,18 @@ module Aws::GroundStation
1713
2258
  # contacts shorter than this duration.
1714
2259
  # @return [Integer]
1715
2260
  #
1716
- # @!attribute [rw] mission_profile_arn
1717
- # ARN of a mission profile.
1718
- # @return [String]
1719
- #
1720
- # @!attribute [rw] mission_profile_id
1721
- # UUID of a mission profile.
1722
- # @return [String]
2261
+ # @!attribute [rw] dataflow_edges
2262
+ # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
2263
+ # `Config` and a *to* `Config`.
2264
+ # @return [Array<Array<String>>]
1723
2265
  #
1724
- # @!attribute [rw] name
1725
- # Name of a mission profile.
2266
+ # @!attribute [rw] tracking_config_arn
2267
+ # ARN of a tracking `Config`.
1726
2268
  # @return [String]
1727
2269
  #
1728
- # @!attribute [rw] region
1729
- # Region of a mission profile.
1730
- # @return [String]
2270
+ # @!attribute [rw] tags
2271
+ # Tags assigned to a mission profile.
2272
+ # @return [Hash<String,String>]
1731
2273
  #
1732
2274
  # @!attribute [rw] streams_kms_key
1733
2275
  # KMS key to use for encrypting streams.
@@ -1737,29 +2279,21 @@ module Aws::GroundStation
1737
2279
  # Role to use for encrypting streams with KMS key.
1738
2280
  # @return [String]
1739
2281
  #
1740
- # @!attribute [rw] tags
1741
- # Tags assigned to a mission profile.
1742
- # @return [Hash<String,String>]
1743
- #
1744
- # @!attribute [rw] tracking_config_arn
1745
- # ARN of a tracking `Config`.
1746
- # @return [String]
1747
- #
1748
2282
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetMissionProfileResponse AWS API Documentation
1749
2283
  #
1750
2284
  class GetMissionProfileResponse < Struct.new(
1751
- :contact_post_pass_duration_seconds,
1752
- :contact_pre_pass_duration_seconds,
1753
- :dataflow_edges,
1754
- :minimum_viable_contact_duration_seconds,
1755
- :mission_profile_arn,
1756
2285
  :mission_profile_id,
2286
+ :mission_profile_arn,
1757
2287
  :name,
1758
2288
  :region,
1759
- :streams_kms_key,
1760
- :streams_kms_role,
2289
+ :contact_pre_pass_duration_seconds,
2290
+ :contact_post_pass_duration_seconds,
2291
+ :minimum_viable_contact_duration_seconds,
2292
+ :dataflow_edges,
2293
+ :tracking_config_arn,
1761
2294
  :tags,
1762
- :tracking_config_arn)
2295
+ :streams_kms_key,
2296
+ :streams_kms_role)
1763
2297
  SENSITIVE = []
1764
2298
  include Aws::Structure
1765
2299
  end
@@ -1776,35 +2310,35 @@ module Aws::GroundStation
1776
2310
  include Aws::Structure
1777
2311
  end
1778
2312
 
1779
- # @!attribute [rw] current_ephemeris
1780
- # The current ephemeris being used to compute the trajectory of the
1781
- # satellite.
1782
- # @return [Types::EphemerisMetaData]
2313
+ # @!attribute [rw] satellite_id
2314
+ # UUID of a satellite.
2315
+ # @return [String]
1783
2316
  #
1784
- # @!attribute [rw] ground_stations
1785
- # A list of ground stations to which the satellite is on-boarded.
1786
- # @return [Array<String>]
2317
+ # @!attribute [rw] satellite_arn
2318
+ # ARN of a satellite.
2319
+ # @return [String]
1787
2320
  #
1788
2321
  # @!attribute [rw] norad_satellite_id
1789
2322
  # NORAD satellite ID number.
1790
2323
  # @return [Integer]
1791
2324
  #
1792
- # @!attribute [rw] satellite_arn
1793
- # ARN of a satellite.
1794
- # @return [String]
2325
+ # @!attribute [rw] ground_stations
2326
+ # A list of ground stations to which the satellite is on-boarded.
2327
+ # @return [Array<String>]
1795
2328
  #
1796
- # @!attribute [rw] satellite_id
1797
- # UUID of a satellite.
1798
- # @return [String]
2329
+ # @!attribute [rw] current_ephemeris
2330
+ # The current ephemeris being used to compute the trajectory of the
2331
+ # satellite.
2332
+ # @return [Types::EphemerisMetaData]
1799
2333
  #
1800
2334
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetSatelliteResponse AWS API Documentation
1801
2335
  #
1802
2336
  class GetSatelliteResponse < Struct.new(
1803
- :current_ephemeris,
1804
- :ground_stations,
1805
- :norad_satellite_id,
2337
+ :satellite_id,
1806
2338
  :satellite_arn,
1807
- :satellite_id)
2339
+ :norad_satellite_id,
2340
+ :ground_stations,
2341
+ :current_ephemeris)
1808
2342
  SENSITIVE = []
1809
2343
  include Aws::Structure
1810
2344
  end
@@ -1833,21 +2367,44 @@ module Aws::GroundStation
1833
2367
  include Aws::Structure
1834
2368
  end
1835
2369
 
1836
- # An integer range that has a minimum and maximum value.
2370
+ # Time range specified using ISO 8601 format timestamps.
1837
2371
  #
1838
- # @!attribute [rw] maximum
1839
- # A maximum value.
1840
- # @return [Integer]
2372
+ # @!attribute [rw] start_time
2373
+ # Start time in ISO 8601 format in Coordinated Universal Time (UTC).
2374
+ #
2375
+ # Example: `2026-11-15T10:28:48.000Z`
2376
+ # @return [Time]
2377
+ #
2378
+ # @!attribute [rw] end_time
2379
+ # End time in ISO 8601 format in Coordinated Universal Time (UTC).
2380
+ #
2381
+ # Example: `2024-01-15T12:00:00.000Z`
2382
+ # @return [Time]
2383
+ #
2384
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ISO8601TimeRange AWS API Documentation
2385
+ #
2386
+ class ISO8601TimeRange < Struct.new(
2387
+ :start_time,
2388
+ :end_time)
2389
+ SENSITIVE = []
2390
+ include Aws::Structure
2391
+ end
2392
+
2393
+ # An integer range that has a minimum and maximum value.
1841
2394
  #
1842
2395
  # @!attribute [rw] minimum
1843
2396
  # A minimum value.
1844
2397
  # @return [Integer]
1845
2398
  #
2399
+ # @!attribute [rw] maximum
2400
+ # A maximum value.
2401
+ # @return [Integer]
2402
+ #
1846
2403
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/IntegerRange AWS API Documentation
1847
2404
  #
1848
2405
  class IntegerRange < Struct.new(
1849
- :maximum,
1850
- :minimum)
2406
+ :minimum,
2407
+ :maximum)
1851
2408
  SENSITIVE = []
1852
2409
  include Aws::Structure
1853
2410
  end
@@ -1875,6 +2432,10 @@ module Aws::GroundStation
1875
2432
  #
1876
2433
  # @note KmsKey is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of KmsKey corresponding to the set member.
1877
2434
  #
2435
+ # @!attribute [rw] kms_key_arn
2436
+ # KMS Key Arn.
2437
+ # @return [String]
2438
+ #
1878
2439
  # @!attribute [rw] kms_alias_arn
1879
2440
  # KMS Alias Arn.
1880
2441
  # @return [String]
@@ -1883,24 +2444,20 @@ module Aws::GroundStation
1883
2444
  # KMS Alias Name.
1884
2445
  # @return [String]
1885
2446
  #
1886
- # @!attribute [rw] kms_key_arn
1887
- # KMS Key Arn.
1888
- # @return [String]
1889
- #
1890
2447
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/KmsKey AWS API Documentation
1891
2448
  #
1892
2449
  class KmsKey < Struct.new(
2450
+ :kms_key_arn,
1893
2451
  :kms_alias_arn,
1894
2452
  :kms_alias_name,
1895
- :kms_key_arn,
1896
2453
  :unknown)
1897
2454
  SENSITIVE = []
1898
2455
  include Aws::Structure
1899
2456
  include Aws::Structure::Union
1900
2457
 
2458
+ class KmsKeyArn < KmsKey; end
1901
2459
  class KmsAliasArn < KmsKey; end
1902
2460
  class KmsAliasName < KmsKey; end
1903
- class KmsKeyArn < KmsKey; end
1904
2461
  class Unknown < KmsKey; end
1905
2462
  end
1906
2463
 
@@ -1922,86 +2479,91 @@ module Aws::GroundStation
1922
2479
  include Aws::Structure
1923
2480
  end
1924
2481
 
1925
- # @!attribute [rw] config_list
1926
- # List of `Config` items.
1927
- # @return [Array<Types::ConfigListItem>]
1928
- #
1929
2482
  # @!attribute [rw] next_token
1930
2483
  # Next token returned in the response of a previous `ListConfigs`
1931
2484
  # call. Used to get the next page of results.
1932
2485
  # @return [String]
1933
2486
  #
2487
+ # @!attribute [rw] config_list
2488
+ # List of `Config` items.
2489
+ # @return [Array<Types::ConfigListItem>]
2490
+ #
1934
2491
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListConfigsResponse AWS API Documentation
1935
2492
  #
1936
2493
  class ListConfigsResponse < Struct.new(
1937
- :config_list,
1938
- :next_token)
2494
+ :next_token,
2495
+ :config_list)
1939
2496
  SENSITIVE = []
1940
2497
  include Aws::Structure
1941
2498
  end
1942
2499
 
1943
- # @!attribute [rw] end_time
1944
- # End time of a contact in UTC.
1945
- # @return [Time]
1946
- #
1947
- # @!attribute [rw] ground_station
1948
- # Name of a ground station.
1949
- # @return [String]
1950
- #
1951
2500
  # @!attribute [rw] max_results
1952
2501
  # Maximum number of contacts returned.
1953
2502
  # @return [Integer]
1954
2503
  #
1955
- # @!attribute [rw] mission_profile_arn
1956
- # ARN of a mission profile.
1957
- # @return [String]
1958
- #
1959
2504
  # @!attribute [rw] next_token
1960
2505
  # Next token returned in the request of a previous `ListContacts`
1961
2506
  # call. Used to get the next page of results.
1962
2507
  # @return [String]
1963
2508
  #
1964
- # @!attribute [rw] satellite_arn
1965
- # ARN of a satellite.
1966
- # @return [String]
2509
+ # @!attribute [rw] status_list
2510
+ # Status of a contact reservation.
2511
+ # @return [Array<String>]
1967
2512
  #
1968
2513
  # @!attribute [rw] start_time
1969
2514
  # Start time of a contact in UTC.
1970
2515
  # @return [Time]
1971
2516
  #
1972
- # @!attribute [rw] status_list
1973
- # Status of a contact reservation.
1974
- # @return [Array<String>]
2517
+ # @!attribute [rw] end_time
2518
+ # End time of a contact in UTC.
2519
+ # @return [Time]
2520
+ #
2521
+ # @!attribute [rw] ground_station
2522
+ # Name of a ground station.
2523
+ # @return [String]
2524
+ #
2525
+ # @!attribute [rw] satellite_arn
2526
+ # ARN of a satellite.
2527
+ # @return [String]
2528
+ #
2529
+ # @!attribute [rw] mission_profile_arn
2530
+ # ARN of a mission profile.
2531
+ # @return [String]
2532
+ #
2533
+ # @!attribute [rw] ephemeris
2534
+ # Filter for selecting contacts that use a specific ephemeris".
2535
+ # @return [Types::EphemerisFilter]
1975
2536
  #
1976
2537
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListContactsRequest AWS API Documentation
1977
2538
  #
1978
2539
  class ListContactsRequest < Struct.new(
1979
- :end_time,
1980
- :ground_station,
1981
2540
  :max_results,
1982
- :mission_profile_arn,
1983
2541
  :next_token,
1984
- :satellite_arn,
2542
+ :status_list,
1985
2543
  :start_time,
1986
- :status_list)
2544
+ :end_time,
2545
+ :ground_station,
2546
+ :satellite_arn,
2547
+ :mission_profile_arn,
2548
+ :ephemeris)
1987
2549
  SENSITIVE = []
1988
2550
  include Aws::Structure
1989
2551
  end
1990
2552
 
1991
- # @!attribute [rw] contact_list
1992
- # List of contacts.
1993
- # @return [Array<Types::ContactData>]
1994
- #
1995
2553
  # @!attribute [rw] next_token
1996
2554
  # Next token returned in the response of a previous `ListContacts`
1997
2555
  # call. Used to get the next page of results.
1998
2556
  # @return [String]
1999
2557
  #
2558
+ # @!attribute [rw] contact_list
2559
+ # List of contacts.
2560
+ # @return [Array<Types::ContactData>]
2561
+ #
2000
2562
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListContactsResponse AWS API Documentation
2001
2563
  #
2002
2564
  class ListContactsResponse < Struct.new(
2003
- :contact_list,
2004
- :next_token)
2565
+ :next_token,
2566
+ :contact_list)
2005
2567
  SENSITIVE = []
2006
2568
  include Aws::Structure
2007
2569
  end
@@ -2025,83 +2587,91 @@ module Aws::GroundStation
2025
2587
  include Aws::Structure
2026
2588
  end
2027
2589
 
2028
- # @!attribute [rw] dataflow_endpoint_group_list
2029
- # A list of dataflow endpoint groups.
2030
- # @return [Array<Types::DataflowEndpointListItem>]
2031
- #
2032
2590
  # @!attribute [rw] next_token
2033
2591
  # Next token returned in the response of a previous
2034
2592
  # `ListDataflowEndpointGroups` call. Used to get the next page of
2035
2593
  # results.
2036
2594
  # @return [String]
2037
2595
  #
2596
+ # @!attribute [rw] dataflow_endpoint_group_list
2597
+ # A list of dataflow endpoint groups.
2598
+ # @return [Array<Types::DataflowEndpointListItem>]
2599
+ #
2038
2600
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListDataflowEndpointGroupsResponse AWS API Documentation
2039
2601
  #
2040
2602
  class ListDataflowEndpointGroupsResponse < Struct.new(
2041
- :dataflow_endpoint_group_list,
2042
- :next_token)
2603
+ :next_token,
2604
+ :dataflow_endpoint_group_list)
2043
2605
  SENSITIVE = []
2044
2606
  include Aws::Structure
2045
2607
  end
2046
2608
 
2047
- # @!attribute [rw] end_time
2048
- # The end time to list in UTC. The operation will return an ephemeris
2049
- # if its expiration time is within the time range defined by the
2050
- # `startTime` and `endTime`.
2051
- # @return [Time]
2052
- #
2053
- # @!attribute [rw] max_results
2054
- # Maximum number of ephemerides to return.
2055
- # @return [Integer]
2056
- #
2057
- # @!attribute [rw] next_token
2058
- # Pagination token.
2059
- # @return [String]
2060
- #
2061
2609
  # @!attribute [rw] satellite_id
2062
2610
  # The AWS Ground Station satellite ID to list ephemeris for.
2063
2611
  # @return [String]
2064
2612
  #
2613
+ # @!attribute [rw] ephemeris_type
2614
+ # Filter ephemerides by type. If not specified, all ephemeris types
2615
+ # will be returned.
2616
+ # @return [String]
2617
+ #
2065
2618
  # @!attribute [rw] start_time
2066
- # The start time to list in UTC. The operation will return an
2067
- # ephemeris if its expiration time is within the time range defined by
2068
- # the `startTime` and `endTime`.
2619
+ # The start time for the list operation in UTC. Returns ephemerides
2620
+ # with expiration times within your specified time range.
2621
+ # @return [Time]
2622
+ #
2623
+ # @!attribute [rw] end_time
2624
+ # The end time for the list operation in UTC. Returns ephemerides with
2625
+ # expiration times within your specified time range.
2069
2626
  # @return [Time]
2070
2627
  #
2071
2628
  # @!attribute [rw] status_list
2072
2629
  # The list of ephemeris status to return.
2073
2630
  # @return [Array<String>]
2074
2631
  #
2632
+ # @!attribute [rw] max_results
2633
+ # Maximum number of ephemerides to return.
2634
+ # @return [Integer]
2635
+ #
2636
+ # @!attribute [rw] next_token
2637
+ # Pagination token.
2638
+ # @return [String]
2639
+ #
2075
2640
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListEphemeridesRequest AWS API Documentation
2076
2641
  #
2077
2642
  class ListEphemeridesRequest < Struct.new(
2078
- :end_time,
2079
- :max_results,
2080
- :next_token,
2081
2643
  :satellite_id,
2644
+ :ephemeris_type,
2082
2645
  :start_time,
2083
- :status_list)
2646
+ :end_time,
2647
+ :status_list,
2648
+ :max_results,
2649
+ :next_token)
2084
2650
  SENSITIVE = []
2085
2651
  include Aws::Structure
2086
2652
  end
2087
2653
 
2088
- # @!attribute [rw] ephemerides
2089
- # List of ephemerides.
2090
- # @return [Array<Types::EphemerisItem>]
2091
- #
2092
2654
  # @!attribute [rw] next_token
2093
2655
  # Pagination token.
2094
2656
  # @return [String]
2095
2657
  #
2658
+ # @!attribute [rw] ephemerides
2659
+ # List of ephemerides.
2660
+ # @return [Array<Types::EphemerisItem>]
2661
+ #
2096
2662
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListEphemeridesResponse AWS API Documentation
2097
2663
  #
2098
2664
  class ListEphemeridesResponse < Struct.new(
2099
- :ephemerides,
2100
- :next_token)
2665
+ :next_token,
2666
+ :ephemerides)
2101
2667
  SENSITIVE = []
2102
2668
  include Aws::Structure
2103
2669
  end
2104
2670
 
2671
+ # @!attribute [rw] satellite_id
2672
+ # Satellite ID to retrieve on-boarded ground stations.
2673
+ # @return [String]
2674
+ #
2105
2675
  # @!attribute [rw] max_results
2106
2676
  # Maximum number of ground stations returned.
2107
2677
  # @return [Integer]
@@ -2111,34 +2681,30 @@ module Aws::GroundStation
2111
2681
  # page of ground stations.
2112
2682
  # @return [String]
2113
2683
  #
2114
- # @!attribute [rw] satellite_id
2115
- # Satellite ID to retrieve on-boarded ground stations.
2116
- # @return [String]
2117
- #
2118
2684
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListGroundStationsRequest AWS API Documentation
2119
2685
  #
2120
2686
  class ListGroundStationsRequest < Struct.new(
2687
+ :satellite_id,
2121
2688
  :max_results,
2122
- :next_token,
2123
- :satellite_id)
2689
+ :next_token)
2124
2690
  SENSITIVE = []
2125
2691
  include Aws::Structure
2126
2692
  end
2127
2693
 
2128
- # @!attribute [rw] ground_station_list
2129
- # List of ground stations.
2130
- # @return [Array<Types::GroundStationData>]
2131
- #
2132
2694
  # @!attribute [rw] next_token
2133
2695
  # Next token that can be supplied in the next call to get the next
2134
2696
  # page of ground stations.
2135
2697
  # @return [String]
2136
2698
  #
2699
+ # @!attribute [rw] ground_station_list
2700
+ # List of ground stations.
2701
+ # @return [Array<Types::GroundStationData>]
2702
+ #
2137
2703
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListGroundStationsResponse AWS API Documentation
2138
2704
  #
2139
2705
  class ListGroundStationsResponse < Struct.new(
2140
- :ground_station_list,
2141
- :next_token)
2706
+ :next_token,
2707
+ :ground_station_list)
2142
2708
  SENSITIVE = []
2143
2709
  include Aws::Structure
2144
2710
  end
@@ -2161,20 +2727,20 @@ module Aws::GroundStation
2161
2727
  include Aws::Structure
2162
2728
  end
2163
2729
 
2164
- # @!attribute [rw] mission_profile_list
2165
- # List of mission profiles.
2166
- # @return [Array<Types::MissionProfileListItem>]
2167
- #
2168
2730
  # @!attribute [rw] next_token
2169
2731
  # Next token returned in the response of a previous
2170
2732
  # `ListMissionProfiles` call. Used to get the next page of results.
2171
2733
  # @return [String]
2172
2734
  #
2735
+ # @!attribute [rw] mission_profile_list
2736
+ # List of mission profiles.
2737
+ # @return [Array<Types::MissionProfileListItem>]
2738
+ #
2173
2739
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListMissionProfilesResponse AWS API Documentation
2174
2740
  #
2175
2741
  class ListMissionProfilesResponse < Struct.new(
2176
- :mission_profile_list,
2177
- :next_token)
2742
+ :next_token,
2743
+ :mission_profile_list)
2178
2744
  SENSITIVE = []
2179
2745
  include Aws::Structure
2180
2746
  end
@@ -2253,81 +2819,104 @@ module Aws::GroundStation
2253
2819
 
2254
2820
  # Item in a list of mission profiles.
2255
2821
  #
2256
- # @!attribute [rw] mission_profile_arn
2257
- # ARN of a mission profile.
2258
- # @return [String]
2259
- #
2260
2822
  # @!attribute [rw] mission_profile_id
2261
2823
  # UUID of a mission profile.
2262
2824
  # @return [String]
2263
2825
  #
2264
- # @!attribute [rw] name
2265
- # Name of a mission profile.
2826
+ # @!attribute [rw] mission_profile_arn
2827
+ # ARN of a mission profile.
2266
2828
  # @return [String]
2267
2829
  #
2268
2830
  # @!attribute [rw] region
2269
2831
  # Region of a mission profile.
2270
2832
  # @return [String]
2271
2833
  #
2834
+ # @!attribute [rw] name
2835
+ # Name of a mission profile.
2836
+ # @return [String]
2837
+ #
2272
2838
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/MissionProfileListItem AWS API Documentation
2273
2839
  #
2274
2840
  class MissionProfileListItem < Struct.new(
2275
- :mission_profile_arn,
2276
2841
  :mission_profile_id,
2277
- :name,
2278
- :region)
2842
+ :mission_profile_arn,
2843
+ :region,
2844
+ :name)
2279
2845
  SENSITIVE = []
2280
2846
  include Aws::Structure
2281
2847
  end
2282
2848
 
2283
2849
  # Ephemeris data in Orbit Ephemeris Message (OEM) format.
2284
2850
  #
2285
- # AWS Ground Station processes OEM Customer Provided Ephemerides
2286
- # according to the [CCSDS standard][1] with some extra restrictions. OEM
2287
- # files should be in KVN format. For more detail about the OEM format
2288
- # that AWS Ground Station supports, see [OEM ephemeris format][2] in the
2289
- # AWS Ground Station user guide.
2851
+ # AWS Ground Station processes OEM ephemerides according to the [CCSDS
2852
+ # standard][1] with some extra restrictions. OEM files should be in KVN
2853
+ # format. For more detail about the OEM format that AWS Ground Station
2854
+ # supports, see [OEM ephemeris format][2] in the AWS Ground Station user
2855
+ # guide.
2290
2856
  #
2291
2857
  #
2292
2858
  #
2293
- # [1]: https://public.ccsds.org/Pubs/502x0b3e1.pdf
2294
- # [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-custom-ephemeris-data.html#oem-ephemeris-format
2295
- #
2296
- # @!attribute [rw] oem_data
2297
- # The data for an OEM ephemeris, supplied directly in the request
2298
- # rather than through an S3 object.
2299
- # @return [String]
2859
+ # [1]: https://ccsds.org/wp-content/uploads/gravity_forms/5-448e85c647331d9cbaf66c096458bdd5/2025/01//502x0b3e1.pdf
2860
+ # [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format
2300
2861
  #
2301
2862
  # @!attribute [rw] s3_object
2302
- # Identifies the S3 object to be used as the ephemeris.
2863
+ # The Amazon S3 object that contains the ephemeris data.
2303
2864
  # @return [Types::S3Object]
2304
2865
  #
2866
+ # @!attribute [rw] oem_data
2867
+ # OEM data that you provide directly instead of using an Amazon S3
2868
+ # object.
2869
+ # @return [String]
2870
+ #
2305
2871
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/OEMEphemeris AWS API Documentation
2306
2872
  #
2307
2873
  class OEMEphemeris < Struct.new(
2308
- :oem_data,
2309
- :s3_object)
2874
+ :s3_object,
2875
+ :oem_data)
2876
+ SENSITIVE = []
2877
+ include Aws::Structure
2878
+ end
2879
+
2880
+ # Program track settings for an antenna during a contact.
2881
+ #
2882
+ # @note ProgramTrackSettings is a union - when making an API calls you must set exactly one of the members.
2883
+ #
2884
+ # @note ProgramTrackSettings is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProgramTrackSettings corresponding to the set member.
2885
+ #
2886
+ # @!attribute [rw] az_el
2887
+ # Program track settings for AzElEphemeris.
2888
+ # @return [Types::AzElProgramTrackSettings]
2889
+ #
2890
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ProgramTrackSettings AWS API Documentation
2891
+ #
2892
+ class ProgramTrackSettings < Struct.new(
2893
+ :az_el,
2894
+ :unknown)
2310
2895
  SENSITIVE = []
2311
2896
  include Aws::Structure
2897
+ include Aws::Structure::Union
2898
+
2899
+ class AzEl < ProgramTrackSettings; end
2900
+ class Unknown < ProgramTrackSettings; end
2312
2901
  end
2313
2902
 
2314
2903
  # Ingress address of AgentEndpoint with a port range and an optional
2315
2904
  # mtu.
2316
2905
  #
2906
+ # @!attribute [rw] socket_address
2907
+ # A ranged socket address.
2908
+ # @return [Types::RangedSocketAddress]
2909
+ #
2317
2910
  # @!attribute [rw] mtu
2318
2911
  # Maximum transmission unit (MTU) size in bytes of a dataflow
2319
2912
  # endpoint.
2320
2913
  # @return [Integer]
2321
2914
  #
2322
- # @!attribute [rw] socket_address
2323
- # A ranged socket address.
2324
- # @return [Types::RangedSocketAddress]
2325
- #
2326
2915
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RangedConnectionDetails AWS API Documentation
2327
2916
  #
2328
2917
  class RangedConnectionDetails < Struct.new(
2329
- :mtu,
2330
- :socket_address)
2918
+ :socket_address,
2919
+ :mtu)
2331
2920
  SENSITIVE = []
2332
2921
  include Aws::Structure
2333
2922
  end
@@ -2351,14 +2940,14 @@ module Aws::GroundStation
2351
2940
  include Aws::Structure
2352
2941
  end
2353
2942
 
2354
- # @!attribute [rw] agent_details
2355
- # Detailed information about the agent being registered.
2356
- # @return [Types::AgentDetails]
2357
- #
2358
2943
  # @!attribute [rw] discovery_data
2359
2944
  # Data for associating an agent with the capabilities it is managing.
2360
2945
  # @return [Types::DiscoveryData]
2361
2946
  #
2947
+ # @!attribute [rw] agent_details
2948
+ # Detailed information about the agent being registered.
2949
+ # @return [Types::AgentDetails]
2950
+ #
2362
2951
  # @!attribute [rw] tags
2363
2952
  # Tags assigned to an `Agent`.
2364
2953
  # @return [Hash<String,String>]
@@ -2366,8 +2955,8 @@ module Aws::GroundStation
2366
2955
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RegisterAgentRequest AWS API Documentation
2367
2956
  #
2368
2957
  class RegisterAgentRequest < Struct.new(
2369
- :agent_details,
2370
2958
  :discovery_data,
2959
+ :agent_details,
2371
2960
  :tags)
2372
2961
  SENSITIVE = []
2373
2962
  include Aws::Structure
@@ -2385,14 +2974,6 @@ module Aws::GroundStation
2385
2974
  include Aws::Structure
2386
2975
  end
2387
2976
 
2388
- # @!attribute [rw] end_time
2389
- # End time of a contact in UTC.
2390
- # @return [Time]
2391
- #
2392
- # @!attribute [rw] ground_station
2393
- # Name of a ground station.
2394
- # @return [String]
2395
- #
2396
2977
  # @!attribute [rw] mission_profile_arn
2397
2978
  # ARN of a mission profile.
2398
2979
  # @return [String]
@@ -2405,19 +2986,46 @@ module Aws::GroundStation
2405
2986
  # Start time of a contact in UTC.
2406
2987
  # @return [Time]
2407
2988
  #
2989
+ # @!attribute [rw] end_time
2990
+ # End time of a contact in UTC.
2991
+ # @return [Time]
2992
+ #
2993
+ # @!attribute [rw] ground_station
2994
+ # Name of a ground station.
2995
+ # @return [String]
2996
+ #
2408
2997
  # @!attribute [rw] tags
2409
2998
  # Tags assigned to a contact.
2410
2999
  # @return [Hash<String,String>]
2411
3000
  #
3001
+ # @!attribute [rw] tracking_overrides
3002
+ # Tracking configuration overrides for the contact.
3003
+ # @return [Types::TrackingOverrides]
3004
+ #
2412
3005
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ReserveContactRequest AWS API Documentation
2413
3006
  #
2414
3007
  class ReserveContactRequest < Struct.new(
2415
- :end_time,
2416
- :ground_station,
2417
3008
  :mission_profile_arn,
2418
3009
  :satellite_arn,
2419
3010
  :start_time,
2420
- :tags)
3011
+ :end_time,
3012
+ :ground_station,
3013
+ :tags,
3014
+ :tracking_overrides)
3015
+ SENSITIVE = []
3016
+ include Aws::Structure
3017
+ end
3018
+
3019
+ # The specified resource is in use by non-terminal state contacts and
3020
+ # cannot be modified or deleted.
3021
+ #
3022
+ # @!attribute [rw] message
3023
+ # @return [String]
3024
+ #
3025
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ResourceInUseException AWS API Documentation
3026
+ #
3027
+ class ResourceInUseException < Struct.new(
3028
+ :message)
2421
3029
  SENSITIVE = []
2422
3030
  include Aws::Structure
2423
3031
  end
@@ -2452,7 +3060,7 @@ module Aws::GroundStation
2452
3060
  include Aws::Structure
2453
3061
  end
2454
3062
 
2455
- # Object stored in S3 containing ephemeris data.
3063
+ # Object stored in Amazon S3 containing ephemeris data.
2456
3064
  #
2457
3065
  # @!attribute [rw] bucket
2458
3066
  # An Amazon S3 Bucket name.
@@ -2463,7 +3071,8 @@ module Aws::GroundStation
2463
3071
  # @return [String]
2464
3072
  #
2465
3073
  # @!attribute [rw] version
2466
- # For versioned S3 objects, the version to use for the ephemeris.
3074
+ # For versioned Amazon S3 objects, the version to use for the
3075
+ # ephemeris.
2467
3076
  # @return [String]
2468
3077
  #
2469
3078
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/S3Object AWS API Documentation
@@ -2482,20 +3091,20 @@ module Aws::GroundStation
2482
3091
  # ARN of the bucket to record to.
2483
3092
  # @return [String]
2484
3093
  #
2485
- # @!attribute [rw] prefix
2486
- # S3 Key prefix to prefice data files.
2487
- # @return [String]
2488
- #
2489
3094
  # @!attribute [rw] role_arn
2490
3095
  # ARN of the role Ground Station assumes to write data to the bucket.
2491
3096
  # @return [String]
2492
3097
  #
3098
+ # @!attribute [rw] prefix
3099
+ # S3 Key prefix to prefice data files.
3100
+ # @return [String]
3101
+ #
2493
3102
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/S3RecordingConfig AWS API Documentation
2494
3103
  #
2495
3104
  class S3RecordingConfig < Struct.new(
2496
3105
  :bucket_arn,
2497
- :prefix,
2498
- :role_arn)
3106
+ :role_arn,
3107
+ :prefix)
2499
3108
  SENSITIVE = []
2500
3109
  include Aws::Structure
2501
3110
  end
@@ -2521,60 +3130,78 @@ module Aws::GroundStation
2521
3130
 
2522
3131
  # Item in a list of satellites.
2523
3132
  #
2524
- # @!attribute [rw] current_ephemeris
2525
- # The current ephemeris being used to compute the trajectory of the
2526
- # satellite.
2527
- # @return [Types::EphemerisMetaData]
3133
+ # @!attribute [rw] satellite_id
3134
+ # UUID of a satellite.
3135
+ # @return [String]
2528
3136
  #
2529
- # @!attribute [rw] ground_stations
2530
- # A list of ground stations to which the satellite is on-boarded.
2531
- # @return [Array<String>]
3137
+ # @!attribute [rw] satellite_arn
3138
+ # ARN of a satellite.
3139
+ # @return [String]
2532
3140
  #
2533
3141
  # @!attribute [rw] norad_satellite_id
2534
3142
  # NORAD satellite ID number.
2535
3143
  # @return [Integer]
2536
3144
  #
2537
- # @!attribute [rw] satellite_arn
2538
- # ARN of a satellite.
2539
- # @return [String]
3145
+ # @!attribute [rw] ground_stations
3146
+ # A list of ground stations to which the satellite is on-boarded.
3147
+ # @return [Array<String>]
2540
3148
  #
2541
- # @!attribute [rw] satellite_id
2542
- # UUID of a satellite.
2543
- # @return [String]
3149
+ # @!attribute [rw] current_ephemeris
3150
+ # The current ephemeris being used to compute the trajectory of the
3151
+ # satellite.
3152
+ # @return [Types::EphemerisMetaData]
2544
3153
  #
2545
3154
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/SatelliteListItem AWS API Documentation
2546
3155
  #
2547
3156
  class SatelliteListItem < Struct.new(
2548
- :current_ephemeris,
2549
- :ground_stations,
2550
- :norad_satellite_id,
3157
+ :satellite_id,
2551
3158
  :satellite_arn,
2552
- :satellite_id)
3159
+ :norad_satellite_id,
3160
+ :ground_stations,
3161
+ :current_ephemeris)
2553
3162
  SENSITIVE = []
2554
3163
  include Aws::Structure
2555
3164
  end
2556
3165
 
2557
3166
  # Information about endpoints.
2558
3167
  #
2559
- # @!attribute [rw] role_arn
2560
- # ARN to a role needed for connecting streams to your instances.
2561
- # @return [String]
3168
+ # @!attribute [rw] subnet_ids
3169
+ # A list of subnets where AWS Ground Station places elastic network
3170
+ # interfaces to send streams to your instances.
3171
+ # @return [Array<String>]
2562
3172
  #
2563
3173
  # @!attribute [rw] security_group_ids
2564
3174
  # The security groups to attach to the elastic network interfaces.
2565
3175
  # @return [Array<String>]
2566
3176
  #
2567
- # @!attribute [rw] subnet_ids
2568
- # A list of subnets where AWS Ground Station places elastic network
2569
- # interfaces to send streams to your instances.
2570
- # @return [Array<String>]
3177
+ # @!attribute [rw] role_arn
3178
+ # ARN to a role needed for connecting streams to your instances.
3179
+ # @return [String]
2571
3180
  #
2572
3181
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/SecurityDetails AWS API Documentation
2573
3182
  #
2574
3183
  class SecurityDetails < Struct.new(
2575
- :role_arn,
3184
+ :subnet_ids,
2576
3185
  :security_group_ids,
2577
- :subnet_ids)
3186
+ :role_arn)
3187
+ SENSITIVE = []
3188
+ include Aws::Structure
3189
+ end
3190
+
3191
+ # Request would cause a service quota to be exceeded.
3192
+ #
3193
+ # @!attribute [rw] message
3194
+ # @return [String]
3195
+ #
3196
+ # @!attribute [rw] parameter_name
3197
+ # Parameter name that caused the exception
3198
+ # @return [String]
3199
+ #
3200
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ServiceQuotaExceededException AWS API Documentation
3201
+ #
3202
+ class ServiceQuotaExceededException < Struct.new(
3203
+ :message,
3204
+ :parameter_name)
2578
3205
  SENSITIVE = []
2579
3206
  include Aws::Structure
2580
3207
  end
@@ -2600,18 +3227,18 @@ module Aws::GroundStation
2600
3227
 
2601
3228
  # Dataflow details for the source side.
2602
3229
  #
2603
- # @!attribute [rw] config_details
2604
- # Additional details for a `Config`, if type is `dataflow-endpoint` or
2605
- # `antenna-downlink-demod-decode`
2606
- # @return [Types::ConfigDetails]
3230
+ # @!attribute [rw] config_type
3231
+ # Type of a `Config`.
3232
+ # @return [String]
2607
3233
  #
2608
3234
  # @!attribute [rw] config_id
2609
3235
  # UUID of a `Config`.
2610
3236
  # @return [String]
2611
3237
  #
2612
- # @!attribute [rw] config_type
2613
- # Type of a `Config`.
2614
- # @return [String]
3238
+ # @!attribute [rw] config_details
3239
+ # Additional details for a `Config`, if type is `dataflow-endpoint` or
3240
+ # `antenna-downlink-demod-decode`
3241
+ # @return [Types::ConfigDetails]
2615
3242
  #
2616
3243
  # @!attribute [rw] dataflow_source_region
2617
3244
  # Region of a dataflow source.
@@ -2620,9 +3247,9 @@ module Aws::GroundStation
2620
3247
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Source AWS API Documentation
2621
3248
  #
2622
3249
  class Source < Struct.new(
2623
- :config_details,
2624
- :config_id,
2625
3250
  :config_type,
3251
+ :config_id,
3252
+ :config_details,
2626
3253
  :dataflow_source_region)
2627
3254
  SENSITIVE = []
2628
3255
  include Aws::Structure
@@ -2630,6 +3257,12 @@ module Aws::GroundStation
2630
3257
 
2631
3258
  # Object that describes a spectral `Config`.
2632
3259
  #
3260
+ # @!attribute [rw] center_frequency
3261
+ # Center frequency of a spectral `Config`. Valid values are between
3262
+ # 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120
3263
+ # MHz for uplink.
3264
+ # @return [Types::Frequency]
3265
+ #
2633
3266
  # @!attribute [rw] bandwidth
2634
3267
  # Bandwidth of a spectral `Config`. AWS Ground Station currently has
2635
3268
  # the following bandwidth limitations:
@@ -2644,12 +3277,6 @@ module Aws::GroundStation
2644
3277
  # MHz.
2645
3278
  # @return [Types::FrequencyBandwidth]
2646
3279
  #
2647
- # @!attribute [rw] center_frequency
2648
- # Center frequency of a spectral `Config`. Valid values are between
2649
- # 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120
2650
- # MHz for uplink.
2651
- # @return [Types::Frequency]
2652
- #
2653
3280
  # @!attribute [rw] polarization
2654
3281
  # Polarization of a spectral `Config`. Capturing both `"RIGHT_HAND"`
2655
3282
  # and `"LEFT_HAND"` polarization requires two separate configs.
@@ -2658,8 +3285,8 @@ module Aws::GroundStation
2658
3285
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/SpectrumConfig AWS API Documentation
2659
3286
  #
2660
3287
  class SpectrumConfig < Struct.new(
2661
- :bandwidth,
2662
3288
  :center_frequency,
3289
+ :bandwidth,
2663
3290
  :polarization)
2664
3291
  SENSITIVE = []
2665
3292
  include Aws::Structure
@@ -2676,7 +3303,8 @@ module Aws::GroundStation
2676
3303
  # @return [String]
2677
3304
  #
2678
3305
  # @!attribute [rw] valid_time_range
2679
- # The valid time range for the TLE. Gaps or overlap are not permitted.
3306
+ # The valid time range for the TLE. Time ranges must be continuous
3307
+ # without gaps or overlaps.
2680
3308
  # @return [Types::TimeRange]
2681
3309
  #
2682
3310
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TLEData AWS API Documentation
@@ -2691,13 +3319,21 @@ module Aws::GroundStation
2691
3319
 
2692
3320
  # Two-line element set (TLE) ephemeris.
2693
3321
  #
3322
+ # For more detail about providing Two-line element sets to AWS Ground
3323
+ # Station, see the [TLE section][1] of the AWS Ground Station user
3324
+ # guide.
3325
+ #
3326
+ #
3327
+ #
3328
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-tle-ephemeris-data.html
3329
+ #
2694
3330
  # @!attribute [rw] s3_object
2695
- # Identifies the S3 object to be used as the ephemeris.
3331
+ # The Amazon S3 object that contains the ephemeris data.
2696
3332
  # @return [Types::S3Object]
2697
3333
  #
2698
3334
  # @!attribute [rw] tle_data
2699
- # The data for a TLE ephemeris, supplied directly in the request
2700
- # rather than through an S3 object.
3335
+ # TLE data that you provide directly instead of using an Amazon S3
3336
+ # object.
2701
3337
  # @return [Array<Types::TLEData>]
2702
3338
  #
2703
3339
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TLEEphemeris AWS API Documentation
@@ -2730,21 +3366,74 @@ module Aws::GroundStation
2730
3366
  #
2731
3367
  class TagResourceResponse < Aws::EmptyStructure; end
2732
3368
 
3369
+ # Time-tagged azimuth elevation pointing data.
3370
+ #
3371
+ # Specifies the antenna pointing direction at a specific time offset
3372
+ # from the segment's reference epoch.
3373
+ #
3374
+ # @!attribute [rw] dt
3375
+ # Time offset in atomic seconds from the segment's reference epoch.
3376
+ #
3377
+ # All `dt` values within a segment must be in ascending order with no
3378
+ # duplicates.
3379
+ #
3380
+ # `dt` values may be:
3381
+ #
3382
+ # * negative
3383
+ #
3384
+ # * expressed as fractions of a second
3385
+ #
3386
+ # * expressed in scientific notation
3387
+ # @return [Float]
3388
+ #
3389
+ # @!attribute [rw] az
3390
+ # Azimuth angle at the specified time.
3391
+ #
3392
+ # Valid ranges by unit:
3393
+ #
3394
+ # * `DEGREE_ANGLE`: -180 to 360 degrees, measured clockwise from true
3395
+ # north
3396
+ #
3397
+ # * `RADIAN`: -π to 2π radians, measured clockwise from true north
3398
+ # @return [Float]
3399
+ #
3400
+ # @!attribute [rw] el
3401
+ # Elevation angle at the specified time.
3402
+ #
3403
+ # Valid ranges by unit:
3404
+ #
3405
+ # * `DEGREE_ANGLE`: -90 to 90 degrees, where 0 is the horizon, 90 is
3406
+ # zenith, and negative values are below the horizon
3407
+ #
3408
+ # * `RADIAN`: -π/2 to π/2 radians, where 0 is the horizon, π/2 is
3409
+ # zenith, and negative values are below the horizon
3410
+ # @return [Float]
3411
+ #
3412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TimeAzEl AWS API Documentation
3413
+ #
3414
+ class TimeAzEl < Struct.new(
3415
+ :dt,
3416
+ :az,
3417
+ :el)
3418
+ SENSITIVE = []
3419
+ include Aws::Structure
3420
+ end
3421
+
2733
3422
  # A time range with a start and end time.
2734
3423
  #
2735
- # @!attribute [rw] end_time
2736
- # Time in UTC at which the time range ends.
3424
+ # @!attribute [rw] start_time
3425
+ # Unix epoch timestamp in UTC at which the time range starts.
2737
3426
  # @return [Time]
2738
3427
  #
2739
- # @!attribute [rw] start_time
2740
- # Time in UTC at which the time range starts.
3428
+ # @!attribute [rw] end_time
3429
+ # Unix epoch timestamp in UTC at which the time range ends.
2741
3430
  # @return [Time]
2742
3431
  #
2743
3432
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TimeRange AWS API Documentation
2744
3433
  #
2745
3434
  class TimeRange < Struct.new(
2746
- :end_time,
2747
- :start_time)
3435
+ :start_time,
3436
+ :end_time)
2748
3437
  SENSITIVE = []
2749
3438
  include Aws::Structure
2750
3439
  end
@@ -2764,6 +3453,22 @@ module Aws::GroundStation
2764
3453
  include Aws::Structure
2765
3454
  end
2766
3455
 
3456
+ # Overrides the default tracking configuration on an antenna during a
3457
+ # contact.
3458
+ #
3459
+ # @!attribute [rw] program_track_settings
3460
+ # Program track settings to override for antenna tracking during the
3461
+ # contact.
3462
+ # @return [Types::ProgramTrackSettings]
3463
+ #
3464
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TrackingOverrides AWS API Documentation
3465
+ #
3466
+ class TrackingOverrides < Struct.new(
3467
+ :program_track_settings)
3468
+ SENSITIVE = []
3469
+ include Aws::Structure
3470
+ end
3471
+
2767
3472
  # @!attribute [rw] resource_arn
2768
3473
  # ARN of a resource.
2769
3474
  # @return [String]
@@ -2789,6 +3494,10 @@ module Aws::GroundStation
2789
3494
  # UUID of agent to update.
2790
3495
  # @return [String]
2791
3496
  #
3497
+ # @!attribute [rw] task_id
3498
+ # GUID of agent task.
3499
+ # @return [String]
3500
+ #
2792
3501
  # @!attribute [rw] aggregate_status
2793
3502
  # Aggregate status for agent.
2794
3503
  # @return [Types::AggregateStatus]
@@ -2797,17 +3506,13 @@ module Aws::GroundStation
2797
3506
  # List of component statuses for agent.
2798
3507
  # @return [Array<Types::ComponentStatusData>]
2799
3508
  #
2800
- # @!attribute [rw] task_id
2801
- # GUID of agent task.
2802
- # @return [String]
2803
- #
2804
3509
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateAgentStatusRequest AWS API Documentation
2805
3510
  #
2806
3511
  class UpdateAgentStatusRequest < Struct.new(
2807
3512
  :agent_id,
3513
+ :task_id,
2808
3514
  :aggregate_status,
2809
- :component_statuses,
2810
- :task_id)
3515
+ :component_statuses)
2811
3516
  SENSITIVE = []
2812
3517
  include Aws::Structure
2813
3518
  end
@@ -2824,97 +3529,98 @@ module Aws::GroundStation
2824
3529
  include Aws::Structure
2825
3530
  end
2826
3531
 
2827
- # @!attribute [rw] config_data
2828
- # Parameters of a `Config`.
2829
- # @return [Types::ConfigTypeData]
2830
- #
2831
3532
  # @!attribute [rw] config_id
2832
3533
  # UUID of a `Config`.
2833
3534
  # @return [String]
2834
3535
  #
3536
+ # @!attribute [rw] name
3537
+ # Name of a `Config`.
3538
+ # @return [String]
3539
+ #
2835
3540
  # @!attribute [rw] config_type
2836
3541
  # Type of a `Config`.
2837
3542
  # @return [String]
2838
3543
  #
2839
- # @!attribute [rw] name
2840
- # Name of a `Config`.
2841
- # @return [String]
3544
+ # @!attribute [rw] config_data
3545
+ # Parameters of a `Config`.
3546
+ # @return [Types::ConfigTypeData]
2842
3547
  #
2843
3548
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateConfigRequest AWS API Documentation
2844
3549
  #
2845
3550
  class UpdateConfigRequest < Struct.new(
2846
- :config_data,
2847
3551
  :config_id,
3552
+ :name,
2848
3553
  :config_type,
2849
- :name)
3554
+ :config_data)
2850
3555
  SENSITIVE = []
2851
3556
  include Aws::Structure
2852
3557
  end
2853
3558
 
2854
- # @!attribute [rw] enabled
2855
- # Whether the ephemeris is enabled or not. Changing this value will
2856
- # not require the ephemeris to be re-validated.
2857
- # @return [Boolean]
2858
- #
2859
3559
  # @!attribute [rw] ephemeris_id
2860
3560
  # The AWS Ground Station ephemeris ID.
2861
3561
  # @return [String]
2862
3562
  #
3563
+ # @!attribute [rw] enabled
3564
+ # Enable or disable the ephemeris. Changing this value doesn't
3565
+ # require re-validation.
3566
+ # @return [Boolean]
3567
+ #
2863
3568
  # @!attribute [rw] name
2864
- # A name string associated with the ephemeris. Used as a
2865
- # human-readable identifier for the ephemeris.
3569
+ # A name that you can use to identify the ephemeris.
2866
3570
  # @return [String]
2867
3571
  #
2868
3572
  # @!attribute [rw] priority
2869
- # Customer-provided priority score to establish the order in which
2870
- # overlapping ephemerides should be used.
2871
- #
2872
- # The default for customer-provided ephemeris priority is 1, and
2873
- # higher numbers take precedence.
3573
+ # A priority score that determines which ephemeris to use when
3574
+ # multiple ephemerides overlap.
2874
3575
  #
2875
- # Priority must be 1 or greater
3576
+ # Higher numbers take precedence. The default is 1. Must be 1 or
3577
+ # greater.
2876
3578
  # @return [Integer]
2877
3579
  #
2878
3580
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateEphemerisRequest AWS API Documentation
2879
3581
  #
2880
3582
  class UpdateEphemerisRequest < Struct.new(
2881
- :enabled,
2882
3583
  :ephemeris_id,
3584
+ :enabled,
2883
3585
  :name,
2884
3586
  :priority)
2885
3587
  SENSITIVE = []
2886
3588
  include Aws::Structure
2887
3589
  end
2888
3590
 
2889
- # @!attribute [rw] contact_post_pass_duration_seconds
3591
+ # @!attribute [rw] mission_profile_id
3592
+ # UUID of a mission profile.
3593
+ # @return [String]
3594
+ #
3595
+ # @!attribute [rw] name
3596
+ # Name of a mission profile.
3597
+ # @return [String]
3598
+ #
3599
+ # @!attribute [rw] contact_pre_pass_duration_seconds
2890
3600
  # Amount of time after a contact ends that you’d like to receive a
2891
3601
  # Ground Station Contact State Change event indicating the pass has
2892
3602
  # finished.
2893
3603
  # @return [Integer]
2894
3604
  #
2895
- # @!attribute [rw] contact_pre_pass_duration_seconds
3605
+ # @!attribute [rw] contact_post_pass_duration_seconds
2896
3606
  # Amount of time after a contact ends that you’d like to receive a
2897
3607
  # Ground Station Contact State Change event indicating the pass has
2898
3608
  # finished.
2899
3609
  # @return [Integer]
2900
3610
  #
2901
- # @!attribute [rw] dataflow_edges
2902
- # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
2903
- # `Config` and a *to* `Config`.
2904
- # @return [Array<Array<String>>]
2905
- #
2906
3611
  # @!attribute [rw] minimum_viable_contact_duration_seconds
2907
3612
  # Smallest amount of time in seconds that you’d like to see for an
2908
3613
  # available contact. AWS Ground Station will not present you with
2909
3614
  # contacts shorter than this duration.
2910
3615
  # @return [Integer]
2911
3616
  #
2912
- # @!attribute [rw] mission_profile_id
2913
- # UUID of a mission profile.
2914
- # @return [String]
3617
+ # @!attribute [rw] dataflow_edges
3618
+ # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
3619
+ # `Config` and a *to* `Config`.
3620
+ # @return [Array<Array<String>>]
2915
3621
  #
2916
- # @!attribute [rw] name
2917
- # Name of a mission profile.
3622
+ # @!attribute [rw] tracking_config_arn
3623
+ # ARN of a tracking `Config`.
2918
3624
  # @return [String]
2919
3625
  #
2920
3626
  # @!attribute [rw] streams_kms_key
@@ -2925,24 +3631,112 @@ module Aws::GroundStation
2925
3631
  # Role to use for encrypting streams with KMS key.
2926
3632
  # @return [String]
2927
3633
  #
2928
- # @!attribute [rw] tracking_config_arn
2929
- # ARN of a tracking `Config`.
2930
- # @return [String]
2931
- #
2932
3634
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateMissionProfileRequest AWS API Documentation
2933
3635
  #
2934
3636
  class UpdateMissionProfileRequest < Struct.new(
2935
- :contact_post_pass_duration_seconds,
2936
- :contact_pre_pass_duration_seconds,
2937
- :dataflow_edges,
2938
- :minimum_viable_contact_duration_seconds,
2939
3637
  :mission_profile_id,
2940
3638
  :name,
3639
+ :contact_pre_pass_duration_seconds,
3640
+ :contact_post_pass_duration_seconds,
3641
+ :minimum_viable_contact_duration_seconds,
3642
+ :dataflow_edges,
3643
+ :tracking_config_arn,
2941
3644
  :streams_kms_key,
2942
- :streams_kms_role,
2943
- :tracking_config_arn)
3645
+ :streams_kms_role)
3646
+ SENSITIVE = []
3647
+ include Aws::Structure
3648
+ end
3649
+
3650
+ # Definition for an uplink agent endpoint
3651
+ #
3652
+ # @!attribute [rw] name
3653
+ # Uplink dataflow endpoint name
3654
+ # @return [String]
3655
+ #
3656
+ # @!attribute [rw] dataflow_details
3657
+ # Dataflow details for the uplink endpoint
3658
+ # @return [Types::UplinkDataflowDetails]
3659
+ #
3660
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkAwsGroundStationAgentEndpoint AWS API Documentation
3661
+ #
3662
+ class UplinkAwsGroundStationAgentEndpoint < Struct.new(
3663
+ :name,
3664
+ :dataflow_details)
3665
+ SENSITIVE = []
3666
+ include Aws::Structure
3667
+ end
3668
+
3669
+ # Details for an uplink agent endpoint
3670
+ #
3671
+ # @!attribute [rw] name
3672
+ # Uplink dataflow endpoint name
3673
+ # @return [String]
3674
+ #
3675
+ # @!attribute [rw] dataflow_details
3676
+ # Dataflow details for the uplink endpoint
3677
+ # @return [Types::UplinkDataflowDetails]
3678
+ #
3679
+ # @!attribute [rw] agent_status
3680
+ # Status of the agent associated with the uplink dataflow endpoint
3681
+ # @return [String]
3682
+ #
3683
+ # @!attribute [rw] audit_results
3684
+ # Health audit results for the uplink dataflow endpoint
3685
+ # @return [String]
3686
+ #
3687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkAwsGroundStationAgentEndpointDetails AWS API Documentation
3688
+ #
3689
+ class UplinkAwsGroundStationAgentEndpointDetails < Struct.new(
3690
+ :name,
3691
+ :dataflow_details,
3692
+ :agent_status,
3693
+ :audit_results)
3694
+ SENSITIVE = []
3695
+ include Aws::Structure
3696
+ end
3697
+
3698
+ # Connection details for customer to Agent and Agent to Ground Station
3699
+ #
3700
+ # @!attribute [rw] ingress_address_and_port
3701
+ # Egress address of AgentEndpoint with an optional mtu.
3702
+ # @return [Types::ConnectionDetails]
3703
+ #
3704
+ # @!attribute [rw] agent_ip_and_port_address
3705
+ # Ingress address of AgentEndpoint with a port range and an optional
3706
+ # mtu.
3707
+ # @return [Types::RangedConnectionDetails]
3708
+ #
3709
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkConnectionDetails AWS API Documentation
3710
+ #
3711
+ class UplinkConnectionDetails < Struct.new(
3712
+ :ingress_address_and_port,
3713
+ :agent_ip_and_port_address)
3714
+ SENSITIVE = []
3715
+ include Aws::Structure
3716
+ end
3717
+
3718
+ # Dataflow details for an uplink endpoint
3719
+ #
3720
+ # @note UplinkDataflowDetails is a union - when making an API calls you must set exactly one of the members.
3721
+ #
3722
+ # @note UplinkDataflowDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of UplinkDataflowDetails corresponding to the set member.
3723
+ #
3724
+ # @!attribute [rw] agent_connection_details
3725
+ # Uplink connection details for customer to Agent and Agent to Ground
3726
+ # Station
3727
+ # @return [Types::UplinkConnectionDetails]
3728
+ #
3729
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkDataflowDetails AWS API Documentation
3730
+ #
3731
+ class UplinkDataflowDetails < Struct.new(
3732
+ :agent_connection_details,
3733
+ :unknown)
2944
3734
  SENSITIVE = []
2945
3735
  include Aws::Structure
3736
+ include Aws::Structure::Union
3737
+
3738
+ class AgentConnectionDetails < UplinkDataflowDetails; end
3739
+ class Unknown < UplinkDataflowDetails; end
2946
3740
  end
2947
3741
 
2948
3742
  # Information about an uplink echo `Config`.
@@ -2951,19 +3745,19 @@ module Aws::GroundStation
2951
3745
  # specified `AntennaUplinkConfigArn`, are used when this
2952
3746
  # `UplinkEchoConfig` is used in a contact.
2953
3747
  #
2954
- # @!attribute [rw] antenna_uplink_config_arn
2955
- # ARN of an uplink `Config`.
2956
- # @return [String]
2957
- #
2958
3748
  # @!attribute [rw] enabled
2959
3749
  # Whether or not an uplink `Config` is enabled.
2960
3750
  # @return [Boolean]
2961
3751
  #
3752
+ # @!attribute [rw] antenna_uplink_config_arn
3753
+ # ARN of an uplink `Config`.
3754
+ # @return [String]
3755
+ #
2962
3756
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkEchoConfig AWS API Documentation
2963
3757
  #
2964
3758
  class UplinkEchoConfig < Struct.new(
2965
- :antenna_uplink_config_arn,
2966
- :enabled)
3759
+ :enabled,
3760
+ :antenna_uplink_config_arn)
2967
3761
  SENSITIVE = []
2968
3762
  include Aws::Structure
2969
3763
  end