aws-sdk-groundstation 1.73.0 → 1.74.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-groundstation/client.rb +557 -493
- data/lib/aws-sdk-groundstation/client_api.rb +255 -153
- data/lib/aws-sdk-groundstation/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-groundstation/errors.rb +16 -0
- data/lib/aws-sdk-groundstation/types.rb +1270 -802
- data/lib/aws-sdk-groundstation.rb +1 -1
- data/sig/client.rbs +259 -214
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +269 -155
- metadata +1 -1
|
@@ -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
|
|
28
|
+
# <note markdown="1"> This field should not be used. Use agentCpuCores
|
|
29
|
+
# instead.
|
|
37
30
|
#
|
|
38
31
|
# </note>
|
|
39
32
|
#
|
|
40
|
-
#
|
|
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
|
-
:
|
|
71
|
-
:
|
|
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]
|
|
109
|
-
# Information about the
|
|
110
|
-
# @return [Types::
|
|
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]
|
|
117
|
-
# Information about the
|
|
118
|
-
# @return [Types::
|
|
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
|
-
:
|
|
124
|
+
:spectrum_config,
|
|
124
125
|
:demodulation_config,
|
|
125
|
-
:
|
|
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]
|
|
157
|
-
#
|
|
158
|
-
#
|
|
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]
|
|
173
|
-
#
|
|
174
|
-
#
|
|
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
|
-
:
|
|
181
|
-
:audit_results,
|
|
181
|
+
:name,
|
|
182
182
|
:egress_address,
|
|
183
183
|
:ingress_address,
|
|
184
|
-
:
|
|
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]
|
|
204
|
-
#
|
|
205
|
-
# @return [
|
|
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]
|
|
216
|
-
#
|
|
393
|
+
# @!attribute [rw] status
|
|
394
|
+
# Component status.
|
|
217
395
|
# @return [String]
|
|
218
396
|
#
|
|
219
|
-
# @!attribute [rw]
|
|
220
|
-
#
|
|
221
|
-
# @return [
|
|
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]
|
|
228
|
-
#
|
|
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
|
-
:
|
|
417
|
+
:capability_arn,
|
|
418
|
+
:status,
|
|
419
|
+
:bytes_sent,
|
|
420
|
+
:bytes_received,
|
|
239
421
|
:packets_dropped,
|
|
240
|
-
:
|
|
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
|
-
:
|
|
432
|
-
:
|
|
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]
|
|
444
|
-
#
|
|
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]
|
|
452
|
-
#
|
|
453
|
-
#
|
|
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]
|
|
460
|
-
#
|
|
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]
|
|
468
|
-
#
|
|
469
|
-
#
|
|
470
|
-
# @return [Time]
|
|
659
|
+
# @!attribute [rw] error_message
|
|
660
|
+
# Error message of a contact.
|
|
661
|
+
# @return [String]
|
|
471
662
|
#
|
|
472
|
-
# @!attribute [rw]
|
|
473
|
-
#
|
|
474
|
-
#
|
|
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]
|
|
494
|
-
# Projected time in UTC your satellite will
|
|
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]
|
|
506
|
-
# Projected time in UTC your satellite will
|
|
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
|
-
:
|
|
707
|
+
:mission_profile_arn,
|
|
708
|
+
:satellite_arn,
|
|
709
|
+
:start_time,
|
|
522
710
|
:end_time,
|
|
523
|
-
:
|
|
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
|
-
:
|
|
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,20 +750,30 @@ 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
|
|
|
573
|
-
# @!attribute [rw]
|
|
574
|
-
#
|
|
575
|
-
#
|
|
576
|
-
#
|
|
577
|
-
#
|
|
578
|
-
#
|
|
579
|
-
#
|
|
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>]
|
|
580
777
|
#
|
|
581
778
|
# @!attribute [rw] contact_pre_pass_duration_seconds
|
|
582
779
|
# Amount of time, in seconds, before a contact starts that the Ground
|
|
@@ -586,73 +783,60 @@ module Aws::GroundStation
|
|
|
586
783
|
# `PREPASS` state.
|
|
587
784
|
# @return [Integer]
|
|
588
785
|
#
|
|
589
|
-
# @!attribute [rw]
|
|
590
|
-
#
|
|
591
|
-
#
|
|
592
|
-
#
|
|
593
|
-
#
|
|
594
|
-
#
|
|
595
|
-
#
|
|
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>]
|
|
600
|
-
#
|
|
601
|
-
# @!attribute [rw] tags
|
|
602
|
-
# Tags of a dataflow endpoint group.
|
|
603
|
-
# @return [Hash<String,String>]
|
|
786
|
+
# @!attribute [rw] contact_post_pass_duration_seconds
|
|
787
|
+
# Amount of time, in seconds, after a contact ends that the Ground
|
|
788
|
+
# Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
|
|
789
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
|
790
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
|
791
|
+
# `POSTPASS` state.
|
|
792
|
+
# @return [Integer]
|
|
604
793
|
#
|
|
605
794
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateDataflowEndpointGroupRequest AWS API Documentation
|
|
606
795
|
#
|
|
607
796
|
class CreateDataflowEndpointGroupRequest < Struct.new(
|
|
608
|
-
:contact_post_pass_duration_seconds,
|
|
609
|
-
:contact_pre_pass_duration_seconds,
|
|
610
797
|
:endpoint_details,
|
|
611
|
-
:tags
|
|
798
|
+
:tags,
|
|
799
|
+
:contact_pre_pass_duration_seconds,
|
|
800
|
+
:contact_post_pass_duration_seconds)
|
|
612
801
|
SENSITIVE = []
|
|
613
802
|
include Aws::Structure
|
|
614
803
|
end
|
|
615
804
|
|
|
616
|
-
# @!attribute [rw]
|
|
617
|
-
#
|
|
805
|
+
# @!attribute [rw] satellite_id
|
|
806
|
+
# The satellite ID that associates this ephemeris with a satellite in
|
|
807
|
+
# AWS Ground Station.
|
|
808
|
+
# @return [String]
|
|
618
809
|
#
|
|
619
|
-
#
|
|
620
|
-
# after validation.
|
|
810
|
+
# @!attribute [rw] enabled
|
|
811
|
+
# Set to `true` to enable the ephemeris after validation. Set to
|
|
812
|
+
# `false` to keep it disabled.
|
|
621
813
|
# @return [Boolean]
|
|
622
814
|
#
|
|
623
|
-
# @!attribute [rw]
|
|
624
|
-
#
|
|
625
|
-
#
|
|
815
|
+
# @!attribute [rw] priority
|
|
816
|
+
# A priority score that determines which ephemeris to use when
|
|
817
|
+
# multiple ephemerides overlap.
|
|
818
|
+
#
|
|
819
|
+
# Higher numbers take precedence. The default is 1. Must be 1 or
|
|
820
|
+
# greater.
|
|
821
|
+
# @return [Integer]
|
|
626
822
|
#
|
|
627
823
|
# @!attribute [rw] expiration_time
|
|
628
824
|
# An overall expiration time for the ephemeris in UTC, after which it
|
|
629
825
|
# will become `EXPIRED`.
|
|
630
826
|
# @return [Time]
|
|
631
827
|
#
|
|
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
828
|
# @!attribute [rw] name
|
|
638
|
-
# A name
|
|
639
|
-
# human-readable identifier for the ephemeris.
|
|
829
|
+
# A name that you can use to identify the ephemeris.
|
|
640
830
|
# @return [String]
|
|
641
831
|
#
|
|
642
|
-
# @!attribute [rw]
|
|
643
|
-
#
|
|
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.
|
|
832
|
+
# @!attribute [rw] kms_key_arn
|
|
833
|
+
# The ARN of the KMS key to use for encrypting the ephemeris.
|
|
654
834
|
# @return [String]
|
|
655
835
|
#
|
|
836
|
+
# @!attribute [rw] ephemeris
|
|
837
|
+
# Ephemeris data.
|
|
838
|
+
# @return [Types::EphemerisData]
|
|
839
|
+
#
|
|
656
840
|
# @!attribute [rw] tags
|
|
657
841
|
# Tags assigned to an ephemeris.
|
|
658
842
|
# @return [Hash<String,String>]
|
|
@@ -660,33 +844,32 @@ module Aws::GroundStation
|
|
|
660
844
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateEphemerisRequest AWS API Documentation
|
|
661
845
|
#
|
|
662
846
|
class CreateEphemerisRequest < Struct.new(
|
|
847
|
+
:satellite_id,
|
|
663
848
|
:enabled,
|
|
664
|
-
:
|
|
849
|
+
:priority,
|
|
665
850
|
:expiration_time,
|
|
666
|
-
:kms_key_arn,
|
|
667
851
|
:name,
|
|
668
|
-
:
|
|
669
|
-
:
|
|
852
|
+
:kms_key_arn,
|
|
853
|
+
:ephemeris,
|
|
670
854
|
:tags)
|
|
671
855
|
SENSITIVE = []
|
|
672
856
|
include Aws::Structure
|
|
673
857
|
end
|
|
674
858
|
|
|
675
|
-
# @!attribute [rw]
|
|
676
|
-
#
|
|
677
|
-
#
|
|
678
|
-
# finished.
|
|
679
|
-
# @return [Integer]
|
|
859
|
+
# @!attribute [rw] name
|
|
860
|
+
# Name of a mission profile.
|
|
861
|
+
# @return [String]
|
|
680
862
|
#
|
|
681
863
|
# @!attribute [rw] contact_pre_pass_duration_seconds
|
|
682
864
|
# Amount of time prior to contact start you’d like to receive a Ground
|
|
683
865
|
# Station Contact State Change event indicating an upcoming pass.
|
|
684
866
|
# @return [Integer]
|
|
685
867
|
#
|
|
686
|
-
# @!attribute [rw]
|
|
687
|
-
#
|
|
688
|
-
#
|
|
689
|
-
#
|
|
868
|
+
# @!attribute [rw] contact_post_pass_duration_seconds
|
|
869
|
+
# Amount of time after a contact ends that you’d like to receive a
|
|
870
|
+
# Ground Station Contact State Change event indicating the pass has
|
|
871
|
+
# finished.
|
|
872
|
+
# @return [Integer]
|
|
690
873
|
#
|
|
691
874
|
# @!attribute [rw] minimum_viable_contact_duration_seconds
|
|
692
875
|
# Smallest amount of time in seconds that you’d like to see for an
|
|
@@ -694,10 +877,19 @@ module Aws::GroundStation
|
|
|
694
877
|
# contacts shorter than this duration.
|
|
695
878
|
# @return [Integer]
|
|
696
879
|
#
|
|
697
|
-
# @!attribute [rw]
|
|
698
|
-
#
|
|
880
|
+
# @!attribute [rw] dataflow_edges
|
|
881
|
+
# A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
|
|
882
|
+
# `Config` and a *to* `Config`.
|
|
883
|
+
# @return [Array<Array<String>>]
|
|
884
|
+
#
|
|
885
|
+
# @!attribute [rw] tracking_config_arn
|
|
886
|
+
# ARN of a tracking `Config`.
|
|
699
887
|
# @return [String]
|
|
700
888
|
#
|
|
889
|
+
# @!attribute [rw] tags
|
|
890
|
+
# Tags assigned to a mission profile.
|
|
891
|
+
# @return [Hash<String,String>]
|
|
892
|
+
#
|
|
701
893
|
# @!attribute [rw] streams_kms_key
|
|
702
894
|
# KMS key to use for encrypting streams.
|
|
703
895
|
# @return [Types::KmsKey]
|
|
@@ -706,32 +898,28 @@ module Aws::GroundStation
|
|
|
706
898
|
# Role to use for encrypting streams with KMS key.
|
|
707
899
|
# @return [String]
|
|
708
900
|
#
|
|
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
901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateMissionProfileRequest AWS API Documentation
|
|
718
902
|
#
|
|
719
903
|
class CreateMissionProfileRequest < Struct.new(
|
|
720
|
-
:
|
|
904
|
+
:name,
|
|
721
905
|
:contact_pre_pass_duration_seconds,
|
|
722
|
-
:
|
|
906
|
+
:contact_post_pass_duration_seconds,
|
|
723
907
|
:minimum_viable_contact_duration_seconds,
|
|
724
|
-
:
|
|
725
|
-
:
|
|
726
|
-
:streams_kms_role,
|
|
908
|
+
:dataflow_edges,
|
|
909
|
+
:tracking_config_arn,
|
|
727
910
|
:tags,
|
|
728
|
-
:
|
|
911
|
+
:streams_kms_key,
|
|
912
|
+
:streams_kms_role)
|
|
729
913
|
SENSITIVE = []
|
|
730
914
|
include Aws::Structure
|
|
731
915
|
end
|
|
732
916
|
|
|
733
917
|
# Information about a dataflow edge used in a contact.
|
|
734
918
|
#
|
|
919
|
+
# @!attribute [rw] source
|
|
920
|
+
# Dataflow details for the source side.
|
|
921
|
+
# @return [Types::Source]
|
|
922
|
+
#
|
|
735
923
|
# @!attribute [rw] destination
|
|
736
924
|
# Dataflow details for the destination side.
|
|
737
925
|
# @return [Types::Destination]
|
|
@@ -740,46 +928,42 @@ module Aws::GroundStation
|
|
|
740
928
|
# Error message for a dataflow.
|
|
741
929
|
# @return [String]
|
|
742
930
|
#
|
|
743
|
-
# @!attribute [rw] source
|
|
744
|
-
# Dataflow details for the source side.
|
|
745
|
-
# @return [Types::Source]
|
|
746
|
-
#
|
|
747
931
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DataflowDetail AWS API Documentation
|
|
748
932
|
#
|
|
749
933
|
class DataflowDetail < Struct.new(
|
|
934
|
+
:source,
|
|
750
935
|
:destination,
|
|
751
|
-
:error_message
|
|
752
|
-
:source)
|
|
936
|
+
:error_message)
|
|
753
937
|
SENSITIVE = []
|
|
754
938
|
include Aws::Structure
|
|
755
939
|
end
|
|
756
940
|
|
|
757
941
|
# Information about a dataflow endpoint.
|
|
758
942
|
#
|
|
943
|
+
# @!attribute [rw] name
|
|
944
|
+
# Name of a dataflow endpoint.
|
|
945
|
+
# @return [String]
|
|
946
|
+
#
|
|
759
947
|
# @!attribute [rw] address
|
|
760
948
|
# Socket address of a dataflow endpoint.
|
|
761
949
|
# @return [Types::SocketAddress]
|
|
762
950
|
#
|
|
951
|
+
# @!attribute [rw] status
|
|
952
|
+
# Status of a dataflow endpoint.
|
|
953
|
+
# @return [String]
|
|
954
|
+
#
|
|
763
955
|
# @!attribute [rw] mtu
|
|
764
956
|
# Maximum transmission unit (MTU) size in bytes of a dataflow
|
|
765
957
|
# endpoint.
|
|
766
958
|
# @return [Integer]
|
|
767
959
|
#
|
|
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
960
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DataflowEndpoint AWS API Documentation
|
|
777
961
|
#
|
|
778
962
|
class DataflowEndpoint < Struct.new(
|
|
779
|
-
:address,
|
|
780
|
-
:mtu,
|
|
781
963
|
:name,
|
|
782
|
-
:
|
|
964
|
+
:address,
|
|
965
|
+
:status,
|
|
966
|
+
:mtu)
|
|
783
967
|
SENSITIVE = []
|
|
784
968
|
include Aws::Structure
|
|
785
969
|
end
|
|
@@ -817,19 +1001,19 @@ module Aws::GroundStation
|
|
|
817
1001
|
|
|
818
1002
|
# Item in a list of `DataflowEndpoint` groups.
|
|
819
1003
|
#
|
|
820
|
-
# @!attribute [rw] dataflow_endpoint_group_arn
|
|
821
|
-
# ARN of a dataflow endpoint group.
|
|
822
|
-
# @return [String]
|
|
823
|
-
#
|
|
824
1004
|
# @!attribute [rw] dataflow_endpoint_group_id
|
|
825
1005
|
# UUID of a dataflow endpoint group.
|
|
826
1006
|
# @return [String]
|
|
827
1007
|
#
|
|
1008
|
+
# @!attribute [rw] dataflow_endpoint_group_arn
|
|
1009
|
+
# ARN of a dataflow endpoint group.
|
|
1010
|
+
# @return [String]
|
|
1011
|
+
#
|
|
828
1012
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DataflowEndpointListItem AWS API Documentation
|
|
829
1013
|
#
|
|
830
1014
|
class DataflowEndpointListItem < Struct.new(
|
|
831
|
-
:
|
|
832
|
-
:
|
|
1015
|
+
:dataflow_endpoint_group_id,
|
|
1016
|
+
:dataflow_endpoint_group_arn)
|
|
833
1017
|
SENSITIVE = []
|
|
834
1018
|
include Aws::Structure
|
|
835
1019
|
end
|
|
@@ -948,63 +1132,63 @@ module Aws::GroundStation
|
|
|
948
1132
|
# UUID of a contact.
|
|
949
1133
|
# @return [String]
|
|
950
1134
|
#
|
|
951
|
-
# @!attribute [rw]
|
|
952
|
-
#
|
|
1135
|
+
# @!attribute [rw] mission_profile_arn
|
|
1136
|
+
# ARN of a mission profile.
|
|
953
1137
|
# @return [String]
|
|
954
1138
|
#
|
|
955
|
-
# @!attribute [rw]
|
|
956
|
-
#
|
|
957
|
-
#
|
|
958
|
-
#
|
|
1139
|
+
# @!attribute [rw] satellite_arn
|
|
1140
|
+
# ARN of a satellite.
|
|
1141
|
+
# @return [String]
|
|
1142
|
+
#
|
|
1143
|
+
# @!attribute [rw] start_time
|
|
1144
|
+
# Start time of a contact in UTC.
|
|
1145
|
+
# @return [Time]
|
|
959
1146
|
#
|
|
960
1147
|
# @!attribute [rw] end_time
|
|
961
1148
|
# End time of a contact in UTC.
|
|
962
1149
|
# @return [Time]
|
|
963
1150
|
#
|
|
964
|
-
# @!attribute [rw]
|
|
965
|
-
#
|
|
966
|
-
#
|
|
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]
|
|
1151
|
+
# @!attribute [rw] pre_pass_start_time
|
|
1152
|
+
# Amount of time prior to contact start you’d like to receive a
|
|
1153
|
+
# CloudWatch event indicating an upcoming pass.
|
|
1154
|
+
# @return [Time]
|
|
979
1155
|
#
|
|
980
1156
|
# @!attribute [rw] post_pass_end_time
|
|
981
1157
|
# Amount of time after a contact ends that you’d like to receive a
|
|
982
1158
|
# CloudWatch event indicating the pass has finished.
|
|
983
1159
|
# @return [Time]
|
|
984
1160
|
#
|
|
985
|
-
# @!attribute [rw]
|
|
986
|
-
#
|
|
987
|
-
#
|
|
988
|
-
# @return [Time]
|
|
1161
|
+
# @!attribute [rw] ground_station
|
|
1162
|
+
# Ground station for a contact.
|
|
1163
|
+
# @return [String]
|
|
989
1164
|
#
|
|
990
|
-
# @!attribute [rw]
|
|
991
|
-
#
|
|
1165
|
+
# @!attribute [rw] contact_status
|
|
1166
|
+
# Status of a contact.
|
|
992
1167
|
# @return [String]
|
|
993
1168
|
#
|
|
994
|
-
# @!attribute [rw]
|
|
995
|
-
#
|
|
1169
|
+
# @!attribute [rw] error_message
|
|
1170
|
+
# Error message for a contact.
|
|
996
1171
|
# @return [String]
|
|
997
1172
|
#
|
|
998
|
-
# @!attribute [rw]
|
|
999
|
-
#
|
|
1000
|
-
# @return [
|
|
1173
|
+
# @!attribute [rw] maximum_elevation
|
|
1174
|
+
# Maximum elevation angle of a contact.
|
|
1175
|
+
# @return [Types::Elevation]
|
|
1001
1176
|
#
|
|
1002
1177
|
# @!attribute [rw] tags
|
|
1003
1178
|
# Tags assigned to a contact.
|
|
1004
1179
|
# @return [Hash<String,String>]
|
|
1005
1180
|
#
|
|
1006
|
-
# @!attribute [rw]
|
|
1007
|
-
#
|
|
1181
|
+
# @!attribute [rw] region
|
|
1182
|
+
# Region of a contact.
|
|
1183
|
+
# @return [String]
|
|
1184
|
+
#
|
|
1185
|
+
# @!attribute [rw] dataflow_list
|
|
1186
|
+
# List describing source and destination details for each dataflow
|
|
1187
|
+
# edge.
|
|
1188
|
+
# @return [Array<Types::DataflowDetail>]
|
|
1189
|
+
#
|
|
1190
|
+
# @!attribute [rw] visibility_start_time
|
|
1191
|
+
# Projected time in UTC your satellite will rise above the [receive
|
|
1008
1192
|
# mask][1]. This time is based on the satellite's current active
|
|
1009
1193
|
# ephemeris for future contacts and the ephemeris that was active
|
|
1010
1194
|
# during contact execution for completed contacts.
|
|
@@ -1014,8 +1198,8 @@ module Aws::GroundStation
|
|
|
1014
1198
|
# [1]: https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html
|
|
1015
1199
|
# @return [Time]
|
|
1016
1200
|
#
|
|
1017
|
-
# @!attribute [rw]
|
|
1018
|
-
# Projected time in UTC your satellite will
|
|
1201
|
+
# @!attribute [rw] visibility_end_time
|
|
1202
|
+
# Projected time in UTC your satellite will set below the [receive
|
|
1019
1203
|
# mask][1]. This time is based on the satellite's current active
|
|
1020
1204
|
# ephemeris for future contacts and the ephemeris that was active
|
|
1021
1205
|
# during contact execution for completed contacts.
|
|
@@ -1025,25 +1209,37 @@ module Aws::GroundStation
|
|
|
1025
1209
|
# [1]: https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html
|
|
1026
1210
|
# @return [Time]
|
|
1027
1211
|
#
|
|
1212
|
+
# @!attribute [rw] tracking_overrides
|
|
1213
|
+
# Tracking configuration overrides specified when the contact was
|
|
1214
|
+
# reserved.
|
|
1215
|
+
# @return [Types::TrackingOverrides]
|
|
1216
|
+
#
|
|
1217
|
+
# @!attribute [rw] ephemeris
|
|
1218
|
+
# The ephemeris that determines antenna pointing directions for the
|
|
1219
|
+
# contact.
|
|
1220
|
+
# @return [Types::EphemerisResponseData]
|
|
1221
|
+
#
|
|
1028
1222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DescribeContactResponse AWS API Documentation
|
|
1029
1223
|
#
|
|
1030
1224
|
class DescribeContactResponse < Struct.new(
|
|
1031
1225
|
:contact_id,
|
|
1032
|
-
:contact_status,
|
|
1033
|
-
:dataflow_list,
|
|
1034
|
-
:end_time,
|
|
1035
|
-
:error_message,
|
|
1036
|
-
:ground_station,
|
|
1037
|
-
:maximum_elevation,
|
|
1038
1226
|
:mission_profile_arn,
|
|
1039
|
-
:post_pass_end_time,
|
|
1040
|
-
:pre_pass_start_time,
|
|
1041
|
-
:region,
|
|
1042
1227
|
:satellite_arn,
|
|
1043
1228
|
:start_time,
|
|
1229
|
+
:end_time,
|
|
1230
|
+
:pre_pass_start_time,
|
|
1231
|
+
:post_pass_end_time,
|
|
1232
|
+
:ground_station,
|
|
1233
|
+
:contact_status,
|
|
1234
|
+
:error_message,
|
|
1235
|
+
:maximum_elevation,
|
|
1044
1236
|
:tags,
|
|
1237
|
+
:region,
|
|
1238
|
+
:dataflow_list,
|
|
1239
|
+
:visibility_start_time,
|
|
1045
1240
|
:visibility_end_time,
|
|
1046
|
-
:
|
|
1241
|
+
:tracking_overrides,
|
|
1242
|
+
:ephemeris)
|
|
1047
1243
|
SENSITIVE = []
|
|
1048
1244
|
include Aws::Structure
|
|
1049
1245
|
end
|
|
@@ -1060,85 +1256,90 @@ module Aws::GroundStation
|
|
|
1060
1256
|
include Aws::Structure
|
|
1061
1257
|
end
|
|
1062
1258
|
|
|
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
1259
|
# @!attribute [rw] ephemeris_id
|
|
1072
1260
|
# The AWS Ground Station ephemeris ID.
|
|
1073
1261
|
# @return [String]
|
|
1074
1262
|
#
|
|
1075
|
-
# @!attribute [rw]
|
|
1076
|
-
#
|
|
1077
|
-
# ephemerides with `INVALID` status.
|
|
1263
|
+
# @!attribute [rw] satellite_id
|
|
1264
|
+
# The AWS Ground Station satellite ID associated with ephemeris.
|
|
1078
1265
|
# @return [String]
|
|
1079
1266
|
#
|
|
1080
|
-
# @!attribute [rw]
|
|
1081
|
-
#
|
|
1082
|
-
# human-readable identifier for the ephemeris.
|
|
1267
|
+
# @!attribute [rw] status
|
|
1268
|
+
# The status of the ephemeris.
|
|
1083
1269
|
# @return [String]
|
|
1084
1270
|
#
|
|
1085
1271
|
# @!attribute [rw] priority
|
|
1086
|
-
#
|
|
1087
|
-
#
|
|
1272
|
+
# A priority score that determines which ephemeris to use when
|
|
1273
|
+
# multiple ephemerides overlap.
|
|
1088
1274
|
#
|
|
1089
|
-
#
|
|
1090
|
-
#
|
|
1091
|
-
#
|
|
1092
|
-
# Priority must be 1 or greater
|
|
1275
|
+
# Higher numbers take precedence. The default is 1. Must be 1 or
|
|
1276
|
+
# greater.
|
|
1093
1277
|
# @return [Integer]
|
|
1094
1278
|
#
|
|
1095
|
-
# @!attribute [rw]
|
|
1096
|
-
# The
|
|
1097
|
-
# @return [
|
|
1279
|
+
# @!attribute [rw] creation_time
|
|
1280
|
+
# The time the ephemeris was uploaded in UTC.
|
|
1281
|
+
# @return [Time]
|
|
1098
1282
|
#
|
|
1099
|
-
# @!attribute [rw]
|
|
1100
|
-
#
|
|
1283
|
+
# @!attribute [rw] enabled
|
|
1284
|
+
# Whether or not the ephemeris is enabled.
|
|
1285
|
+
# @return [Boolean]
|
|
1286
|
+
#
|
|
1287
|
+
# @!attribute [rw] name
|
|
1288
|
+
# A name that you can use to identify the ephemeris.
|
|
1101
1289
|
# @return [String]
|
|
1102
1290
|
#
|
|
1291
|
+
# @!attribute [rw] tags
|
|
1292
|
+
# Tags assigned to an ephemeris.
|
|
1293
|
+
# @return [Hash<String,String>]
|
|
1294
|
+
#
|
|
1103
1295
|
# @!attribute [rw] supplied_data
|
|
1104
1296
|
# Supplied ephemeris data.
|
|
1105
1297
|
# @return [Types::EphemerisTypeDescription]
|
|
1106
1298
|
#
|
|
1107
|
-
# @!attribute [rw]
|
|
1108
|
-
#
|
|
1109
|
-
#
|
|
1299
|
+
# @!attribute [rw] invalid_reason
|
|
1300
|
+
# Reason that an ephemeris failed validation. Appears only when the
|
|
1301
|
+
# status is `INVALID`.
|
|
1302
|
+
# @return [String]
|
|
1303
|
+
#
|
|
1304
|
+
# @!attribute [rw] error_reasons
|
|
1305
|
+
# Detailed error information for ephemerides with `INVALID` status.
|
|
1306
|
+
#
|
|
1307
|
+
# Provides specific error codes and messages to help diagnose
|
|
1308
|
+
# validation failures.
|
|
1309
|
+
# @return [Array<Types::EphemerisErrorReason>]
|
|
1110
1310
|
#
|
|
1111
1311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DescribeEphemerisResponse AWS API Documentation
|
|
1112
1312
|
#
|
|
1113
1313
|
class DescribeEphemerisResponse < Struct.new(
|
|
1114
|
-
:creation_time,
|
|
1115
|
-
:enabled,
|
|
1116
1314
|
:ephemeris_id,
|
|
1117
|
-
:invalid_reason,
|
|
1118
|
-
:name,
|
|
1119
|
-
:priority,
|
|
1120
1315
|
:satellite_id,
|
|
1121
1316
|
:status,
|
|
1317
|
+
:priority,
|
|
1318
|
+
:creation_time,
|
|
1319
|
+
:enabled,
|
|
1320
|
+
:name,
|
|
1321
|
+
:tags,
|
|
1122
1322
|
:supplied_data,
|
|
1123
|
-
:
|
|
1323
|
+
:invalid_reason,
|
|
1324
|
+
:error_reasons)
|
|
1124
1325
|
SENSITIVE = []
|
|
1125
1326
|
include Aws::Structure
|
|
1126
1327
|
end
|
|
1127
1328
|
|
|
1128
1329
|
# Dataflow details for the destination side.
|
|
1129
1330
|
#
|
|
1130
|
-
# @!attribute [rw]
|
|
1131
|
-
#
|
|
1132
|
-
#
|
|
1133
|
-
# @return [Types::ConfigDetails]
|
|
1331
|
+
# @!attribute [rw] config_type
|
|
1332
|
+
# Type of a `Config`.
|
|
1333
|
+
# @return [String]
|
|
1134
1334
|
#
|
|
1135
1335
|
# @!attribute [rw] config_id
|
|
1136
1336
|
# UUID of a `Config`.
|
|
1137
1337
|
# @return [String]
|
|
1138
1338
|
#
|
|
1139
|
-
# @!attribute [rw]
|
|
1140
|
-
#
|
|
1141
|
-
#
|
|
1339
|
+
# @!attribute [rw] config_details
|
|
1340
|
+
# Additional details for a `Config`, if type is dataflow endpoint or
|
|
1341
|
+
# antenna demod decode.
|
|
1342
|
+
# @return [Types::ConfigDetails]
|
|
1142
1343
|
#
|
|
1143
1344
|
# @!attribute [rw] dataflow_destination_region
|
|
1144
1345
|
# Region of a dataflow destination.
|
|
@@ -1147,9 +1348,9 @@ module Aws::GroundStation
|
|
|
1147
1348
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Destination AWS API Documentation
|
|
1148
1349
|
#
|
|
1149
1350
|
class Destination < Struct.new(
|
|
1150
|
-
:config_details,
|
|
1151
|
-
:config_id,
|
|
1152
1351
|
:config_type,
|
|
1352
|
+
:config_id,
|
|
1353
|
+
:config_details,
|
|
1153
1354
|
:dataflow_destination_region)
|
|
1154
1355
|
SENSITIVE = []
|
|
1155
1356
|
include Aws::Structure
|
|
@@ -1157,99 +1358,99 @@ module Aws::GroundStation
|
|
|
1157
1358
|
|
|
1158
1359
|
# Data for agent discovery.
|
|
1159
1360
|
#
|
|
1160
|
-
# @!attribute [rw]
|
|
1161
|
-
# List of
|
|
1361
|
+
# @!attribute [rw] public_ip_addresses
|
|
1362
|
+
# List of public IP addresses to associate with agent.
|
|
1162
1363
|
# @return [Array<String>]
|
|
1163
1364
|
#
|
|
1164
1365
|
# @!attribute [rw] private_ip_addresses
|
|
1165
1366
|
# List of private IP addresses to associate with agent.
|
|
1166
1367
|
# @return [Array<String>]
|
|
1167
1368
|
#
|
|
1168
|
-
# @!attribute [rw]
|
|
1169
|
-
# List of
|
|
1369
|
+
# @!attribute [rw] capability_arns
|
|
1370
|
+
# List of capabilities to associate with agent.
|
|
1170
1371
|
# @return [Array<String>]
|
|
1171
1372
|
#
|
|
1172
1373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DiscoveryData AWS API Documentation
|
|
1173
1374
|
#
|
|
1174
1375
|
class DiscoveryData < Struct.new(
|
|
1175
|
-
:
|
|
1376
|
+
:public_ip_addresses,
|
|
1176
1377
|
:private_ip_addresses,
|
|
1177
|
-
:
|
|
1378
|
+
:capability_arns)
|
|
1178
1379
|
SENSITIVE = []
|
|
1179
1380
|
include Aws::Structure
|
|
1180
1381
|
end
|
|
1181
1382
|
|
|
1182
1383
|
# Object that represents EIRP.
|
|
1183
1384
|
#
|
|
1184
|
-
# @!attribute [rw] units
|
|
1185
|
-
# Units of an EIRP.
|
|
1186
|
-
# @return [String]
|
|
1187
|
-
#
|
|
1188
1385
|
# @!attribute [rw] value
|
|
1189
1386
|
# Value of an EIRP. Valid values are between 20.0 to 50.0 dBW.
|
|
1190
1387
|
# @return [Float]
|
|
1191
1388
|
#
|
|
1389
|
+
# @!attribute [rw] units
|
|
1390
|
+
# Units of an EIRP.
|
|
1391
|
+
# @return [String]
|
|
1392
|
+
#
|
|
1192
1393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Eirp AWS API Documentation
|
|
1193
1394
|
#
|
|
1194
1395
|
class Eirp < Struct.new(
|
|
1195
|
-
:
|
|
1196
|
-
:
|
|
1396
|
+
:value,
|
|
1397
|
+
:units)
|
|
1197
1398
|
SENSITIVE = []
|
|
1198
1399
|
include Aws::Structure
|
|
1199
1400
|
end
|
|
1200
1401
|
|
|
1201
1402
|
# Elevation angle of the satellite in the sky during a contact.
|
|
1202
1403
|
#
|
|
1203
|
-
# @!attribute [rw] unit
|
|
1204
|
-
# Elevation angle units.
|
|
1205
|
-
# @return [String]
|
|
1206
|
-
#
|
|
1207
1404
|
# @!attribute [rw] value
|
|
1208
1405
|
# Elevation angle value.
|
|
1209
1406
|
# @return [Float]
|
|
1210
1407
|
#
|
|
1408
|
+
# @!attribute [rw] unit
|
|
1409
|
+
# Elevation angle units.
|
|
1410
|
+
# @return [String]
|
|
1411
|
+
#
|
|
1211
1412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Elevation AWS API Documentation
|
|
1212
1413
|
#
|
|
1213
1414
|
class Elevation < Struct.new(
|
|
1214
|
-
:
|
|
1215
|
-
:
|
|
1415
|
+
:value,
|
|
1416
|
+
:unit)
|
|
1216
1417
|
SENSITIVE = []
|
|
1217
1418
|
include Aws::Structure
|
|
1218
1419
|
end
|
|
1219
1420
|
|
|
1220
1421
|
# Information about the endpoint details.
|
|
1221
1422
|
#
|
|
1222
|
-
# @!attribute [rw]
|
|
1223
|
-
#
|
|
1224
|
-
#
|
|
1423
|
+
# @!attribute [rw] security_details
|
|
1424
|
+
# Endpoint security details including a list of subnets, a list of
|
|
1425
|
+
# security groups and a role to connect streams to instances.
|
|
1426
|
+
# @return [Types::SecurityDetails]
|
|
1225
1427
|
#
|
|
1226
1428
|
# @!attribute [rw] endpoint
|
|
1227
1429
|
# A dataflow endpoint.
|
|
1228
1430
|
# @return [Types::DataflowEndpoint]
|
|
1229
1431
|
#
|
|
1230
|
-
# @!attribute [rw]
|
|
1231
|
-
#
|
|
1232
|
-
#
|
|
1233
|
-
# @return [Array<String>]
|
|
1432
|
+
# @!attribute [rw] aws_ground_station_agent_endpoint
|
|
1433
|
+
# An agent endpoint.
|
|
1434
|
+
# @return [Types::AwsGroundStationAgentEndpoint]
|
|
1234
1435
|
#
|
|
1235
1436
|
# @!attribute [rw] health_status
|
|
1236
1437
|
# A dataflow endpoint health status. This field is ignored when
|
|
1237
1438
|
# calling `CreateDataflowEndpointGroup`.
|
|
1238
1439
|
# @return [String]
|
|
1239
1440
|
#
|
|
1240
|
-
# @!attribute [rw]
|
|
1241
|
-
#
|
|
1242
|
-
#
|
|
1243
|
-
# @return [
|
|
1441
|
+
# @!attribute [rw] health_reasons
|
|
1442
|
+
# Health reasons for a dataflow endpoint. This field is ignored when
|
|
1443
|
+
# calling `CreateDataflowEndpointGroup`.
|
|
1444
|
+
# @return [Array<String>]
|
|
1244
1445
|
#
|
|
1245
1446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EndpointDetails AWS API Documentation
|
|
1246
1447
|
#
|
|
1247
1448
|
class EndpointDetails < Struct.new(
|
|
1248
|
-
:
|
|
1449
|
+
:security_details,
|
|
1249
1450
|
:endpoint,
|
|
1250
|
-
:
|
|
1451
|
+
:aws_ground_station_agent_endpoint,
|
|
1251
1452
|
:health_status,
|
|
1252
|
-
:
|
|
1453
|
+
:health_reasons)
|
|
1253
1454
|
SENSITIVE = []
|
|
1254
1455
|
include Aws::Structure
|
|
1255
1456
|
end
|
|
@@ -1258,57 +1459,146 @@ module Aws::GroundStation
|
|
|
1258
1459
|
#
|
|
1259
1460
|
# @note EphemerisData is a union - when making an API calls you must set exactly one of the members.
|
|
1260
1461
|
#
|
|
1462
|
+
# @!attribute [rw] tle
|
|
1463
|
+
# Two-line element set (TLE) ephemeris.
|
|
1464
|
+
#
|
|
1465
|
+
# For more detail about providing Two-line element sets to AWS Ground
|
|
1466
|
+
# Station, see the [TLE section][1] of the AWS Ground Station user
|
|
1467
|
+
# guide.
|
|
1468
|
+
#
|
|
1469
|
+
#
|
|
1470
|
+
#
|
|
1471
|
+
# [1]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-tle-ephemeris-data.html
|
|
1472
|
+
# @return [Types::TLEEphemeris]
|
|
1473
|
+
#
|
|
1261
1474
|
# @!attribute [rw] oem
|
|
1262
1475
|
# Ephemeris data in Orbit Ephemeris Message (OEM) format.
|
|
1263
1476
|
#
|
|
1264
|
-
# AWS Ground Station processes OEM
|
|
1265
|
-
#
|
|
1266
|
-
#
|
|
1267
|
-
#
|
|
1268
|
-
#
|
|
1477
|
+
# AWS Ground Station processes OEM ephemerides according to the [CCSDS
|
|
1478
|
+
# standard][1] with some extra restrictions. OEM files should be in
|
|
1479
|
+
# KVN format. For more detail about the OEM format that AWS Ground
|
|
1480
|
+
# Station supports, see [OEM ephemeris format][2] in the AWS Ground
|
|
1481
|
+
# Station user guide.
|
|
1269
1482
|
#
|
|
1270
1483
|
#
|
|
1271
1484
|
#
|
|
1272
|
-
# [1]: https://
|
|
1273
|
-
# [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-
|
|
1485
|
+
# [1]: https://ccsds.org/wp-content/uploads/gravity_forms/5-448e85c647331d9cbaf66c096458bdd5/2025/01//502x0b3e1.pdf
|
|
1486
|
+
# [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format
|
|
1274
1487
|
# @return [Types::OEMEphemeris]
|
|
1275
1488
|
#
|
|
1276
|
-
# @!attribute [rw]
|
|
1277
|
-
#
|
|
1278
|
-
#
|
|
1489
|
+
# @!attribute [rw] az_el
|
|
1490
|
+
# Azimuth elevation ephemeris data.
|
|
1491
|
+
#
|
|
1492
|
+
# Use this ephemeris type to provide pointing angles directly, rather
|
|
1493
|
+
# than satellite orbital elements. Use this when you need precise
|
|
1494
|
+
# antenna pointing but have imprecise or unknown satellite trajectory
|
|
1495
|
+
# information.
|
|
1496
|
+
#
|
|
1497
|
+
# The azimuth elevation data specifies the antenna pointing direction
|
|
1498
|
+
# at specific times relative to a ground station location. AWS Ground
|
|
1499
|
+
# Station uses 4th order Lagrange interpolation to compute pointing
|
|
1500
|
+
# angles between the provided data points.
|
|
1501
|
+
#
|
|
1502
|
+
# AWS Ground Station automatically filters interpolated pointing
|
|
1503
|
+
# angles, including only those that are above the site mask elevation
|
|
1504
|
+
# of the specified ground station.
|
|
1505
|
+
#
|
|
1506
|
+
# For more detail about providing azimuth elevation ephemerides to AWS
|
|
1507
|
+
# Ground Station, see the [azimuth elevation ephemeris section][1] of
|
|
1508
|
+
# the AWS Ground Station User Guide.
|
|
1509
|
+
#
|
|
1510
|
+
#
|
|
1511
|
+
#
|
|
1512
|
+
# [1]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-azimuth-elevation-ephemeris-data.html
|
|
1513
|
+
# @return [Types::AzElEphemeris]
|
|
1279
1514
|
#
|
|
1280
1515
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisData AWS API Documentation
|
|
1281
1516
|
#
|
|
1282
1517
|
class EphemerisData < Struct.new(
|
|
1283
|
-
:oem,
|
|
1284
1518
|
:tle,
|
|
1519
|
+
:oem,
|
|
1520
|
+
:az_el,
|
|
1285
1521
|
:unknown)
|
|
1286
1522
|
SENSITIVE = []
|
|
1287
1523
|
include Aws::Structure
|
|
1288
1524
|
include Aws::Structure::Union
|
|
1289
1525
|
|
|
1290
|
-
class Oem < EphemerisData; end
|
|
1291
1526
|
class Tle < EphemerisData; end
|
|
1527
|
+
class Oem < EphemerisData; end
|
|
1528
|
+
class AzEl < EphemerisData; end
|
|
1292
1529
|
class Unknown < EphemerisData; end
|
|
1293
1530
|
end
|
|
1294
1531
|
|
|
1295
1532
|
# Description of ephemeris.
|
|
1296
1533
|
#
|
|
1534
|
+
# @!attribute [rw] source_s3_object
|
|
1535
|
+
# Source Amazon S3 object used for the ephemeris.
|
|
1536
|
+
# @return [Types::S3Object]
|
|
1537
|
+
#
|
|
1297
1538
|
# @!attribute [rw] ephemeris_data
|
|
1298
1539
|
# Supplied ephemeris data.
|
|
1299
1540
|
# @return [String]
|
|
1300
1541
|
#
|
|
1301
|
-
# @!attribute [rw] source_s3_object
|
|
1302
|
-
# Source S3 object used for the ephemeris.
|
|
1303
|
-
# @return [Types::S3Object]
|
|
1304
|
-
#
|
|
1305
1542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisDescription AWS API Documentation
|
|
1306
1543
|
#
|
|
1307
|
-
class EphemerisDescription < Struct.new(
|
|
1308
|
-
:
|
|
1309
|
-
:
|
|
1544
|
+
class EphemerisDescription < Struct.new(
|
|
1545
|
+
:source_s3_object,
|
|
1546
|
+
:ephemeris_data)
|
|
1547
|
+
SENSITIVE = []
|
|
1548
|
+
include Aws::Structure
|
|
1549
|
+
end
|
|
1550
|
+
|
|
1551
|
+
# Detailed error information for ephemeris validation failures.
|
|
1552
|
+
#
|
|
1553
|
+
# Provides an error code and descriptive message to help diagnose and
|
|
1554
|
+
# resolve validation issues.
|
|
1555
|
+
#
|
|
1556
|
+
# @!attribute [rw] error_code
|
|
1557
|
+
# The error code identifying the type of validation failure.
|
|
1558
|
+
#
|
|
1559
|
+
# See the [Troubleshooting Invalid Ephemerides guide][1] for error
|
|
1560
|
+
# code details.
|
|
1561
|
+
#
|
|
1562
|
+
#
|
|
1563
|
+
#
|
|
1564
|
+
# [1]: https://docs.aws.amazon.com/ground-station/latest/ug/troubleshooting-invalid-ephemerides.html
|
|
1565
|
+
# @return [String]
|
|
1566
|
+
#
|
|
1567
|
+
# @!attribute [rw] error_message
|
|
1568
|
+
# A human-readable message describing the validation failure.
|
|
1569
|
+
#
|
|
1570
|
+
# Provides specific details about what failed and may include
|
|
1571
|
+
# suggestions for remediation.
|
|
1572
|
+
# @return [String]
|
|
1573
|
+
#
|
|
1574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisErrorReason AWS API Documentation
|
|
1575
|
+
#
|
|
1576
|
+
class EphemerisErrorReason < Struct.new(
|
|
1577
|
+
:error_code,
|
|
1578
|
+
:error_message)
|
|
1579
|
+
SENSITIVE = []
|
|
1580
|
+
include Aws::Structure
|
|
1581
|
+
end
|
|
1582
|
+
|
|
1583
|
+
# Filter for selecting contacts that use a specific ephemeris".
|
|
1584
|
+
#
|
|
1585
|
+
# @note EphemerisFilter is a union - when making an API calls you must set exactly one of the members.
|
|
1586
|
+
#
|
|
1587
|
+
# @!attribute [rw] az_el
|
|
1588
|
+
# Filter for AzElEphemeris.
|
|
1589
|
+
# @return [Types::AzElEphemerisFilter]
|
|
1590
|
+
#
|
|
1591
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisFilter AWS API Documentation
|
|
1592
|
+
#
|
|
1593
|
+
class EphemerisFilter < Struct.new(
|
|
1594
|
+
:az_el,
|
|
1595
|
+
:unknown)
|
|
1310
1596
|
SENSITIVE = []
|
|
1311
1597
|
include Aws::Structure
|
|
1598
|
+
include Aws::Structure::Union
|
|
1599
|
+
|
|
1600
|
+
class AzEl < EphemerisFilter; end
|
|
1601
|
+
class Unknown < EphemerisFilter; end
|
|
1312
1602
|
end
|
|
1313
1603
|
|
|
1314
1604
|
# @!attribute [rw] ephemeris_id
|
|
@@ -1325,57 +1615,63 @@ module Aws::GroundStation
|
|
|
1325
1615
|
|
|
1326
1616
|
# Ephemeris item.
|
|
1327
1617
|
#
|
|
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
1618
|
# @!attribute [rw] ephemeris_id
|
|
1337
1619
|
# The AWS Ground Station ephemeris ID.
|
|
1338
1620
|
# @return [String]
|
|
1339
1621
|
#
|
|
1340
|
-
# @!attribute [rw]
|
|
1341
|
-
#
|
|
1342
|
-
# human-readable identifier for the ephemeris.
|
|
1622
|
+
# @!attribute [rw] ephemeris_type
|
|
1623
|
+
# The type of ephemeris.
|
|
1343
1624
|
# @return [String]
|
|
1344
1625
|
#
|
|
1345
|
-
# @!attribute [rw]
|
|
1346
|
-
#
|
|
1347
|
-
#
|
|
1626
|
+
# @!attribute [rw] status
|
|
1627
|
+
# The status of the ephemeris.
|
|
1628
|
+
# @return [String]
|
|
1348
1629
|
#
|
|
1349
|
-
#
|
|
1350
|
-
#
|
|
1630
|
+
# @!attribute [rw] priority
|
|
1631
|
+
# A priority score that determines which ephemeris to use when
|
|
1632
|
+
# multiple ephemerides overlap.
|
|
1351
1633
|
#
|
|
1352
|
-
#
|
|
1634
|
+
# Higher numbers take precedence. The default is 1. Must be 1 or
|
|
1635
|
+
# greater.
|
|
1353
1636
|
# @return [Integer]
|
|
1354
1637
|
#
|
|
1355
|
-
# @!attribute [rw]
|
|
1356
|
-
#
|
|
1357
|
-
# @return [
|
|
1638
|
+
# @!attribute [rw] enabled
|
|
1639
|
+
# Whether or not the ephemeris is enabled.
|
|
1640
|
+
# @return [Boolean]
|
|
1358
1641
|
#
|
|
1359
|
-
# @!attribute [rw]
|
|
1360
|
-
# The
|
|
1642
|
+
# @!attribute [rw] creation_time
|
|
1643
|
+
# The time the ephemeris was uploaded in UTC.
|
|
1644
|
+
# @return [Time]
|
|
1645
|
+
#
|
|
1646
|
+
# @!attribute [rw] name
|
|
1647
|
+
# A name that you can use to identify the ephemeris.
|
|
1361
1648
|
# @return [String]
|
|
1362
1649
|
#
|
|
1650
|
+
# @!attribute [rw] source_s3_object
|
|
1651
|
+
# Source Amazon S3 object used for the ephemeris.
|
|
1652
|
+
# @return [Types::S3Object]
|
|
1653
|
+
#
|
|
1363
1654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisItem AWS API Documentation
|
|
1364
1655
|
#
|
|
1365
1656
|
class EphemerisItem < Struct.new(
|
|
1366
|
-
:creation_time,
|
|
1367
|
-
:enabled,
|
|
1368
1657
|
:ephemeris_id,
|
|
1369
|
-
:
|
|
1658
|
+
:ephemeris_type,
|
|
1659
|
+
:status,
|
|
1370
1660
|
:priority,
|
|
1371
|
-
:
|
|
1372
|
-
:
|
|
1661
|
+
:enabled,
|
|
1662
|
+
:creation_time,
|
|
1663
|
+
:name,
|
|
1664
|
+
:source_s3_object)
|
|
1373
1665
|
SENSITIVE = []
|
|
1374
1666
|
include Aws::Structure
|
|
1375
1667
|
end
|
|
1376
1668
|
|
|
1377
1669
|
# Metadata describing a particular ephemeris.
|
|
1378
1670
|
#
|
|
1671
|
+
# @!attribute [rw] source
|
|
1672
|
+
# The `EphemerisSource` that generated a given ephemeris.
|
|
1673
|
+
# @return [String]
|
|
1674
|
+
#
|
|
1379
1675
|
# @!attribute [rw] ephemeris_id
|
|
1380
1676
|
# UUID of a customer-provided ephemeris.
|
|
1381
1677
|
#
|
|
@@ -1397,72 +1693,90 @@ module Aws::GroundStation
|
|
|
1397
1693
|
# a name associated.
|
|
1398
1694
|
# @return [String]
|
|
1399
1695
|
#
|
|
1400
|
-
# @!attribute [rw] source
|
|
1401
|
-
# The `EphemerisSource` that generated a given ephemeris.
|
|
1402
|
-
# @return [String]
|
|
1403
|
-
#
|
|
1404
1696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisMetaData AWS API Documentation
|
|
1405
1697
|
#
|
|
1406
1698
|
class EphemerisMetaData < Struct.new(
|
|
1699
|
+
:source,
|
|
1407
1700
|
:ephemeris_id,
|
|
1408
1701
|
:epoch,
|
|
1409
|
-
:name
|
|
1410
|
-
|
|
1702
|
+
:name)
|
|
1703
|
+
SENSITIVE = []
|
|
1704
|
+
include Aws::Structure
|
|
1705
|
+
end
|
|
1706
|
+
|
|
1707
|
+
# Ephemeris data for a contact.
|
|
1708
|
+
#
|
|
1709
|
+
# @!attribute [rw] ephemeris_id
|
|
1710
|
+
# Unique identifier of the ephemeris. Appears only for custom
|
|
1711
|
+
# ephemerides.
|
|
1712
|
+
# @return [String]
|
|
1713
|
+
#
|
|
1714
|
+
# @!attribute [rw] ephemeris_type
|
|
1715
|
+
# Type of ephemeris.
|
|
1716
|
+
# @return [String]
|
|
1717
|
+
#
|
|
1718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisResponseData AWS API Documentation
|
|
1719
|
+
#
|
|
1720
|
+
class EphemerisResponseData < Struct.new(
|
|
1721
|
+
:ephemeris_id,
|
|
1722
|
+
:ephemeris_type)
|
|
1411
1723
|
SENSITIVE = []
|
|
1412
1724
|
include Aws::Structure
|
|
1413
1725
|
end
|
|
1414
1726
|
|
|
1415
1727
|
# @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
1728
|
#
|
|
1729
|
+
# @!attribute [rw] tle
|
|
1730
|
+
# Description of ephemeris.
|
|
1731
|
+
# @return [Types::EphemerisDescription]
|
|
1732
|
+
#
|
|
1417
1733
|
# @!attribute [rw] oem
|
|
1418
1734
|
# Description of ephemeris.
|
|
1419
1735
|
# @return [Types::EphemerisDescription]
|
|
1420
1736
|
#
|
|
1421
|
-
# @!attribute [rw]
|
|
1737
|
+
# @!attribute [rw] az_el
|
|
1422
1738
|
# Description of ephemeris.
|
|
1423
1739
|
# @return [Types::EphemerisDescription]
|
|
1424
1740
|
#
|
|
1425
1741
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisTypeDescription AWS API Documentation
|
|
1426
1742
|
#
|
|
1427
1743
|
class EphemerisTypeDescription < Struct.new(
|
|
1428
|
-
:oem,
|
|
1429
1744
|
:tle,
|
|
1745
|
+
:oem,
|
|
1746
|
+
:az_el,
|
|
1430
1747
|
:unknown)
|
|
1431
1748
|
SENSITIVE = []
|
|
1432
1749
|
include Aws::Structure
|
|
1433
1750
|
include Aws::Structure::Union
|
|
1434
1751
|
|
|
1435
|
-
class Oem < EphemerisTypeDescription; end
|
|
1436
1752
|
class Tle < EphemerisTypeDescription; end
|
|
1753
|
+
class Oem < EphemerisTypeDescription; end
|
|
1754
|
+
class AzEl < EphemerisTypeDescription; end
|
|
1437
1755
|
class Unknown < EphemerisTypeDescription; end
|
|
1438
1756
|
end
|
|
1439
1757
|
|
|
1440
1758
|
# Object that describes the frequency.
|
|
1441
1759
|
#
|
|
1442
|
-
# @!attribute [rw] units
|
|
1443
|
-
# Frequency units.
|
|
1444
|
-
# @return [String]
|
|
1445
|
-
#
|
|
1446
1760
|
# @!attribute [rw] value
|
|
1447
1761
|
# Frequency value. Valid values are between 2200 to 2300 MHz and 7750
|
|
1448
1762
|
# to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.
|
|
1449
1763
|
# @return [Float]
|
|
1450
1764
|
#
|
|
1765
|
+
# @!attribute [rw] units
|
|
1766
|
+
# Frequency units.
|
|
1767
|
+
# @return [String]
|
|
1768
|
+
#
|
|
1451
1769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Frequency AWS API Documentation
|
|
1452
1770
|
#
|
|
1453
1771
|
class Frequency < Struct.new(
|
|
1454
|
-
:
|
|
1455
|
-
:
|
|
1772
|
+
:value,
|
|
1773
|
+
:units)
|
|
1456
1774
|
SENSITIVE = []
|
|
1457
1775
|
include Aws::Structure
|
|
1458
1776
|
end
|
|
1459
1777
|
|
|
1460
1778
|
# Object that describes the frequency bandwidth.
|
|
1461
1779
|
#
|
|
1462
|
-
# @!attribute [rw] units
|
|
1463
|
-
# Frequency bandwidth units.
|
|
1464
|
-
# @return [String]
|
|
1465
|
-
#
|
|
1466
1780
|
# @!attribute [rw] value
|
|
1467
1781
|
# Frequency bandwidth value. AWS Ground Station currently has the
|
|
1468
1782
|
# following bandwidth limitations:
|
|
@@ -1477,11 +1791,15 @@ module Aws::GroundStation
|
|
|
1477
1791
|
# MHz.
|
|
1478
1792
|
# @return [Float]
|
|
1479
1793
|
#
|
|
1794
|
+
# @!attribute [rw] units
|
|
1795
|
+
# Frequency bandwidth units.
|
|
1796
|
+
# @return [String]
|
|
1797
|
+
#
|
|
1480
1798
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/FrequencyBandwidth AWS API Documentation
|
|
1481
1799
|
#
|
|
1482
1800
|
class FrequencyBandwidth < Struct.new(
|
|
1483
|
-
:
|
|
1484
|
-
:
|
|
1801
|
+
:value,
|
|
1802
|
+
:units)
|
|
1485
1803
|
SENSITIVE = []
|
|
1486
1804
|
include Aws::Structure
|
|
1487
1805
|
end
|
|
@@ -1532,25 +1850,25 @@ module Aws::GroundStation
|
|
|
1532
1850
|
include Aws::Structure
|
|
1533
1851
|
end
|
|
1534
1852
|
|
|
1853
|
+
# @!attribute [rw] config_id
|
|
1854
|
+
# UUID of a `Config`.
|
|
1855
|
+
# @return [String]
|
|
1856
|
+
#
|
|
1535
1857
|
# @!attribute [rw] config_arn
|
|
1536
1858
|
# ARN of a `Config`
|
|
1537
1859
|
# @return [String]
|
|
1538
1860
|
#
|
|
1539
|
-
# @!attribute [rw]
|
|
1540
|
-
#
|
|
1541
|
-
# @return [Types::ConfigTypeData]
|
|
1542
|
-
#
|
|
1543
|
-
# @!attribute [rw] config_id
|
|
1544
|
-
# UUID of a `Config`.
|
|
1861
|
+
# @!attribute [rw] name
|
|
1862
|
+
# Name of a `Config`.
|
|
1545
1863
|
# @return [String]
|
|
1546
1864
|
#
|
|
1547
1865
|
# @!attribute [rw] config_type
|
|
1548
1866
|
# Type of a `Config`.
|
|
1549
1867
|
# @return [String]
|
|
1550
1868
|
#
|
|
1551
|
-
# @!attribute [rw]
|
|
1552
|
-
#
|
|
1553
|
-
# @return [
|
|
1869
|
+
# @!attribute [rw] config_data
|
|
1870
|
+
# Data elements in a `Config`.
|
|
1871
|
+
# @return [Types::ConfigTypeData]
|
|
1554
1872
|
#
|
|
1555
1873
|
# @!attribute [rw] tags
|
|
1556
1874
|
# Tags assigned to a `Config`.
|
|
@@ -1559,11 +1877,11 @@ module Aws::GroundStation
|
|
|
1559
1877
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetConfigResponse AWS API Documentation
|
|
1560
1878
|
#
|
|
1561
1879
|
class GetConfigResponse < Struct.new(
|
|
1562
|
-
:config_arn,
|
|
1563
|
-
:config_data,
|
|
1564
1880
|
:config_id,
|
|
1565
|
-
:
|
|
1881
|
+
:config_arn,
|
|
1566
1882
|
:name,
|
|
1883
|
+
:config_type,
|
|
1884
|
+
:config_data,
|
|
1567
1885
|
:tags)
|
|
1568
1886
|
SENSITIVE = []
|
|
1569
1887
|
include Aws::Structure
|
|
@@ -1581,30 +1899,14 @@ module Aws::GroundStation
|
|
|
1581
1899
|
include Aws::Structure
|
|
1582
1900
|
end
|
|
1583
1901
|
|
|
1584
|
-
# @!attribute [rw]
|
|
1585
|
-
#
|
|
1586
|
-
#
|
|
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]
|
|
1902
|
+
# @!attribute [rw] dataflow_endpoint_group_id
|
|
1903
|
+
# UUID of a dataflow endpoint group.
|
|
1904
|
+
# @return [String]
|
|
1599
1905
|
#
|
|
1600
1906
|
# @!attribute [rw] dataflow_endpoint_group_arn
|
|
1601
1907
|
# ARN of a dataflow endpoint group.
|
|
1602
1908
|
# @return [String]
|
|
1603
1909
|
#
|
|
1604
|
-
# @!attribute [rw] dataflow_endpoint_group_id
|
|
1605
|
-
# UUID of a dataflow endpoint group.
|
|
1606
|
-
# @return [String]
|
|
1607
|
-
#
|
|
1608
1910
|
# @!attribute [rw] endpoints_details
|
|
1609
1911
|
# Details of a dataflow endpoint.
|
|
1610
1912
|
# @return [Array<Types::EndpointDetails>]
|
|
@@ -1613,15 +1915,31 @@ module Aws::GroundStation
|
|
|
1613
1915
|
# Tags assigned to a dataflow endpoint group.
|
|
1614
1916
|
# @return [Hash<String,String>]
|
|
1615
1917
|
#
|
|
1918
|
+
# @!attribute [rw] contact_pre_pass_duration_seconds
|
|
1919
|
+
# Amount of time, in seconds, before a contact starts that the Ground
|
|
1920
|
+
# Station Dataflow Endpoint Group will be in a `PREPASS` state. A
|
|
1921
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
|
1922
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
|
1923
|
+
# `PREPASS` state.
|
|
1924
|
+
# @return [Integer]
|
|
1925
|
+
#
|
|
1926
|
+
# @!attribute [rw] contact_post_pass_duration_seconds
|
|
1927
|
+
# Amount of time, in seconds, after a contact ends that the Ground
|
|
1928
|
+
# Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
|
|
1929
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
|
1930
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
|
1931
|
+
# `POSTPASS` state.
|
|
1932
|
+
# @return [Integer]
|
|
1933
|
+
#
|
|
1616
1934
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetDataflowEndpointGroupResponse AWS API Documentation
|
|
1617
1935
|
#
|
|
1618
1936
|
class GetDataflowEndpointGroupResponse < Struct.new(
|
|
1619
|
-
:contact_post_pass_duration_seconds,
|
|
1620
|
-
:contact_pre_pass_duration_seconds,
|
|
1621
|
-
:dataflow_endpoint_group_arn,
|
|
1622
1937
|
:dataflow_endpoint_group_id,
|
|
1938
|
+
:dataflow_endpoint_group_arn,
|
|
1623
1939
|
:endpoints_details,
|
|
1624
|
-
:tags
|
|
1940
|
+
:tags,
|
|
1941
|
+
:contact_pre_pass_duration_seconds,
|
|
1942
|
+
:contact_post_pass_duration_seconds)
|
|
1625
1943
|
SENSITIVE = []
|
|
1626
1944
|
include Aws::Structure
|
|
1627
1945
|
end
|
|
@@ -1643,11 +1961,6 @@ module Aws::GroundStation
|
|
|
1643
1961
|
include Aws::Structure
|
|
1644
1962
|
end
|
|
1645
1963
|
|
|
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
1964
|
# @!attribute [rw] is_reserved_minutes_customer
|
|
1652
1965
|
# Returns whether or not an account has signed up for the reserved
|
|
1653
1966
|
# minutes pricing plan, specific to the month being requested.
|
|
@@ -1658,24 +1971,29 @@ module Aws::GroundStation
|
|
|
1658
1971
|
# being requested.
|
|
1659
1972
|
# @return [Integer]
|
|
1660
1973
|
#
|
|
1974
|
+
# @!attribute [rw] upcoming_minutes_scheduled
|
|
1975
|
+
# Upcoming minutes scheduled for an account, specific to the month
|
|
1976
|
+
# being requested.
|
|
1977
|
+
# @return [Integer]
|
|
1978
|
+
#
|
|
1661
1979
|
# @!attribute [rw] total_scheduled_minutes
|
|
1662
1980
|
# Total scheduled minutes for an account, specific to the month being
|
|
1663
1981
|
# requested.
|
|
1664
1982
|
# @return [Integer]
|
|
1665
1983
|
#
|
|
1666
|
-
# @!attribute [rw]
|
|
1667
|
-
#
|
|
1668
|
-
# being requested.
|
|
1984
|
+
# @!attribute [rw] estimated_minutes_remaining
|
|
1985
|
+
# Estimated number of minutes remaining for an account, specific to
|
|
1986
|
+
# the month being requested.
|
|
1669
1987
|
# @return [Integer]
|
|
1670
1988
|
#
|
|
1671
1989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetMinuteUsageResponse AWS API Documentation
|
|
1672
1990
|
#
|
|
1673
1991
|
class GetMinuteUsageResponse < Struct.new(
|
|
1674
|
-
:estimated_minutes_remaining,
|
|
1675
1992
|
:is_reserved_minutes_customer,
|
|
1676
1993
|
:total_reserved_minute_allocation,
|
|
1994
|
+
:upcoming_minutes_scheduled,
|
|
1677
1995
|
:total_scheduled_minutes,
|
|
1678
|
-
:
|
|
1996
|
+
:estimated_minutes_remaining)
|
|
1679
1997
|
SENSITIVE = []
|
|
1680
1998
|
include Aws::Structure
|
|
1681
1999
|
end
|
|
@@ -1692,20 +2010,31 @@ module Aws::GroundStation
|
|
|
1692
2010
|
include Aws::Structure
|
|
1693
2011
|
end
|
|
1694
2012
|
|
|
1695
|
-
# @!attribute [rw]
|
|
1696
|
-
#
|
|
1697
|
-
#
|
|
1698
|
-
#
|
|
2013
|
+
# @!attribute [rw] mission_profile_id
|
|
2014
|
+
# UUID of a mission profile.
|
|
2015
|
+
# @return [String]
|
|
2016
|
+
#
|
|
2017
|
+
# @!attribute [rw] mission_profile_arn
|
|
2018
|
+
# ARN of a mission profile.
|
|
2019
|
+
# @return [String]
|
|
2020
|
+
#
|
|
2021
|
+
# @!attribute [rw] name
|
|
2022
|
+
# Name of a mission profile.
|
|
2023
|
+
# @return [String]
|
|
2024
|
+
#
|
|
2025
|
+
# @!attribute [rw] region
|
|
2026
|
+
# Region of a mission profile.
|
|
2027
|
+
# @return [String]
|
|
1699
2028
|
#
|
|
1700
2029
|
# @!attribute [rw] contact_pre_pass_duration_seconds
|
|
1701
2030
|
# Amount of time prior to contact start you’d like to receive a
|
|
1702
2031
|
# CloudWatch event indicating an upcoming pass.
|
|
1703
2032
|
# @return [Integer]
|
|
1704
2033
|
#
|
|
1705
|
-
# @!attribute [rw]
|
|
1706
|
-
#
|
|
1707
|
-
#
|
|
1708
|
-
# @return [
|
|
2034
|
+
# @!attribute [rw] contact_post_pass_duration_seconds
|
|
2035
|
+
# Amount of time after a contact ends that you’d like to receive a
|
|
2036
|
+
# CloudWatch event indicating the pass has finished.
|
|
2037
|
+
# @return [Integer]
|
|
1709
2038
|
#
|
|
1710
2039
|
# @!attribute [rw] minimum_viable_contact_duration_seconds
|
|
1711
2040
|
# Smallest amount of time in seconds that you’d like to see for an
|
|
@@ -1713,21 +2042,18 @@ module Aws::GroundStation
|
|
|
1713
2042
|
# contacts shorter than this duration.
|
|
1714
2043
|
# @return [Integer]
|
|
1715
2044
|
#
|
|
1716
|
-
# @!attribute [rw]
|
|
1717
|
-
#
|
|
1718
|
-
#
|
|
1719
|
-
#
|
|
1720
|
-
# @!attribute [rw] mission_profile_id
|
|
1721
|
-
# UUID of a mission profile.
|
|
1722
|
-
# @return [String]
|
|
2045
|
+
# @!attribute [rw] dataflow_edges
|
|
2046
|
+
# A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
|
|
2047
|
+
# `Config` and a *to* `Config`.
|
|
2048
|
+
# @return [Array<Array<String>>]
|
|
1723
2049
|
#
|
|
1724
|
-
# @!attribute [rw]
|
|
1725
|
-
#
|
|
2050
|
+
# @!attribute [rw] tracking_config_arn
|
|
2051
|
+
# ARN of a tracking `Config`.
|
|
1726
2052
|
# @return [String]
|
|
1727
2053
|
#
|
|
1728
|
-
# @!attribute [rw]
|
|
1729
|
-
#
|
|
1730
|
-
# @return [String]
|
|
2054
|
+
# @!attribute [rw] tags
|
|
2055
|
+
# Tags assigned to a mission profile.
|
|
2056
|
+
# @return [Hash<String,String>]
|
|
1731
2057
|
#
|
|
1732
2058
|
# @!attribute [rw] streams_kms_key
|
|
1733
2059
|
# KMS key to use for encrypting streams.
|
|
@@ -1737,29 +2063,21 @@ module Aws::GroundStation
|
|
|
1737
2063
|
# Role to use for encrypting streams with KMS key.
|
|
1738
2064
|
# @return [String]
|
|
1739
2065
|
#
|
|
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
2066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetMissionProfileResponse AWS API Documentation
|
|
1749
2067
|
#
|
|
1750
2068
|
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
2069
|
:mission_profile_id,
|
|
2070
|
+
:mission_profile_arn,
|
|
1757
2071
|
:name,
|
|
1758
2072
|
:region,
|
|
1759
|
-
:
|
|
1760
|
-
:
|
|
2073
|
+
:contact_pre_pass_duration_seconds,
|
|
2074
|
+
:contact_post_pass_duration_seconds,
|
|
2075
|
+
:minimum_viable_contact_duration_seconds,
|
|
2076
|
+
:dataflow_edges,
|
|
2077
|
+
:tracking_config_arn,
|
|
1761
2078
|
:tags,
|
|
1762
|
-
:
|
|
2079
|
+
:streams_kms_key,
|
|
2080
|
+
:streams_kms_role)
|
|
1763
2081
|
SENSITIVE = []
|
|
1764
2082
|
include Aws::Structure
|
|
1765
2083
|
end
|
|
@@ -1776,35 +2094,35 @@ module Aws::GroundStation
|
|
|
1776
2094
|
include Aws::Structure
|
|
1777
2095
|
end
|
|
1778
2096
|
|
|
1779
|
-
# @!attribute [rw]
|
|
1780
|
-
#
|
|
1781
|
-
#
|
|
1782
|
-
#
|
|
1783
|
-
#
|
|
1784
|
-
#
|
|
1785
|
-
#
|
|
1786
|
-
# @return [Array<String>]
|
|
2097
|
+
# @!attribute [rw] satellite_id
|
|
2098
|
+
# UUID of a satellite.
|
|
2099
|
+
# @return [String]
|
|
2100
|
+
#
|
|
2101
|
+
# @!attribute [rw] satellite_arn
|
|
2102
|
+
# ARN of a satellite.
|
|
2103
|
+
# @return [String]
|
|
1787
2104
|
#
|
|
1788
2105
|
# @!attribute [rw] norad_satellite_id
|
|
1789
2106
|
# NORAD satellite ID number.
|
|
1790
2107
|
# @return [Integer]
|
|
1791
2108
|
#
|
|
1792
|
-
# @!attribute [rw]
|
|
1793
|
-
#
|
|
1794
|
-
# @return [String]
|
|
2109
|
+
# @!attribute [rw] ground_stations
|
|
2110
|
+
# A list of ground stations to which the satellite is on-boarded.
|
|
2111
|
+
# @return [Array<String>]
|
|
1795
2112
|
#
|
|
1796
|
-
# @!attribute [rw]
|
|
1797
|
-
#
|
|
1798
|
-
#
|
|
2113
|
+
# @!attribute [rw] current_ephemeris
|
|
2114
|
+
# The current ephemeris being used to compute the trajectory of the
|
|
2115
|
+
# satellite.
|
|
2116
|
+
# @return [Types::EphemerisMetaData]
|
|
1799
2117
|
#
|
|
1800
2118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetSatelliteResponse AWS API Documentation
|
|
1801
2119
|
#
|
|
1802
2120
|
class GetSatelliteResponse < Struct.new(
|
|
1803
|
-
:
|
|
1804
|
-
:ground_stations,
|
|
1805
|
-
:norad_satellite_id,
|
|
2121
|
+
:satellite_id,
|
|
1806
2122
|
:satellite_arn,
|
|
1807
|
-
:
|
|
2123
|
+
:norad_satellite_id,
|
|
2124
|
+
:ground_stations,
|
|
2125
|
+
:current_ephemeris)
|
|
1808
2126
|
SENSITIVE = []
|
|
1809
2127
|
include Aws::Structure
|
|
1810
2128
|
end
|
|
@@ -1833,21 +2151,44 @@ module Aws::GroundStation
|
|
|
1833
2151
|
include Aws::Structure
|
|
1834
2152
|
end
|
|
1835
2153
|
|
|
1836
|
-
#
|
|
2154
|
+
# Time range specified using ISO 8601 format timestamps.
|
|
1837
2155
|
#
|
|
1838
|
-
# @!attribute [rw]
|
|
1839
|
-
#
|
|
1840
|
-
#
|
|
2156
|
+
# @!attribute [rw] start_time
|
|
2157
|
+
# Start time in ISO 8601 format in Coordinated Universal Time (UTC).
|
|
2158
|
+
#
|
|
2159
|
+
# Example: `2026-11-15T10:28:48.000Z`
|
|
2160
|
+
# @return [Time]
|
|
2161
|
+
#
|
|
2162
|
+
# @!attribute [rw] end_time
|
|
2163
|
+
# End time in ISO 8601 format in Coordinated Universal Time (UTC).
|
|
2164
|
+
#
|
|
2165
|
+
# Example: `2024-01-15T12:00:00.000Z`
|
|
2166
|
+
# @return [Time]
|
|
2167
|
+
#
|
|
2168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ISO8601TimeRange AWS API Documentation
|
|
2169
|
+
#
|
|
2170
|
+
class ISO8601TimeRange < Struct.new(
|
|
2171
|
+
:start_time,
|
|
2172
|
+
:end_time)
|
|
2173
|
+
SENSITIVE = []
|
|
2174
|
+
include Aws::Structure
|
|
2175
|
+
end
|
|
2176
|
+
|
|
2177
|
+
# An integer range that has a minimum and maximum value.
|
|
1841
2178
|
#
|
|
1842
2179
|
# @!attribute [rw] minimum
|
|
1843
2180
|
# A minimum value.
|
|
1844
2181
|
# @return [Integer]
|
|
1845
2182
|
#
|
|
2183
|
+
# @!attribute [rw] maximum
|
|
2184
|
+
# A maximum value.
|
|
2185
|
+
# @return [Integer]
|
|
2186
|
+
#
|
|
1846
2187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/IntegerRange AWS API Documentation
|
|
1847
2188
|
#
|
|
1848
2189
|
class IntegerRange < Struct.new(
|
|
1849
|
-
:
|
|
1850
|
-
:
|
|
2190
|
+
:minimum,
|
|
2191
|
+
:maximum)
|
|
1851
2192
|
SENSITIVE = []
|
|
1852
2193
|
include Aws::Structure
|
|
1853
2194
|
end
|
|
@@ -1875,6 +2216,10 @@ module Aws::GroundStation
|
|
|
1875
2216
|
#
|
|
1876
2217
|
# @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
2218
|
#
|
|
2219
|
+
# @!attribute [rw] kms_key_arn
|
|
2220
|
+
# KMS Key Arn.
|
|
2221
|
+
# @return [String]
|
|
2222
|
+
#
|
|
1878
2223
|
# @!attribute [rw] kms_alias_arn
|
|
1879
2224
|
# KMS Alias Arn.
|
|
1880
2225
|
# @return [String]
|
|
@@ -1883,24 +2228,20 @@ module Aws::GroundStation
|
|
|
1883
2228
|
# KMS Alias Name.
|
|
1884
2229
|
# @return [String]
|
|
1885
2230
|
#
|
|
1886
|
-
# @!attribute [rw] kms_key_arn
|
|
1887
|
-
# KMS Key Arn.
|
|
1888
|
-
# @return [String]
|
|
1889
|
-
#
|
|
1890
2231
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/KmsKey AWS API Documentation
|
|
1891
2232
|
#
|
|
1892
2233
|
class KmsKey < Struct.new(
|
|
2234
|
+
:kms_key_arn,
|
|
1893
2235
|
:kms_alias_arn,
|
|
1894
2236
|
:kms_alias_name,
|
|
1895
|
-
:kms_key_arn,
|
|
1896
2237
|
:unknown)
|
|
1897
2238
|
SENSITIVE = []
|
|
1898
2239
|
include Aws::Structure
|
|
1899
2240
|
include Aws::Structure::Union
|
|
1900
2241
|
|
|
2242
|
+
class KmsKeyArn < KmsKey; end
|
|
1901
2243
|
class KmsAliasArn < KmsKey; end
|
|
1902
2244
|
class KmsAliasName < KmsKey; end
|
|
1903
|
-
class KmsKeyArn < KmsKey; end
|
|
1904
2245
|
class Unknown < KmsKey; end
|
|
1905
2246
|
end
|
|
1906
2247
|
|
|
@@ -1922,86 +2263,91 @@ module Aws::GroundStation
|
|
|
1922
2263
|
include Aws::Structure
|
|
1923
2264
|
end
|
|
1924
2265
|
|
|
1925
|
-
# @!attribute [rw] config_list
|
|
1926
|
-
# List of `Config` items.
|
|
1927
|
-
# @return [Array<Types::ConfigListItem>]
|
|
1928
|
-
#
|
|
1929
2266
|
# @!attribute [rw] next_token
|
|
1930
2267
|
# Next token returned in the response of a previous `ListConfigs`
|
|
1931
2268
|
# call. Used to get the next page of results.
|
|
1932
2269
|
# @return [String]
|
|
1933
2270
|
#
|
|
2271
|
+
# @!attribute [rw] config_list
|
|
2272
|
+
# List of `Config` items.
|
|
2273
|
+
# @return [Array<Types::ConfigListItem>]
|
|
2274
|
+
#
|
|
1934
2275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListConfigsResponse AWS API Documentation
|
|
1935
2276
|
#
|
|
1936
2277
|
class ListConfigsResponse < Struct.new(
|
|
1937
|
-
:
|
|
1938
|
-
:
|
|
2278
|
+
:next_token,
|
|
2279
|
+
:config_list)
|
|
1939
2280
|
SENSITIVE = []
|
|
1940
2281
|
include Aws::Structure
|
|
1941
2282
|
end
|
|
1942
2283
|
|
|
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
2284
|
# @!attribute [rw] max_results
|
|
1952
2285
|
# Maximum number of contacts returned.
|
|
1953
2286
|
# @return [Integer]
|
|
1954
2287
|
#
|
|
1955
|
-
# @!attribute [rw] mission_profile_arn
|
|
1956
|
-
# ARN of a mission profile.
|
|
1957
|
-
# @return [String]
|
|
1958
|
-
#
|
|
1959
2288
|
# @!attribute [rw] next_token
|
|
1960
2289
|
# Next token returned in the request of a previous `ListContacts`
|
|
1961
2290
|
# call. Used to get the next page of results.
|
|
1962
2291
|
# @return [String]
|
|
1963
2292
|
#
|
|
1964
|
-
# @!attribute [rw]
|
|
1965
|
-
#
|
|
1966
|
-
# @return [String]
|
|
2293
|
+
# @!attribute [rw] status_list
|
|
2294
|
+
# Status of a contact reservation.
|
|
2295
|
+
# @return [Array<String>]
|
|
1967
2296
|
#
|
|
1968
2297
|
# @!attribute [rw] start_time
|
|
1969
2298
|
# Start time of a contact in UTC.
|
|
1970
2299
|
# @return [Time]
|
|
1971
2300
|
#
|
|
1972
|
-
# @!attribute [rw]
|
|
1973
|
-
#
|
|
1974
|
-
# @return [
|
|
2301
|
+
# @!attribute [rw] end_time
|
|
2302
|
+
# End time of a contact in UTC.
|
|
2303
|
+
# @return [Time]
|
|
2304
|
+
#
|
|
2305
|
+
# @!attribute [rw] ground_station
|
|
2306
|
+
# Name of a ground station.
|
|
2307
|
+
# @return [String]
|
|
2308
|
+
#
|
|
2309
|
+
# @!attribute [rw] satellite_arn
|
|
2310
|
+
# ARN of a satellite.
|
|
2311
|
+
# @return [String]
|
|
2312
|
+
#
|
|
2313
|
+
# @!attribute [rw] mission_profile_arn
|
|
2314
|
+
# ARN of a mission profile.
|
|
2315
|
+
# @return [String]
|
|
2316
|
+
#
|
|
2317
|
+
# @!attribute [rw] ephemeris
|
|
2318
|
+
# Filter for selecting contacts that use a specific ephemeris".
|
|
2319
|
+
# @return [Types::EphemerisFilter]
|
|
1975
2320
|
#
|
|
1976
2321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListContactsRequest AWS API Documentation
|
|
1977
2322
|
#
|
|
1978
2323
|
class ListContactsRequest < Struct.new(
|
|
1979
|
-
:end_time,
|
|
1980
|
-
:ground_station,
|
|
1981
2324
|
:max_results,
|
|
1982
|
-
:mission_profile_arn,
|
|
1983
2325
|
:next_token,
|
|
1984
|
-
:
|
|
2326
|
+
:status_list,
|
|
1985
2327
|
:start_time,
|
|
1986
|
-
:
|
|
2328
|
+
:end_time,
|
|
2329
|
+
:ground_station,
|
|
2330
|
+
:satellite_arn,
|
|
2331
|
+
:mission_profile_arn,
|
|
2332
|
+
:ephemeris)
|
|
1987
2333
|
SENSITIVE = []
|
|
1988
2334
|
include Aws::Structure
|
|
1989
2335
|
end
|
|
1990
2336
|
|
|
1991
|
-
# @!attribute [rw] contact_list
|
|
1992
|
-
# List of contacts.
|
|
1993
|
-
# @return [Array<Types::ContactData>]
|
|
1994
|
-
#
|
|
1995
2337
|
# @!attribute [rw] next_token
|
|
1996
2338
|
# Next token returned in the response of a previous `ListContacts`
|
|
1997
2339
|
# call. Used to get the next page of results.
|
|
1998
2340
|
# @return [String]
|
|
1999
2341
|
#
|
|
2342
|
+
# @!attribute [rw] contact_list
|
|
2343
|
+
# List of contacts.
|
|
2344
|
+
# @return [Array<Types::ContactData>]
|
|
2345
|
+
#
|
|
2000
2346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListContactsResponse AWS API Documentation
|
|
2001
2347
|
#
|
|
2002
2348
|
class ListContactsResponse < Struct.new(
|
|
2003
|
-
:
|
|
2004
|
-
:
|
|
2349
|
+
:next_token,
|
|
2350
|
+
:contact_list)
|
|
2005
2351
|
SENSITIVE = []
|
|
2006
2352
|
include Aws::Structure
|
|
2007
2353
|
end
|
|
@@ -2025,83 +2371,91 @@ module Aws::GroundStation
|
|
|
2025
2371
|
include Aws::Structure
|
|
2026
2372
|
end
|
|
2027
2373
|
|
|
2028
|
-
# @!attribute [rw] dataflow_endpoint_group_list
|
|
2029
|
-
# A list of dataflow endpoint groups.
|
|
2030
|
-
# @return [Array<Types::DataflowEndpointListItem>]
|
|
2031
|
-
#
|
|
2032
2374
|
# @!attribute [rw] next_token
|
|
2033
2375
|
# Next token returned in the response of a previous
|
|
2034
2376
|
# `ListDataflowEndpointGroups` call. Used to get the next page of
|
|
2035
2377
|
# results.
|
|
2036
2378
|
# @return [String]
|
|
2037
2379
|
#
|
|
2380
|
+
# @!attribute [rw] dataflow_endpoint_group_list
|
|
2381
|
+
# A list of dataflow endpoint groups.
|
|
2382
|
+
# @return [Array<Types::DataflowEndpointListItem>]
|
|
2383
|
+
#
|
|
2038
2384
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListDataflowEndpointGroupsResponse AWS API Documentation
|
|
2039
2385
|
#
|
|
2040
2386
|
class ListDataflowEndpointGroupsResponse < Struct.new(
|
|
2041
|
-
:
|
|
2042
|
-
:
|
|
2387
|
+
:next_token,
|
|
2388
|
+
:dataflow_endpoint_group_list)
|
|
2043
2389
|
SENSITIVE = []
|
|
2044
2390
|
include Aws::Structure
|
|
2045
2391
|
end
|
|
2046
2392
|
|
|
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
2393
|
# @!attribute [rw] satellite_id
|
|
2062
2394
|
# The AWS Ground Station satellite ID to list ephemeris for.
|
|
2063
2395
|
# @return [String]
|
|
2064
2396
|
#
|
|
2397
|
+
# @!attribute [rw] ephemeris_type
|
|
2398
|
+
# Filter ephemerides by type. If not specified, all ephemeris types
|
|
2399
|
+
# will be returned.
|
|
2400
|
+
# @return [String]
|
|
2401
|
+
#
|
|
2065
2402
|
# @!attribute [rw] start_time
|
|
2066
|
-
# The start time
|
|
2067
|
-
#
|
|
2068
|
-
#
|
|
2403
|
+
# The start time for the list operation in UTC. Returns ephemerides
|
|
2404
|
+
# with expiration times within your specified time range.
|
|
2405
|
+
# @return [Time]
|
|
2406
|
+
#
|
|
2407
|
+
# @!attribute [rw] end_time
|
|
2408
|
+
# The end time for the list operation in UTC. Returns ephemerides with
|
|
2409
|
+
# expiration times within your specified time range.
|
|
2069
2410
|
# @return [Time]
|
|
2070
2411
|
#
|
|
2071
2412
|
# @!attribute [rw] status_list
|
|
2072
2413
|
# The list of ephemeris status to return.
|
|
2073
2414
|
# @return [Array<String>]
|
|
2074
2415
|
#
|
|
2416
|
+
# @!attribute [rw] max_results
|
|
2417
|
+
# Maximum number of ephemerides to return.
|
|
2418
|
+
# @return [Integer]
|
|
2419
|
+
#
|
|
2420
|
+
# @!attribute [rw] next_token
|
|
2421
|
+
# Pagination token.
|
|
2422
|
+
# @return [String]
|
|
2423
|
+
#
|
|
2075
2424
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListEphemeridesRequest AWS API Documentation
|
|
2076
2425
|
#
|
|
2077
2426
|
class ListEphemeridesRequest < Struct.new(
|
|
2078
|
-
:end_time,
|
|
2079
|
-
:max_results,
|
|
2080
|
-
:next_token,
|
|
2081
2427
|
:satellite_id,
|
|
2428
|
+
:ephemeris_type,
|
|
2082
2429
|
:start_time,
|
|
2083
|
-
:
|
|
2430
|
+
:end_time,
|
|
2431
|
+
:status_list,
|
|
2432
|
+
:max_results,
|
|
2433
|
+
:next_token)
|
|
2084
2434
|
SENSITIVE = []
|
|
2085
2435
|
include Aws::Structure
|
|
2086
2436
|
end
|
|
2087
2437
|
|
|
2088
|
-
# @!attribute [rw] ephemerides
|
|
2089
|
-
# List of ephemerides.
|
|
2090
|
-
# @return [Array<Types::EphemerisItem>]
|
|
2091
|
-
#
|
|
2092
2438
|
# @!attribute [rw] next_token
|
|
2093
2439
|
# Pagination token.
|
|
2094
2440
|
# @return [String]
|
|
2095
2441
|
#
|
|
2442
|
+
# @!attribute [rw] ephemerides
|
|
2443
|
+
# List of ephemerides.
|
|
2444
|
+
# @return [Array<Types::EphemerisItem>]
|
|
2445
|
+
#
|
|
2096
2446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListEphemeridesResponse AWS API Documentation
|
|
2097
2447
|
#
|
|
2098
2448
|
class ListEphemeridesResponse < Struct.new(
|
|
2099
|
-
:
|
|
2100
|
-
:
|
|
2449
|
+
:next_token,
|
|
2450
|
+
:ephemerides)
|
|
2101
2451
|
SENSITIVE = []
|
|
2102
2452
|
include Aws::Structure
|
|
2103
2453
|
end
|
|
2104
2454
|
|
|
2455
|
+
# @!attribute [rw] satellite_id
|
|
2456
|
+
# Satellite ID to retrieve on-boarded ground stations.
|
|
2457
|
+
# @return [String]
|
|
2458
|
+
#
|
|
2105
2459
|
# @!attribute [rw] max_results
|
|
2106
2460
|
# Maximum number of ground stations returned.
|
|
2107
2461
|
# @return [Integer]
|
|
@@ -2111,34 +2465,30 @@ module Aws::GroundStation
|
|
|
2111
2465
|
# page of ground stations.
|
|
2112
2466
|
# @return [String]
|
|
2113
2467
|
#
|
|
2114
|
-
# @!attribute [rw] satellite_id
|
|
2115
|
-
# Satellite ID to retrieve on-boarded ground stations.
|
|
2116
|
-
# @return [String]
|
|
2117
|
-
#
|
|
2118
2468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListGroundStationsRequest AWS API Documentation
|
|
2119
2469
|
#
|
|
2120
2470
|
class ListGroundStationsRequest < Struct.new(
|
|
2471
|
+
:satellite_id,
|
|
2121
2472
|
:max_results,
|
|
2122
|
-
:next_token
|
|
2123
|
-
:satellite_id)
|
|
2473
|
+
:next_token)
|
|
2124
2474
|
SENSITIVE = []
|
|
2125
2475
|
include Aws::Structure
|
|
2126
2476
|
end
|
|
2127
2477
|
|
|
2128
|
-
# @!attribute [rw] ground_station_list
|
|
2129
|
-
# List of ground stations.
|
|
2130
|
-
# @return [Array<Types::GroundStationData>]
|
|
2131
|
-
#
|
|
2132
2478
|
# @!attribute [rw] next_token
|
|
2133
2479
|
# Next token that can be supplied in the next call to get the next
|
|
2134
2480
|
# page of ground stations.
|
|
2135
2481
|
# @return [String]
|
|
2136
2482
|
#
|
|
2483
|
+
# @!attribute [rw] ground_station_list
|
|
2484
|
+
# List of ground stations.
|
|
2485
|
+
# @return [Array<Types::GroundStationData>]
|
|
2486
|
+
#
|
|
2137
2487
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListGroundStationsResponse AWS API Documentation
|
|
2138
2488
|
#
|
|
2139
2489
|
class ListGroundStationsResponse < Struct.new(
|
|
2140
|
-
:
|
|
2141
|
-
:
|
|
2490
|
+
:next_token,
|
|
2491
|
+
:ground_station_list)
|
|
2142
2492
|
SENSITIVE = []
|
|
2143
2493
|
include Aws::Structure
|
|
2144
2494
|
end
|
|
@@ -2161,20 +2511,20 @@ module Aws::GroundStation
|
|
|
2161
2511
|
include Aws::Structure
|
|
2162
2512
|
end
|
|
2163
2513
|
|
|
2164
|
-
# @!attribute [rw] mission_profile_list
|
|
2165
|
-
# List of mission profiles.
|
|
2166
|
-
# @return [Array<Types::MissionProfileListItem>]
|
|
2167
|
-
#
|
|
2168
2514
|
# @!attribute [rw] next_token
|
|
2169
2515
|
# Next token returned in the response of a previous
|
|
2170
2516
|
# `ListMissionProfiles` call. Used to get the next page of results.
|
|
2171
2517
|
# @return [String]
|
|
2172
2518
|
#
|
|
2519
|
+
# @!attribute [rw] mission_profile_list
|
|
2520
|
+
# List of mission profiles.
|
|
2521
|
+
# @return [Array<Types::MissionProfileListItem>]
|
|
2522
|
+
#
|
|
2173
2523
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListMissionProfilesResponse AWS API Documentation
|
|
2174
2524
|
#
|
|
2175
2525
|
class ListMissionProfilesResponse < Struct.new(
|
|
2176
|
-
:
|
|
2177
|
-
:
|
|
2526
|
+
:next_token,
|
|
2527
|
+
:mission_profile_list)
|
|
2178
2528
|
SENSITIVE = []
|
|
2179
2529
|
include Aws::Structure
|
|
2180
2530
|
end
|
|
@@ -2253,81 +2603,104 @@ module Aws::GroundStation
|
|
|
2253
2603
|
|
|
2254
2604
|
# Item in a list of mission profiles.
|
|
2255
2605
|
#
|
|
2256
|
-
# @!attribute [rw] mission_profile_arn
|
|
2257
|
-
# ARN of a mission profile.
|
|
2258
|
-
# @return [String]
|
|
2259
|
-
#
|
|
2260
2606
|
# @!attribute [rw] mission_profile_id
|
|
2261
2607
|
# UUID of a mission profile.
|
|
2262
2608
|
# @return [String]
|
|
2263
2609
|
#
|
|
2264
|
-
# @!attribute [rw]
|
|
2265
|
-
#
|
|
2610
|
+
# @!attribute [rw] mission_profile_arn
|
|
2611
|
+
# ARN of a mission profile.
|
|
2266
2612
|
# @return [String]
|
|
2267
2613
|
#
|
|
2268
2614
|
# @!attribute [rw] region
|
|
2269
2615
|
# Region of a mission profile.
|
|
2270
2616
|
# @return [String]
|
|
2271
2617
|
#
|
|
2618
|
+
# @!attribute [rw] name
|
|
2619
|
+
# Name of a mission profile.
|
|
2620
|
+
# @return [String]
|
|
2621
|
+
#
|
|
2272
2622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/MissionProfileListItem AWS API Documentation
|
|
2273
2623
|
#
|
|
2274
2624
|
class MissionProfileListItem < Struct.new(
|
|
2275
|
-
:mission_profile_arn,
|
|
2276
2625
|
:mission_profile_id,
|
|
2277
|
-
:
|
|
2278
|
-
:region
|
|
2626
|
+
:mission_profile_arn,
|
|
2627
|
+
:region,
|
|
2628
|
+
:name)
|
|
2279
2629
|
SENSITIVE = []
|
|
2280
2630
|
include Aws::Structure
|
|
2281
2631
|
end
|
|
2282
2632
|
|
|
2283
2633
|
# Ephemeris data in Orbit Ephemeris Message (OEM) format.
|
|
2284
2634
|
#
|
|
2285
|
-
# AWS Ground Station processes OEM
|
|
2286
|
-
#
|
|
2287
|
-
#
|
|
2288
|
-
#
|
|
2289
|
-
#
|
|
2635
|
+
# AWS Ground Station processes OEM ephemerides according to the [CCSDS
|
|
2636
|
+
# standard][1] with some extra restrictions. OEM files should be in KVN
|
|
2637
|
+
# format. For more detail about the OEM format that AWS Ground Station
|
|
2638
|
+
# supports, see [OEM ephemeris format][2] in the AWS Ground Station user
|
|
2639
|
+
# guide.
|
|
2290
2640
|
#
|
|
2291
2641
|
#
|
|
2292
2642
|
#
|
|
2293
|
-
# [1]: https://
|
|
2294
|
-
# [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-
|
|
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]
|
|
2643
|
+
# [1]: https://ccsds.org/wp-content/uploads/gravity_forms/5-448e85c647331d9cbaf66c096458bdd5/2025/01//502x0b3e1.pdf
|
|
2644
|
+
# [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format
|
|
2300
2645
|
#
|
|
2301
2646
|
# @!attribute [rw] s3_object
|
|
2302
|
-
#
|
|
2647
|
+
# The Amazon S3 object that contains the ephemeris data.
|
|
2303
2648
|
# @return [Types::S3Object]
|
|
2304
2649
|
#
|
|
2650
|
+
# @!attribute [rw] oem_data
|
|
2651
|
+
# OEM data that you provide directly instead of using an Amazon S3
|
|
2652
|
+
# object.
|
|
2653
|
+
# @return [String]
|
|
2654
|
+
#
|
|
2305
2655
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/OEMEphemeris AWS API Documentation
|
|
2306
2656
|
#
|
|
2307
2657
|
class OEMEphemeris < Struct.new(
|
|
2308
|
-
:
|
|
2309
|
-
:
|
|
2658
|
+
:s3_object,
|
|
2659
|
+
:oem_data)
|
|
2660
|
+
SENSITIVE = []
|
|
2661
|
+
include Aws::Structure
|
|
2662
|
+
end
|
|
2663
|
+
|
|
2664
|
+
# Program track settings for an antenna during a contact.
|
|
2665
|
+
#
|
|
2666
|
+
# @note ProgramTrackSettings is a union - when making an API calls you must set exactly one of the members.
|
|
2667
|
+
#
|
|
2668
|
+
# @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.
|
|
2669
|
+
#
|
|
2670
|
+
# @!attribute [rw] az_el
|
|
2671
|
+
# Program track settings for AzElEphemeris.
|
|
2672
|
+
# @return [Types::AzElProgramTrackSettings]
|
|
2673
|
+
#
|
|
2674
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ProgramTrackSettings AWS API Documentation
|
|
2675
|
+
#
|
|
2676
|
+
class ProgramTrackSettings < Struct.new(
|
|
2677
|
+
:az_el,
|
|
2678
|
+
:unknown)
|
|
2310
2679
|
SENSITIVE = []
|
|
2311
2680
|
include Aws::Structure
|
|
2681
|
+
include Aws::Structure::Union
|
|
2682
|
+
|
|
2683
|
+
class AzEl < ProgramTrackSettings; end
|
|
2684
|
+
class Unknown < ProgramTrackSettings; end
|
|
2312
2685
|
end
|
|
2313
2686
|
|
|
2314
2687
|
# Ingress address of AgentEndpoint with a port range and an optional
|
|
2315
2688
|
# mtu.
|
|
2316
2689
|
#
|
|
2690
|
+
# @!attribute [rw] socket_address
|
|
2691
|
+
# A ranged socket address.
|
|
2692
|
+
# @return [Types::RangedSocketAddress]
|
|
2693
|
+
#
|
|
2317
2694
|
# @!attribute [rw] mtu
|
|
2318
2695
|
# Maximum transmission unit (MTU) size in bytes of a dataflow
|
|
2319
2696
|
# endpoint.
|
|
2320
2697
|
# @return [Integer]
|
|
2321
2698
|
#
|
|
2322
|
-
# @!attribute [rw] socket_address
|
|
2323
|
-
# A ranged socket address.
|
|
2324
|
-
# @return [Types::RangedSocketAddress]
|
|
2325
|
-
#
|
|
2326
2699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RangedConnectionDetails AWS API Documentation
|
|
2327
2700
|
#
|
|
2328
2701
|
class RangedConnectionDetails < Struct.new(
|
|
2329
|
-
:
|
|
2330
|
-
:
|
|
2702
|
+
:socket_address,
|
|
2703
|
+
:mtu)
|
|
2331
2704
|
SENSITIVE = []
|
|
2332
2705
|
include Aws::Structure
|
|
2333
2706
|
end
|
|
@@ -2350,15 +2723,15 @@ module Aws::GroundStation
|
|
|
2350
2723
|
SENSITIVE = []
|
|
2351
2724
|
include Aws::Structure
|
|
2352
2725
|
end
|
|
2353
|
-
|
|
2354
|
-
# @!attribute [rw] agent_details
|
|
2355
|
-
# Detailed information about the agent being registered.
|
|
2356
|
-
# @return [Types::AgentDetails]
|
|
2357
|
-
#
|
|
2726
|
+
|
|
2358
2727
|
# @!attribute [rw] discovery_data
|
|
2359
2728
|
# Data for associating an agent with the capabilities it is managing.
|
|
2360
2729
|
# @return [Types::DiscoveryData]
|
|
2361
2730
|
#
|
|
2731
|
+
# @!attribute [rw] agent_details
|
|
2732
|
+
# Detailed information about the agent being registered.
|
|
2733
|
+
# @return [Types::AgentDetails]
|
|
2734
|
+
#
|
|
2362
2735
|
# @!attribute [rw] tags
|
|
2363
2736
|
# Tags assigned to an `Agent`.
|
|
2364
2737
|
# @return [Hash<String,String>]
|
|
@@ -2366,8 +2739,8 @@ module Aws::GroundStation
|
|
|
2366
2739
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RegisterAgentRequest AWS API Documentation
|
|
2367
2740
|
#
|
|
2368
2741
|
class RegisterAgentRequest < Struct.new(
|
|
2369
|
-
:agent_details,
|
|
2370
2742
|
:discovery_data,
|
|
2743
|
+
:agent_details,
|
|
2371
2744
|
:tags)
|
|
2372
2745
|
SENSITIVE = []
|
|
2373
2746
|
include Aws::Structure
|
|
@@ -2385,14 +2758,6 @@ module Aws::GroundStation
|
|
|
2385
2758
|
include Aws::Structure
|
|
2386
2759
|
end
|
|
2387
2760
|
|
|
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
2761
|
# @!attribute [rw] mission_profile_arn
|
|
2397
2762
|
# ARN of a mission profile.
|
|
2398
2763
|
# @return [String]
|
|
@@ -2405,19 +2770,46 @@ module Aws::GroundStation
|
|
|
2405
2770
|
# Start time of a contact in UTC.
|
|
2406
2771
|
# @return [Time]
|
|
2407
2772
|
#
|
|
2773
|
+
# @!attribute [rw] end_time
|
|
2774
|
+
# End time of a contact in UTC.
|
|
2775
|
+
# @return [Time]
|
|
2776
|
+
#
|
|
2777
|
+
# @!attribute [rw] ground_station
|
|
2778
|
+
# Name of a ground station.
|
|
2779
|
+
# @return [String]
|
|
2780
|
+
#
|
|
2408
2781
|
# @!attribute [rw] tags
|
|
2409
2782
|
# Tags assigned to a contact.
|
|
2410
2783
|
# @return [Hash<String,String>]
|
|
2411
2784
|
#
|
|
2785
|
+
# @!attribute [rw] tracking_overrides
|
|
2786
|
+
# Tracking configuration overrides for the contact.
|
|
2787
|
+
# @return [Types::TrackingOverrides]
|
|
2788
|
+
#
|
|
2412
2789
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ReserveContactRequest AWS API Documentation
|
|
2413
2790
|
#
|
|
2414
2791
|
class ReserveContactRequest < Struct.new(
|
|
2415
|
-
:end_time,
|
|
2416
|
-
:ground_station,
|
|
2417
2792
|
:mission_profile_arn,
|
|
2418
2793
|
:satellite_arn,
|
|
2419
2794
|
:start_time,
|
|
2420
|
-
:
|
|
2795
|
+
:end_time,
|
|
2796
|
+
:ground_station,
|
|
2797
|
+
:tags,
|
|
2798
|
+
:tracking_overrides)
|
|
2799
|
+
SENSITIVE = []
|
|
2800
|
+
include Aws::Structure
|
|
2801
|
+
end
|
|
2802
|
+
|
|
2803
|
+
# The specified resource is in use by non-terminal state contacts and
|
|
2804
|
+
# cannot be modified or deleted.
|
|
2805
|
+
#
|
|
2806
|
+
# @!attribute [rw] message
|
|
2807
|
+
# @return [String]
|
|
2808
|
+
#
|
|
2809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ResourceInUseException AWS API Documentation
|
|
2810
|
+
#
|
|
2811
|
+
class ResourceInUseException < Struct.new(
|
|
2812
|
+
:message)
|
|
2421
2813
|
SENSITIVE = []
|
|
2422
2814
|
include Aws::Structure
|
|
2423
2815
|
end
|
|
@@ -2452,7 +2844,7 @@ module Aws::GroundStation
|
|
|
2452
2844
|
include Aws::Structure
|
|
2453
2845
|
end
|
|
2454
2846
|
|
|
2455
|
-
# Object stored in S3 containing ephemeris data.
|
|
2847
|
+
# Object stored in Amazon S3 containing ephemeris data.
|
|
2456
2848
|
#
|
|
2457
2849
|
# @!attribute [rw] bucket
|
|
2458
2850
|
# An Amazon S3 Bucket name.
|
|
@@ -2463,7 +2855,8 @@ module Aws::GroundStation
|
|
|
2463
2855
|
# @return [String]
|
|
2464
2856
|
#
|
|
2465
2857
|
# @!attribute [rw] version
|
|
2466
|
-
# For versioned S3 objects, the version to use for the
|
|
2858
|
+
# For versioned Amazon S3 objects, the version to use for the
|
|
2859
|
+
# ephemeris.
|
|
2467
2860
|
# @return [String]
|
|
2468
2861
|
#
|
|
2469
2862
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/S3Object AWS API Documentation
|
|
@@ -2482,20 +2875,20 @@ module Aws::GroundStation
|
|
|
2482
2875
|
# ARN of the bucket to record to.
|
|
2483
2876
|
# @return [String]
|
|
2484
2877
|
#
|
|
2485
|
-
# @!attribute [rw] prefix
|
|
2486
|
-
# S3 Key prefix to prefice data files.
|
|
2487
|
-
# @return [String]
|
|
2488
|
-
#
|
|
2489
2878
|
# @!attribute [rw] role_arn
|
|
2490
2879
|
# ARN of the role Ground Station assumes to write data to the bucket.
|
|
2491
2880
|
# @return [String]
|
|
2492
2881
|
#
|
|
2882
|
+
# @!attribute [rw] prefix
|
|
2883
|
+
# S3 Key prefix to prefice data files.
|
|
2884
|
+
# @return [String]
|
|
2885
|
+
#
|
|
2493
2886
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/S3RecordingConfig AWS API Documentation
|
|
2494
2887
|
#
|
|
2495
2888
|
class S3RecordingConfig < Struct.new(
|
|
2496
2889
|
:bucket_arn,
|
|
2497
|
-
:
|
|
2498
|
-
:
|
|
2890
|
+
:role_arn,
|
|
2891
|
+
:prefix)
|
|
2499
2892
|
SENSITIVE = []
|
|
2500
2893
|
include Aws::Structure
|
|
2501
2894
|
end
|
|
@@ -2521,60 +2914,60 @@ module Aws::GroundStation
|
|
|
2521
2914
|
|
|
2522
2915
|
# Item in a list of satellites.
|
|
2523
2916
|
#
|
|
2524
|
-
# @!attribute [rw]
|
|
2525
|
-
#
|
|
2526
|
-
#
|
|
2527
|
-
# @return [Types::EphemerisMetaData]
|
|
2917
|
+
# @!attribute [rw] satellite_id
|
|
2918
|
+
# UUID of a satellite.
|
|
2919
|
+
# @return [String]
|
|
2528
2920
|
#
|
|
2529
|
-
# @!attribute [rw]
|
|
2530
|
-
#
|
|
2531
|
-
# @return [
|
|
2921
|
+
# @!attribute [rw] satellite_arn
|
|
2922
|
+
# ARN of a satellite.
|
|
2923
|
+
# @return [String]
|
|
2532
2924
|
#
|
|
2533
2925
|
# @!attribute [rw] norad_satellite_id
|
|
2534
2926
|
# NORAD satellite ID number.
|
|
2535
2927
|
# @return [Integer]
|
|
2536
2928
|
#
|
|
2537
|
-
# @!attribute [rw]
|
|
2538
|
-
#
|
|
2539
|
-
# @return [String]
|
|
2929
|
+
# @!attribute [rw] ground_stations
|
|
2930
|
+
# A list of ground stations to which the satellite is on-boarded.
|
|
2931
|
+
# @return [Array<String>]
|
|
2540
2932
|
#
|
|
2541
|
-
# @!attribute [rw]
|
|
2542
|
-
#
|
|
2543
|
-
#
|
|
2933
|
+
# @!attribute [rw] current_ephemeris
|
|
2934
|
+
# The current ephemeris being used to compute the trajectory of the
|
|
2935
|
+
# satellite.
|
|
2936
|
+
# @return [Types::EphemerisMetaData]
|
|
2544
2937
|
#
|
|
2545
2938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/SatelliteListItem AWS API Documentation
|
|
2546
2939
|
#
|
|
2547
2940
|
class SatelliteListItem < Struct.new(
|
|
2548
|
-
:
|
|
2549
|
-
:ground_stations,
|
|
2550
|
-
:norad_satellite_id,
|
|
2941
|
+
:satellite_id,
|
|
2551
2942
|
:satellite_arn,
|
|
2552
|
-
:
|
|
2943
|
+
:norad_satellite_id,
|
|
2944
|
+
:ground_stations,
|
|
2945
|
+
:current_ephemeris)
|
|
2553
2946
|
SENSITIVE = []
|
|
2554
2947
|
include Aws::Structure
|
|
2555
2948
|
end
|
|
2556
2949
|
|
|
2557
2950
|
# Information about endpoints.
|
|
2558
2951
|
#
|
|
2559
|
-
# @!attribute [rw]
|
|
2560
|
-
#
|
|
2561
|
-
#
|
|
2952
|
+
# @!attribute [rw] subnet_ids
|
|
2953
|
+
# A list of subnets where AWS Ground Station places elastic network
|
|
2954
|
+
# interfaces to send streams to your instances.
|
|
2955
|
+
# @return [Array<String>]
|
|
2562
2956
|
#
|
|
2563
2957
|
# @!attribute [rw] security_group_ids
|
|
2564
2958
|
# The security groups to attach to the elastic network interfaces.
|
|
2565
2959
|
# @return [Array<String>]
|
|
2566
2960
|
#
|
|
2567
|
-
# @!attribute [rw]
|
|
2568
|
-
#
|
|
2569
|
-
#
|
|
2570
|
-
# @return [Array<String>]
|
|
2961
|
+
# @!attribute [rw] role_arn
|
|
2962
|
+
# ARN to a role needed for connecting streams to your instances.
|
|
2963
|
+
# @return [String]
|
|
2571
2964
|
#
|
|
2572
2965
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/SecurityDetails AWS API Documentation
|
|
2573
2966
|
#
|
|
2574
2967
|
class SecurityDetails < Struct.new(
|
|
2575
|
-
:
|
|
2968
|
+
:subnet_ids,
|
|
2576
2969
|
:security_group_ids,
|
|
2577
|
-
:
|
|
2970
|
+
:role_arn)
|
|
2578
2971
|
SENSITIVE = []
|
|
2579
2972
|
include Aws::Structure
|
|
2580
2973
|
end
|
|
@@ -2600,18 +2993,18 @@ module Aws::GroundStation
|
|
|
2600
2993
|
|
|
2601
2994
|
# Dataflow details for the source side.
|
|
2602
2995
|
#
|
|
2603
|
-
# @!attribute [rw]
|
|
2604
|
-
#
|
|
2605
|
-
#
|
|
2606
|
-
# @return [Types::ConfigDetails]
|
|
2996
|
+
# @!attribute [rw] config_type
|
|
2997
|
+
# Type of a `Config`.
|
|
2998
|
+
# @return [String]
|
|
2607
2999
|
#
|
|
2608
3000
|
# @!attribute [rw] config_id
|
|
2609
3001
|
# UUID of a `Config`.
|
|
2610
3002
|
# @return [String]
|
|
2611
3003
|
#
|
|
2612
|
-
# @!attribute [rw]
|
|
2613
|
-
#
|
|
2614
|
-
#
|
|
3004
|
+
# @!attribute [rw] config_details
|
|
3005
|
+
# Additional details for a `Config`, if type is `dataflow-endpoint` or
|
|
3006
|
+
# `antenna-downlink-demod-decode`
|
|
3007
|
+
# @return [Types::ConfigDetails]
|
|
2615
3008
|
#
|
|
2616
3009
|
# @!attribute [rw] dataflow_source_region
|
|
2617
3010
|
# Region of a dataflow source.
|
|
@@ -2620,9 +3013,9 @@ module Aws::GroundStation
|
|
|
2620
3013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Source AWS API Documentation
|
|
2621
3014
|
#
|
|
2622
3015
|
class Source < Struct.new(
|
|
2623
|
-
:config_details,
|
|
2624
|
-
:config_id,
|
|
2625
3016
|
:config_type,
|
|
3017
|
+
:config_id,
|
|
3018
|
+
:config_details,
|
|
2626
3019
|
:dataflow_source_region)
|
|
2627
3020
|
SENSITIVE = []
|
|
2628
3021
|
include Aws::Structure
|
|
@@ -2630,6 +3023,12 @@ module Aws::GroundStation
|
|
|
2630
3023
|
|
|
2631
3024
|
# Object that describes a spectral `Config`.
|
|
2632
3025
|
#
|
|
3026
|
+
# @!attribute [rw] center_frequency
|
|
3027
|
+
# Center frequency of a spectral `Config`. Valid values are between
|
|
3028
|
+
# 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120
|
|
3029
|
+
# MHz for uplink.
|
|
3030
|
+
# @return [Types::Frequency]
|
|
3031
|
+
#
|
|
2633
3032
|
# @!attribute [rw] bandwidth
|
|
2634
3033
|
# Bandwidth of a spectral `Config`. AWS Ground Station currently has
|
|
2635
3034
|
# the following bandwidth limitations:
|
|
@@ -2644,12 +3043,6 @@ module Aws::GroundStation
|
|
|
2644
3043
|
# MHz.
|
|
2645
3044
|
# @return [Types::FrequencyBandwidth]
|
|
2646
3045
|
#
|
|
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
3046
|
# @!attribute [rw] polarization
|
|
2654
3047
|
# Polarization of a spectral `Config`. Capturing both `"RIGHT_HAND"`
|
|
2655
3048
|
# and `"LEFT_HAND"` polarization requires two separate configs.
|
|
@@ -2658,8 +3051,8 @@ module Aws::GroundStation
|
|
|
2658
3051
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/SpectrumConfig AWS API Documentation
|
|
2659
3052
|
#
|
|
2660
3053
|
class SpectrumConfig < Struct.new(
|
|
2661
|
-
:bandwidth,
|
|
2662
3054
|
:center_frequency,
|
|
3055
|
+
:bandwidth,
|
|
2663
3056
|
:polarization)
|
|
2664
3057
|
SENSITIVE = []
|
|
2665
3058
|
include Aws::Structure
|
|
@@ -2676,7 +3069,8 @@ module Aws::GroundStation
|
|
|
2676
3069
|
# @return [String]
|
|
2677
3070
|
#
|
|
2678
3071
|
# @!attribute [rw] valid_time_range
|
|
2679
|
-
# The valid time range for the TLE.
|
|
3072
|
+
# The valid time range for the TLE. Time ranges must be continuous
|
|
3073
|
+
# without gaps or overlaps.
|
|
2680
3074
|
# @return [Types::TimeRange]
|
|
2681
3075
|
#
|
|
2682
3076
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TLEData AWS API Documentation
|
|
@@ -2691,13 +3085,21 @@ module Aws::GroundStation
|
|
|
2691
3085
|
|
|
2692
3086
|
# Two-line element set (TLE) ephemeris.
|
|
2693
3087
|
#
|
|
3088
|
+
# For more detail about providing Two-line element sets to AWS Ground
|
|
3089
|
+
# Station, see the [TLE section][1] of the AWS Ground Station user
|
|
3090
|
+
# guide.
|
|
3091
|
+
#
|
|
3092
|
+
#
|
|
3093
|
+
#
|
|
3094
|
+
# [1]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-tle-ephemeris-data.html
|
|
3095
|
+
#
|
|
2694
3096
|
# @!attribute [rw] s3_object
|
|
2695
|
-
#
|
|
3097
|
+
# The Amazon S3 object that contains the ephemeris data.
|
|
2696
3098
|
# @return [Types::S3Object]
|
|
2697
3099
|
#
|
|
2698
3100
|
# @!attribute [rw] tle_data
|
|
2699
|
-
#
|
|
2700
|
-
#
|
|
3101
|
+
# TLE data that you provide directly instead of using an Amazon S3
|
|
3102
|
+
# object.
|
|
2701
3103
|
# @return [Array<Types::TLEData>]
|
|
2702
3104
|
#
|
|
2703
3105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TLEEphemeris AWS API Documentation
|
|
@@ -2730,21 +3132,74 @@ module Aws::GroundStation
|
|
|
2730
3132
|
#
|
|
2731
3133
|
class TagResourceResponse < Aws::EmptyStructure; end
|
|
2732
3134
|
|
|
3135
|
+
# Time-tagged azimuth elevation pointing data.
|
|
3136
|
+
#
|
|
3137
|
+
# Specifies the antenna pointing direction at a specific time offset
|
|
3138
|
+
# from the segment's reference epoch.
|
|
3139
|
+
#
|
|
3140
|
+
# @!attribute [rw] dt
|
|
3141
|
+
# Time offset in atomic seconds from the segment's reference epoch.
|
|
3142
|
+
#
|
|
3143
|
+
# All `dt` values within a segment must be in ascending order with no
|
|
3144
|
+
# duplicates.
|
|
3145
|
+
#
|
|
3146
|
+
# `dt` values may be:
|
|
3147
|
+
#
|
|
3148
|
+
# * negative
|
|
3149
|
+
#
|
|
3150
|
+
# * expressed as fractions of a second
|
|
3151
|
+
#
|
|
3152
|
+
# * expressed in scientific notation
|
|
3153
|
+
# @return [Float]
|
|
3154
|
+
#
|
|
3155
|
+
# @!attribute [rw] az
|
|
3156
|
+
# Azimuth angle at the specified time.
|
|
3157
|
+
#
|
|
3158
|
+
# Valid ranges by unit:
|
|
3159
|
+
#
|
|
3160
|
+
# * `DEGREE_ANGLE`: -180 to 360 degrees, measured clockwise from true
|
|
3161
|
+
# north
|
|
3162
|
+
#
|
|
3163
|
+
# * `RADIAN`: -π to 2π radians, measured clockwise from true north
|
|
3164
|
+
# @return [Float]
|
|
3165
|
+
#
|
|
3166
|
+
# @!attribute [rw] el
|
|
3167
|
+
# Elevation angle at the specified time.
|
|
3168
|
+
#
|
|
3169
|
+
# Valid ranges by unit:
|
|
3170
|
+
#
|
|
3171
|
+
# * `DEGREE_ANGLE`: -90 to 90 degrees, where 0 is the horizon, 90 is
|
|
3172
|
+
# zenith, and negative values are below the horizon
|
|
3173
|
+
#
|
|
3174
|
+
# * `RADIAN`: -π/2 to π/2 radians, where 0 is the horizon, π/2 is
|
|
3175
|
+
# zenith, and negative values are below the horizon
|
|
3176
|
+
# @return [Float]
|
|
3177
|
+
#
|
|
3178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TimeAzEl AWS API Documentation
|
|
3179
|
+
#
|
|
3180
|
+
class TimeAzEl < Struct.new(
|
|
3181
|
+
:dt,
|
|
3182
|
+
:az,
|
|
3183
|
+
:el)
|
|
3184
|
+
SENSITIVE = []
|
|
3185
|
+
include Aws::Structure
|
|
3186
|
+
end
|
|
3187
|
+
|
|
2733
3188
|
# A time range with a start and end time.
|
|
2734
3189
|
#
|
|
2735
|
-
# @!attribute [rw]
|
|
2736
|
-
#
|
|
3190
|
+
# @!attribute [rw] start_time
|
|
3191
|
+
# Unix epoch timestamp in UTC at which the time range starts.
|
|
2737
3192
|
# @return [Time]
|
|
2738
3193
|
#
|
|
2739
|
-
# @!attribute [rw]
|
|
2740
|
-
#
|
|
3194
|
+
# @!attribute [rw] end_time
|
|
3195
|
+
# Unix epoch timestamp in UTC at which the time range ends.
|
|
2741
3196
|
# @return [Time]
|
|
2742
3197
|
#
|
|
2743
3198
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TimeRange AWS API Documentation
|
|
2744
3199
|
#
|
|
2745
3200
|
class TimeRange < Struct.new(
|
|
2746
|
-
:
|
|
2747
|
-
:
|
|
3201
|
+
:start_time,
|
|
3202
|
+
:end_time)
|
|
2748
3203
|
SENSITIVE = []
|
|
2749
3204
|
include Aws::Structure
|
|
2750
3205
|
end
|
|
@@ -2764,6 +3219,22 @@ module Aws::GroundStation
|
|
|
2764
3219
|
include Aws::Structure
|
|
2765
3220
|
end
|
|
2766
3221
|
|
|
3222
|
+
# Overrides the default tracking configuration on an antenna during a
|
|
3223
|
+
# contact.
|
|
3224
|
+
#
|
|
3225
|
+
# @!attribute [rw] program_track_settings
|
|
3226
|
+
# Program track settings to override for antenna tracking during the
|
|
3227
|
+
# contact.
|
|
3228
|
+
# @return [Types::ProgramTrackSettings]
|
|
3229
|
+
#
|
|
3230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TrackingOverrides AWS API Documentation
|
|
3231
|
+
#
|
|
3232
|
+
class TrackingOverrides < Struct.new(
|
|
3233
|
+
:program_track_settings)
|
|
3234
|
+
SENSITIVE = []
|
|
3235
|
+
include Aws::Structure
|
|
3236
|
+
end
|
|
3237
|
+
|
|
2767
3238
|
# @!attribute [rw] resource_arn
|
|
2768
3239
|
# ARN of a resource.
|
|
2769
3240
|
# @return [String]
|
|
@@ -2789,6 +3260,10 @@ module Aws::GroundStation
|
|
|
2789
3260
|
# UUID of agent to update.
|
|
2790
3261
|
# @return [String]
|
|
2791
3262
|
#
|
|
3263
|
+
# @!attribute [rw] task_id
|
|
3264
|
+
# GUID of agent task.
|
|
3265
|
+
# @return [String]
|
|
3266
|
+
#
|
|
2792
3267
|
# @!attribute [rw] aggregate_status
|
|
2793
3268
|
# Aggregate status for agent.
|
|
2794
3269
|
# @return [Types::AggregateStatus]
|
|
@@ -2797,17 +3272,13 @@ module Aws::GroundStation
|
|
|
2797
3272
|
# List of component statuses for agent.
|
|
2798
3273
|
# @return [Array<Types::ComponentStatusData>]
|
|
2799
3274
|
#
|
|
2800
|
-
# @!attribute [rw] task_id
|
|
2801
|
-
# GUID of agent task.
|
|
2802
|
-
# @return [String]
|
|
2803
|
-
#
|
|
2804
3275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateAgentStatusRequest AWS API Documentation
|
|
2805
3276
|
#
|
|
2806
3277
|
class UpdateAgentStatusRequest < Struct.new(
|
|
2807
3278
|
:agent_id,
|
|
3279
|
+
:task_id,
|
|
2808
3280
|
:aggregate_status,
|
|
2809
|
-
:component_statuses
|
|
2810
|
-
:task_id)
|
|
3281
|
+
:component_statuses)
|
|
2811
3282
|
SENSITIVE = []
|
|
2812
3283
|
include Aws::Structure
|
|
2813
3284
|
end
|
|
@@ -2824,97 +3295,98 @@ module Aws::GroundStation
|
|
|
2824
3295
|
include Aws::Structure
|
|
2825
3296
|
end
|
|
2826
3297
|
|
|
2827
|
-
# @!attribute [rw] config_data
|
|
2828
|
-
# Parameters of a `Config`.
|
|
2829
|
-
# @return [Types::ConfigTypeData]
|
|
2830
|
-
#
|
|
2831
3298
|
# @!attribute [rw] config_id
|
|
2832
3299
|
# UUID of a `Config`.
|
|
2833
3300
|
# @return [String]
|
|
2834
3301
|
#
|
|
3302
|
+
# @!attribute [rw] name
|
|
3303
|
+
# Name of a `Config`.
|
|
3304
|
+
# @return [String]
|
|
3305
|
+
#
|
|
2835
3306
|
# @!attribute [rw] config_type
|
|
2836
3307
|
# Type of a `Config`.
|
|
2837
3308
|
# @return [String]
|
|
2838
3309
|
#
|
|
2839
|
-
# @!attribute [rw]
|
|
2840
|
-
#
|
|
2841
|
-
# @return [
|
|
3310
|
+
# @!attribute [rw] config_data
|
|
3311
|
+
# Parameters of a `Config`.
|
|
3312
|
+
# @return [Types::ConfigTypeData]
|
|
2842
3313
|
#
|
|
2843
3314
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateConfigRequest AWS API Documentation
|
|
2844
3315
|
#
|
|
2845
3316
|
class UpdateConfigRequest < Struct.new(
|
|
2846
|
-
:config_data,
|
|
2847
3317
|
:config_id,
|
|
3318
|
+
:name,
|
|
2848
3319
|
:config_type,
|
|
2849
|
-
:
|
|
3320
|
+
:config_data)
|
|
2850
3321
|
SENSITIVE = []
|
|
2851
3322
|
include Aws::Structure
|
|
2852
3323
|
end
|
|
2853
3324
|
|
|
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
3325
|
# @!attribute [rw] ephemeris_id
|
|
2860
3326
|
# The AWS Ground Station ephemeris ID.
|
|
2861
3327
|
# @return [String]
|
|
2862
3328
|
#
|
|
3329
|
+
# @!attribute [rw] enabled
|
|
3330
|
+
# Enable or disable the ephemeris. Changing this value doesn't
|
|
3331
|
+
# require re-validation.
|
|
3332
|
+
# @return [Boolean]
|
|
3333
|
+
#
|
|
2863
3334
|
# @!attribute [rw] name
|
|
2864
|
-
# A name
|
|
2865
|
-
# human-readable identifier for the ephemeris.
|
|
3335
|
+
# A name that you can use to identify the ephemeris.
|
|
2866
3336
|
# @return [String]
|
|
2867
3337
|
#
|
|
2868
3338
|
# @!attribute [rw] priority
|
|
2869
|
-
#
|
|
2870
|
-
#
|
|
3339
|
+
# A priority score that determines which ephemeris to use when
|
|
3340
|
+
# multiple ephemerides overlap.
|
|
2871
3341
|
#
|
|
2872
|
-
#
|
|
2873
|
-
#
|
|
2874
|
-
#
|
|
2875
|
-
# Priority must be 1 or greater
|
|
3342
|
+
# Higher numbers take precedence. The default is 1. Must be 1 or
|
|
3343
|
+
# greater.
|
|
2876
3344
|
# @return [Integer]
|
|
2877
3345
|
#
|
|
2878
3346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateEphemerisRequest AWS API Documentation
|
|
2879
3347
|
#
|
|
2880
3348
|
class UpdateEphemerisRequest < Struct.new(
|
|
2881
|
-
:enabled,
|
|
2882
3349
|
:ephemeris_id,
|
|
3350
|
+
:enabled,
|
|
2883
3351
|
:name,
|
|
2884
3352
|
:priority)
|
|
2885
3353
|
SENSITIVE = []
|
|
2886
3354
|
include Aws::Structure
|
|
2887
3355
|
end
|
|
2888
3356
|
|
|
2889
|
-
# @!attribute [rw]
|
|
3357
|
+
# @!attribute [rw] mission_profile_id
|
|
3358
|
+
# UUID of a mission profile.
|
|
3359
|
+
# @return [String]
|
|
3360
|
+
#
|
|
3361
|
+
# @!attribute [rw] name
|
|
3362
|
+
# Name of a mission profile.
|
|
3363
|
+
# @return [String]
|
|
3364
|
+
#
|
|
3365
|
+
# @!attribute [rw] contact_pre_pass_duration_seconds
|
|
2890
3366
|
# Amount of time after a contact ends that you’d like to receive a
|
|
2891
3367
|
# Ground Station Contact State Change event indicating the pass has
|
|
2892
3368
|
# finished.
|
|
2893
3369
|
# @return [Integer]
|
|
2894
3370
|
#
|
|
2895
|
-
# @!attribute [rw]
|
|
3371
|
+
# @!attribute [rw] contact_post_pass_duration_seconds
|
|
2896
3372
|
# Amount of time after a contact ends that you’d like to receive a
|
|
2897
3373
|
# Ground Station Contact State Change event indicating the pass has
|
|
2898
3374
|
# finished.
|
|
2899
3375
|
# @return [Integer]
|
|
2900
3376
|
#
|
|
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
3377
|
# @!attribute [rw] minimum_viable_contact_duration_seconds
|
|
2907
3378
|
# Smallest amount of time in seconds that you’d like to see for an
|
|
2908
3379
|
# available contact. AWS Ground Station will not present you with
|
|
2909
3380
|
# contacts shorter than this duration.
|
|
2910
3381
|
# @return [Integer]
|
|
2911
3382
|
#
|
|
2912
|
-
# @!attribute [rw]
|
|
2913
|
-
#
|
|
2914
|
-
#
|
|
3383
|
+
# @!attribute [rw] dataflow_edges
|
|
3384
|
+
# A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
|
|
3385
|
+
# `Config` and a *to* `Config`.
|
|
3386
|
+
# @return [Array<Array<String>>]
|
|
2915
3387
|
#
|
|
2916
|
-
# @!attribute [rw]
|
|
2917
|
-
#
|
|
3388
|
+
# @!attribute [rw] tracking_config_arn
|
|
3389
|
+
# ARN of a tracking `Config`.
|
|
2918
3390
|
# @return [String]
|
|
2919
3391
|
#
|
|
2920
3392
|
# @!attribute [rw] streams_kms_key
|
|
@@ -2925,22 +3397,18 @@ module Aws::GroundStation
|
|
|
2925
3397
|
# Role to use for encrypting streams with KMS key.
|
|
2926
3398
|
# @return [String]
|
|
2927
3399
|
#
|
|
2928
|
-
# @!attribute [rw] tracking_config_arn
|
|
2929
|
-
# ARN of a tracking `Config`.
|
|
2930
|
-
# @return [String]
|
|
2931
|
-
#
|
|
2932
3400
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateMissionProfileRequest AWS API Documentation
|
|
2933
3401
|
#
|
|
2934
3402
|
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
3403
|
:mission_profile_id,
|
|
2940
3404
|
:name,
|
|
3405
|
+
:contact_pre_pass_duration_seconds,
|
|
3406
|
+
:contact_post_pass_duration_seconds,
|
|
3407
|
+
:minimum_viable_contact_duration_seconds,
|
|
3408
|
+
:dataflow_edges,
|
|
3409
|
+
:tracking_config_arn,
|
|
2941
3410
|
:streams_kms_key,
|
|
2942
|
-
:streams_kms_role
|
|
2943
|
-
:tracking_config_arn)
|
|
3411
|
+
:streams_kms_role)
|
|
2944
3412
|
SENSITIVE = []
|
|
2945
3413
|
include Aws::Structure
|
|
2946
3414
|
end
|
|
@@ -2951,19 +3419,19 @@ module Aws::GroundStation
|
|
|
2951
3419
|
# specified `AntennaUplinkConfigArn`, are used when this
|
|
2952
3420
|
# `UplinkEchoConfig` is used in a contact.
|
|
2953
3421
|
#
|
|
2954
|
-
# @!attribute [rw] antenna_uplink_config_arn
|
|
2955
|
-
# ARN of an uplink `Config`.
|
|
2956
|
-
# @return [String]
|
|
2957
|
-
#
|
|
2958
3422
|
# @!attribute [rw] enabled
|
|
2959
3423
|
# Whether or not an uplink `Config` is enabled.
|
|
2960
3424
|
# @return [Boolean]
|
|
2961
3425
|
#
|
|
3426
|
+
# @!attribute [rw] antenna_uplink_config_arn
|
|
3427
|
+
# ARN of an uplink `Config`.
|
|
3428
|
+
# @return [String]
|
|
3429
|
+
#
|
|
2962
3430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkEchoConfig AWS API Documentation
|
|
2963
3431
|
#
|
|
2964
3432
|
class UplinkEchoConfig < Struct.new(
|
|
2965
|
-
:
|
|
2966
|
-
:
|
|
3433
|
+
:enabled,
|
|
3434
|
+
:antenna_uplink_config_arn)
|
|
2967
3435
|
SENSITIVE = []
|
|
2968
3436
|
include Aws::Structure
|
|
2969
3437
|
end
|