aws-sdk-groundstation 1.24.0 → 1.41.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 +88 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-groundstation/client.rb +758 -34
- data/lib/aws-sdk-groundstation/client_api.rb +464 -59
- data/lib/aws-sdk-groundstation/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-groundstation/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-groundstation/endpoints.rb +478 -0
- data/lib/aws-sdk-groundstation/plugins/endpoints.rb +134 -0
- data/lib/aws-sdk-groundstation/types.rb +1005 -570
- data/lib/aws-sdk-groundstation/waiters.rb +121 -0
- data/lib/aws-sdk-groundstation.rb +6 -1
- metadata +9 -4
@@ -10,6 +10,69 @@
|
|
10
10
|
module Aws::GroundStation
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# Detailed information about the agent.
|
14
|
+
#
|
15
|
+
# @!attribute [rw] agent_cpu_cores
|
16
|
+
# List of CPU cores reserved for the agent.
|
17
|
+
# @return [Array<Integer>]
|
18
|
+
#
|
19
|
+
# @!attribute [rw] agent_version
|
20
|
+
# Current agent version.
|
21
|
+
# @return [String]
|
22
|
+
#
|
23
|
+
# @!attribute [rw] component_versions
|
24
|
+
# List of versions being used by agent components.
|
25
|
+
# @return [Array<Types::ComponentVersion>]
|
26
|
+
#
|
27
|
+
# @!attribute [rw] instance_id
|
28
|
+
# ID of EC2 instance agent is running on.
|
29
|
+
# @return [String]
|
30
|
+
#
|
31
|
+
# @!attribute [rw] instance_type
|
32
|
+
# Type of EC2 instance agent is running on.
|
33
|
+
# @return [String]
|
34
|
+
#
|
35
|
+
# @!attribute [rw] reserved_cpu_cores
|
36
|
+
# <note markdown="1"> This field should not be used. Use agentCpuCores instead.
|
37
|
+
#
|
38
|
+
# </note>
|
39
|
+
#
|
40
|
+
# List of CPU cores reserved for processes other than the agent
|
41
|
+
# running on the EC2 instance.
|
42
|
+
# @return [Array<Integer>]
|
43
|
+
#
|
44
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AgentDetails AWS API Documentation
|
45
|
+
#
|
46
|
+
class AgentDetails < Struct.new(
|
47
|
+
:agent_cpu_cores,
|
48
|
+
:agent_version,
|
49
|
+
:component_versions,
|
50
|
+
:instance_id,
|
51
|
+
:instance_type,
|
52
|
+
:reserved_cpu_cores)
|
53
|
+
SENSITIVE = []
|
54
|
+
include Aws::Structure
|
55
|
+
end
|
56
|
+
|
57
|
+
# Aggregate status of Agent components.
|
58
|
+
#
|
59
|
+
# @!attribute [rw] signature_map
|
60
|
+
# Sparse map of failure signatures.
|
61
|
+
# @return [Hash<String,Boolean>]
|
62
|
+
#
|
63
|
+
# @!attribute [rw] status
|
64
|
+
# Aggregate status.
|
65
|
+
# @return [String]
|
66
|
+
#
|
67
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AggregateStatus AWS API Documentation
|
68
|
+
#
|
69
|
+
class AggregateStatus < Struct.new(
|
70
|
+
:signature_map,
|
71
|
+
:status)
|
72
|
+
SENSITIVE = []
|
73
|
+
include Aws::Structure
|
74
|
+
end
|
75
|
+
|
13
76
|
# Details about an antenna demod decode `Config` used in a contact.
|
14
77
|
#
|
15
78
|
# @!attribute [rw] output_node
|
@@ -27,23 +90,6 @@ module Aws::GroundStation
|
|
27
90
|
# Information about how AWS Ground Station should configure an antenna
|
28
91
|
# for downlink during a contact.
|
29
92
|
#
|
30
|
-
# @note When making an API call, you may pass AntennaDownlinkConfig
|
31
|
-
# data as a hash:
|
32
|
-
#
|
33
|
-
# {
|
34
|
-
# spectrum_config: { # required
|
35
|
-
# bandwidth: { # required
|
36
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
37
|
-
# value: 1.0, # required
|
38
|
-
# },
|
39
|
-
# center_frequency: { # required
|
40
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
41
|
-
# value: 1.0, # required
|
42
|
-
# },
|
43
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
44
|
-
# },
|
45
|
-
# }
|
46
|
-
#
|
47
93
|
# @!attribute [rw] spectrum_config
|
48
94
|
# Object that describes a spectral `Config`.
|
49
95
|
# @return [Types::SpectrumConfig]
|
@@ -59,29 +105,6 @@ module Aws::GroundStation
|
|
59
105
|
# Information about how AWS Ground Station should configure an antenna
|
60
106
|
# for downlink demod decode during a contact.
|
61
107
|
#
|
62
|
-
# @note When making an API call, you may pass AntennaDownlinkDemodDecodeConfig
|
63
|
-
# data as a hash:
|
64
|
-
#
|
65
|
-
# {
|
66
|
-
# decode_config: { # required
|
67
|
-
# unvalidated_json: "JsonString", # required
|
68
|
-
# },
|
69
|
-
# demodulation_config: { # required
|
70
|
-
# unvalidated_json: "JsonString", # required
|
71
|
-
# },
|
72
|
-
# spectrum_config: { # required
|
73
|
-
# bandwidth: { # required
|
74
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
75
|
-
# value: 1.0, # required
|
76
|
-
# },
|
77
|
-
# center_frequency: { # required
|
78
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
79
|
-
# value: 1.0, # required
|
80
|
-
# },
|
81
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
82
|
-
# },
|
83
|
-
# }
|
84
|
-
#
|
85
108
|
# @!attribute [rw] decode_config
|
86
109
|
# Information about the decode `Config`.
|
87
110
|
# @return [Types::DecodeConfig]
|
@@ -106,24 +129,6 @@ module Aws::GroundStation
|
|
106
129
|
|
107
130
|
# Information about the uplink `Config` of an antenna.
|
108
131
|
#
|
109
|
-
# @note When making an API call, you may pass AntennaUplinkConfig
|
110
|
-
# data as a hash:
|
111
|
-
#
|
112
|
-
# {
|
113
|
-
# spectrum_config: { # required
|
114
|
-
# center_frequency: { # required
|
115
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
116
|
-
# value: 1.0, # required
|
117
|
-
# },
|
118
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
119
|
-
# },
|
120
|
-
# target_eirp: { # required
|
121
|
-
# units: "dBW", # required, accepts dBW
|
122
|
-
# value: 1.0, # required
|
123
|
-
# },
|
124
|
-
# transmit_disabled: false,
|
125
|
-
# }
|
126
|
-
#
|
127
132
|
# @!attribute [rw] spectrum_config
|
128
133
|
# Information about the uplink spectral `Config`.
|
129
134
|
# @return [Types::UplinkSpectrumConfig]
|
@@ -146,13 +151,41 @@ module Aws::GroundStation
|
|
146
151
|
include Aws::Structure
|
147
152
|
end
|
148
153
|
|
149
|
-
#
|
150
|
-
# data as a hash:
|
154
|
+
# Information about AwsGroundStationAgentEndpoint.
|
151
155
|
#
|
152
|
-
#
|
153
|
-
#
|
154
|
-
#
|
156
|
+
# @!attribute [rw] agent_status
|
157
|
+
# The status of AgentEndpoint.
|
158
|
+
# @return [String]
|
155
159
|
#
|
160
|
+
# @!attribute [rw] audit_results
|
161
|
+
# The results of the audit.
|
162
|
+
# @return [String]
|
163
|
+
#
|
164
|
+
# @!attribute [rw] egress_address
|
165
|
+
# The egress address of AgentEndpoint.
|
166
|
+
# @return [Types::ConnectionDetails]
|
167
|
+
#
|
168
|
+
# @!attribute [rw] ingress_address
|
169
|
+
# The ingress address of AgentEndpoint.
|
170
|
+
# @return [Types::RangedConnectionDetails]
|
171
|
+
#
|
172
|
+
# @!attribute [rw] name
|
173
|
+
# Name string associated with AgentEndpoint. Used as a human-readable
|
174
|
+
# identifier for AgentEndpoint.
|
175
|
+
# @return [String]
|
176
|
+
#
|
177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AwsGroundStationAgentEndpoint AWS API Documentation
|
178
|
+
#
|
179
|
+
class AwsGroundStationAgentEndpoint < Struct.new(
|
180
|
+
:agent_status,
|
181
|
+
:audit_results,
|
182
|
+
:egress_address,
|
183
|
+
:ingress_address,
|
184
|
+
:name)
|
185
|
+
SENSITIVE = []
|
186
|
+
include Aws::Structure
|
187
|
+
end
|
188
|
+
|
156
189
|
# @!attribute [rw] contact_id
|
157
190
|
# UUID of a contact.
|
158
191
|
# @return [String]
|
@@ -165,6 +198,69 @@ module Aws::GroundStation
|
|
165
198
|
include Aws::Structure
|
166
199
|
end
|
167
200
|
|
201
|
+
# Data on the status of agent components.
|
202
|
+
#
|
203
|
+
# @!attribute [rw] bytes_received
|
204
|
+
# Bytes received by the component.
|
205
|
+
# @return [Integer]
|
206
|
+
#
|
207
|
+
# @!attribute [rw] bytes_sent
|
208
|
+
# Bytes sent by the component.
|
209
|
+
# @return [Integer]
|
210
|
+
#
|
211
|
+
# @!attribute [rw] capability_arn
|
212
|
+
# Capability ARN of the component.
|
213
|
+
# @return [String]
|
214
|
+
#
|
215
|
+
# @!attribute [rw] component_type
|
216
|
+
# The Component type.
|
217
|
+
# @return [String]
|
218
|
+
#
|
219
|
+
# @!attribute [rw] dataflow_id
|
220
|
+
# Dataflow UUID associated with the component.
|
221
|
+
# @return [String]
|
222
|
+
#
|
223
|
+
# @!attribute [rw] packets_dropped
|
224
|
+
# Packets dropped by component.
|
225
|
+
# @return [Integer]
|
226
|
+
#
|
227
|
+
# @!attribute [rw] status
|
228
|
+
# Component status.
|
229
|
+
# @return [String]
|
230
|
+
#
|
231
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ComponentStatusData AWS API Documentation
|
232
|
+
#
|
233
|
+
class ComponentStatusData < Struct.new(
|
234
|
+
:bytes_received,
|
235
|
+
:bytes_sent,
|
236
|
+
:capability_arn,
|
237
|
+
:component_type,
|
238
|
+
:dataflow_id,
|
239
|
+
:packets_dropped,
|
240
|
+
:status)
|
241
|
+
SENSITIVE = []
|
242
|
+
include Aws::Structure
|
243
|
+
end
|
244
|
+
|
245
|
+
# Version information for agent components.
|
246
|
+
#
|
247
|
+
# @!attribute [rw] component_type
|
248
|
+
# Component type.
|
249
|
+
# @return [String]
|
250
|
+
#
|
251
|
+
# @!attribute [rw] versions
|
252
|
+
# List of versions.
|
253
|
+
# @return [Array<String>]
|
254
|
+
#
|
255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ComponentVersion AWS API Documentation
|
256
|
+
#
|
257
|
+
class ComponentVersion < Struct.new(
|
258
|
+
:component_type,
|
259
|
+
:versions)
|
260
|
+
SENSITIVE = []
|
261
|
+
include Aws::Structure
|
262
|
+
end
|
263
|
+
|
168
264
|
# Details for certain `Config` object types in a contact.
|
169
265
|
#
|
170
266
|
# @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.
|
@@ -318,6 +414,26 @@ module Aws::GroundStation
|
|
318
414
|
class Unknown < ConfigTypeData; end
|
319
415
|
end
|
320
416
|
|
417
|
+
# Egress address of AgentEndpoint with an optional mtu.
|
418
|
+
#
|
419
|
+
# @!attribute [rw] mtu
|
420
|
+
# Maximum transmission unit (MTU) size in bytes of a dataflow
|
421
|
+
# endpoint.
|
422
|
+
# @return [Integer]
|
423
|
+
#
|
424
|
+
# @!attribute [rw] socket_address
|
425
|
+
# A socket address.
|
426
|
+
# @return [Types::SocketAddress]
|
427
|
+
#
|
428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConnectionDetails AWS API Documentation
|
429
|
+
#
|
430
|
+
class ConnectionDetails < Struct.new(
|
431
|
+
:mtu,
|
432
|
+
:socket_address)
|
433
|
+
SENSITIVE = []
|
434
|
+
include Aws::Structure
|
435
|
+
end
|
436
|
+
|
321
437
|
# Data describing a contact.
|
322
438
|
#
|
323
439
|
# @!attribute [rw] contact_id
|
@@ -329,7 +445,7 @@ module Aws::GroundStation
|
|
329
445
|
# @return [String]
|
330
446
|
#
|
331
447
|
# @!attribute [rw] end_time
|
332
|
-
# End time of a contact.
|
448
|
+
# End time of a contact in UTC.
|
333
449
|
# @return [Time]
|
334
450
|
#
|
335
451
|
# @!attribute [rw] error_message
|
@@ -367,7 +483,7 @@ module Aws::GroundStation
|
|
367
483
|
# @return [String]
|
368
484
|
#
|
369
485
|
# @!attribute [rw] start_time
|
370
|
-
# Start time of a contact.
|
486
|
+
# Start time of a contact in UTC.
|
371
487
|
# @return [Time]
|
372
488
|
#
|
373
489
|
# @!attribute [rw] tags
|
@@ -406,80 +522,6 @@ module Aws::GroundStation
|
|
406
522
|
include Aws::Structure
|
407
523
|
end
|
408
524
|
|
409
|
-
# @note When making an API call, you may pass CreateConfigRequest
|
410
|
-
# data as a hash:
|
411
|
-
#
|
412
|
-
# {
|
413
|
-
# config_data: { # required
|
414
|
-
# antenna_downlink_config: {
|
415
|
-
# spectrum_config: { # required
|
416
|
-
# bandwidth: { # required
|
417
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
418
|
-
# value: 1.0, # required
|
419
|
-
# },
|
420
|
-
# center_frequency: { # required
|
421
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
422
|
-
# value: 1.0, # required
|
423
|
-
# },
|
424
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
425
|
-
# },
|
426
|
-
# },
|
427
|
-
# antenna_downlink_demod_decode_config: {
|
428
|
-
# decode_config: { # required
|
429
|
-
# unvalidated_json: "JsonString", # required
|
430
|
-
# },
|
431
|
-
# demodulation_config: { # required
|
432
|
-
# unvalidated_json: "JsonString", # required
|
433
|
-
# },
|
434
|
-
# spectrum_config: { # required
|
435
|
-
# bandwidth: { # required
|
436
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
437
|
-
# value: 1.0, # required
|
438
|
-
# },
|
439
|
-
# center_frequency: { # required
|
440
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
441
|
-
# value: 1.0, # required
|
442
|
-
# },
|
443
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
444
|
-
# },
|
445
|
-
# },
|
446
|
-
# antenna_uplink_config: {
|
447
|
-
# spectrum_config: { # required
|
448
|
-
# center_frequency: { # required
|
449
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
450
|
-
# value: 1.0, # required
|
451
|
-
# },
|
452
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
453
|
-
# },
|
454
|
-
# target_eirp: { # required
|
455
|
-
# units: "dBW", # required, accepts dBW
|
456
|
-
# value: 1.0, # required
|
457
|
-
# },
|
458
|
-
# transmit_disabled: false,
|
459
|
-
# },
|
460
|
-
# dataflow_endpoint_config: {
|
461
|
-
# dataflow_endpoint_name: "String", # required
|
462
|
-
# dataflow_endpoint_region: "String",
|
463
|
-
# },
|
464
|
-
# s3_recording_config: {
|
465
|
-
# bucket_arn: "BucketArn", # required
|
466
|
-
# prefix: "S3KeyPrefix",
|
467
|
-
# role_arn: "RoleArn", # required
|
468
|
-
# },
|
469
|
-
# tracking_config: {
|
470
|
-
# autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
|
471
|
-
# },
|
472
|
-
# uplink_echo_config: {
|
473
|
-
# antenna_uplink_config_arn: "ConfigArn", # required
|
474
|
-
# enabled: false, # required
|
475
|
-
# },
|
476
|
-
# },
|
477
|
-
# name: "SafeName", # required
|
478
|
-
# tags: {
|
479
|
-
# "String" => "String",
|
480
|
-
# },
|
481
|
-
# }
|
482
|
-
#
|
483
525
|
# @!attribute [rw] config_data
|
484
526
|
# Parameters of a `Config`.
|
485
527
|
# @return [Types::ConfigTypeData]
|
@@ -502,32 +544,21 @@ module Aws::GroundStation
|
|
502
544
|
include Aws::Structure
|
503
545
|
end
|
504
546
|
|
505
|
-
#
|
506
|
-
#
|
507
|
-
#
|
508
|
-
#
|
509
|
-
#
|
510
|
-
#
|
511
|
-
#
|
512
|
-
#
|
513
|
-
#
|
514
|
-
#
|
515
|
-
#
|
516
|
-
#
|
517
|
-
#
|
518
|
-
#
|
519
|
-
#
|
520
|
-
# security_details: {
|
521
|
-
# role_arn: "RoleArn", # required
|
522
|
-
# security_group_ids: ["String"], # required
|
523
|
-
# subnet_ids: ["String"], # required
|
524
|
-
# },
|
525
|
-
# },
|
526
|
-
# ],
|
527
|
-
# tags: {
|
528
|
-
# "String" => "String",
|
529
|
-
# },
|
530
|
-
# }
|
547
|
+
# @!attribute [rw] contact_post_pass_duration_seconds
|
548
|
+
# Amount of time, in seconds, after a contact ends that the Ground
|
549
|
+
# Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
|
550
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
551
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
552
|
+
# `POSTPASS` state.
|
553
|
+
# @return [Integer]
|
554
|
+
#
|
555
|
+
# @!attribute [rw] contact_pre_pass_duration_seconds
|
556
|
+
# Amount of time, in seconds, before a contact starts that the Ground
|
557
|
+
# Station Dataflow Endpoint Group will be in a `PREPASS` state. A
|
558
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
559
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
560
|
+
# `PREPASS` state.
|
561
|
+
# @return [Integer]
|
531
562
|
#
|
532
563
|
# @!attribute [rw] endpoint_details
|
533
564
|
# Endpoint details of each endpoint in the dataflow endpoint group.
|
@@ -540,29 +571,73 @@ module Aws::GroundStation
|
|
540
571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateDataflowEndpointGroupRequest AWS API Documentation
|
541
572
|
#
|
542
573
|
class CreateDataflowEndpointGroupRequest < Struct.new(
|
574
|
+
:contact_post_pass_duration_seconds,
|
575
|
+
:contact_pre_pass_duration_seconds,
|
543
576
|
:endpoint_details,
|
544
577
|
:tags)
|
545
578
|
SENSITIVE = []
|
546
579
|
include Aws::Structure
|
547
580
|
end
|
548
581
|
|
549
|
-
#
|
550
|
-
#
|
582
|
+
# @!attribute [rw] enabled
|
583
|
+
# Whether to set the ephemeris status to `ENABLED` after validation.
|
584
|
+
#
|
585
|
+
# Setting this to false will set the ephemeris status to `DISABLED`
|
586
|
+
# after validation.
|
587
|
+
# @return [Boolean]
|
588
|
+
#
|
589
|
+
# @!attribute [rw] ephemeris
|
590
|
+
# Ephemeris data.
|
591
|
+
# @return [Types::EphemerisData]
|
592
|
+
#
|
593
|
+
# @!attribute [rw] expiration_time
|
594
|
+
# An overall expiration time for the ephemeris in UTC, after which it
|
595
|
+
# will become `EXPIRED`.
|
596
|
+
# @return [Time]
|
597
|
+
#
|
598
|
+
# @!attribute [rw] kms_key_arn
|
599
|
+
# The ARN of a KMS key used to encrypt the ephemeris in Ground
|
600
|
+
# Station.
|
601
|
+
# @return [String]
|
602
|
+
#
|
603
|
+
# @!attribute [rw] name
|
604
|
+
# A name string associated with the ephemeris. Used as a
|
605
|
+
# human-readable identifier for the ephemeris.
|
606
|
+
# @return [String]
|
607
|
+
#
|
608
|
+
# @!attribute [rw] priority
|
609
|
+
# Customer-provided priority score to establish the order in which
|
610
|
+
# overlapping ephemerides should be used.
|
611
|
+
#
|
612
|
+
# The default for customer-provided ephemeris priority is 1, and
|
613
|
+
# higher numbers take precedence.
|
614
|
+
#
|
615
|
+
# Priority must be 1 or greater
|
616
|
+
# @return [Integer]
|
617
|
+
#
|
618
|
+
# @!attribute [rw] satellite_id
|
619
|
+
# AWS Ground Station satellite ID for this ephemeris.
|
620
|
+
# @return [String]
|
621
|
+
#
|
622
|
+
# @!attribute [rw] tags
|
623
|
+
# Tags assigned to an ephemeris.
|
624
|
+
# @return [Hash<String,String>]
|
551
625
|
#
|
552
|
-
#
|
553
|
-
# contact_post_pass_duration_seconds: 1,
|
554
|
-
# contact_pre_pass_duration_seconds: 1,
|
555
|
-
# dataflow_edges: [ # required
|
556
|
-
# ["ConfigArn"],
|
557
|
-
# ],
|
558
|
-
# minimum_viable_contact_duration_seconds: 1, # required
|
559
|
-
# name: "SafeName", # required
|
560
|
-
# tags: {
|
561
|
-
# "String" => "String",
|
562
|
-
# },
|
563
|
-
# tracking_config_arn: "ConfigArn", # required
|
564
|
-
# }
|
626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateEphemerisRequest AWS API Documentation
|
565
627
|
#
|
628
|
+
class CreateEphemerisRequest < Struct.new(
|
629
|
+
:enabled,
|
630
|
+
:ephemeris,
|
631
|
+
:expiration_time,
|
632
|
+
:kms_key_arn,
|
633
|
+
:name,
|
634
|
+
:priority,
|
635
|
+
:satellite_id,
|
636
|
+
:tags)
|
637
|
+
SENSITIVE = []
|
638
|
+
include Aws::Structure
|
639
|
+
end
|
640
|
+
|
566
641
|
# @!attribute [rw] contact_post_pass_duration_seconds
|
567
642
|
# Amount of time after a contact ends that you’d like to receive a
|
568
643
|
# CloudWatch event indicating the pass has finished.
|
@@ -588,6 +663,14 @@ module Aws::GroundStation
|
|
588
663
|
# Name of a mission profile.
|
589
664
|
# @return [String]
|
590
665
|
#
|
666
|
+
# @!attribute [rw] streams_kms_key
|
667
|
+
# KMS key to use for encrypting streams.
|
668
|
+
# @return [Types::KmsKey]
|
669
|
+
#
|
670
|
+
# @!attribute [rw] streams_kms_role
|
671
|
+
# Role to use for encrypting streams with KMS key.
|
672
|
+
# @return [String]
|
673
|
+
#
|
591
674
|
# @!attribute [rw] tags
|
592
675
|
# Tags assigned to a mission profile.
|
593
676
|
# @return [Hash<String,String>]
|
@@ -604,6 +687,8 @@ module Aws::GroundStation
|
|
604
687
|
:dataflow_edges,
|
605
688
|
:minimum_viable_contact_duration_seconds,
|
606
689
|
:name,
|
690
|
+
:streams_kms_key,
|
691
|
+
:streams_kms_role,
|
607
692
|
:tags,
|
608
693
|
:tracking_config_arn)
|
609
694
|
SENSITIVE = []
|
@@ -636,19 +721,6 @@ module Aws::GroundStation
|
|
636
721
|
|
637
722
|
# Information about a dataflow endpoint.
|
638
723
|
#
|
639
|
-
# @note When making an API call, you may pass DataflowEndpoint
|
640
|
-
# data as a hash:
|
641
|
-
#
|
642
|
-
# {
|
643
|
-
# address: {
|
644
|
-
# name: "String", # required
|
645
|
-
# port: 1, # required
|
646
|
-
# },
|
647
|
-
# mtu: 1,
|
648
|
-
# name: "SafeName",
|
649
|
-
# status: "created", # accepts created, creating, deleted, deleting, failed
|
650
|
-
# }
|
651
|
-
#
|
652
724
|
# @!attribute [rw] address
|
653
725
|
# Socket address of a dataflow endpoint.
|
654
726
|
# @return [Types::SocketAddress]
|
@@ -679,14 +751,6 @@ module Aws::GroundStation
|
|
679
751
|
|
680
752
|
# Information about the dataflow endpoint `Config`.
|
681
753
|
#
|
682
|
-
# @note When making an API call, you may pass DataflowEndpointConfig
|
683
|
-
# data as a hash:
|
684
|
-
#
|
685
|
-
# {
|
686
|
-
# dataflow_endpoint_name: "String", # required
|
687
|
-
# dataflow_endpoint_region: "String",
|
688
|
-
# }
|
689
|
-
#
|
690
754
|
# @!attribute [rw] dataflow_endpoint_name
|
691
755
|
# Name of a dataflow endpoint.
|
692
756
|
# @return [String]
|
@@ -737,13 +801,6 @@ module Aws::GroundStation
|
|
737
801
|
|
738
802
|
# Information about the decode `Config`.
|
739
803
|
#
|
740
|
-
# @note When making an API call, you may pass DecodeConfig
|
741
|
-
# data as a hash:
|
742
|
-
#
|
743
|
-
# {
|
744
|
-
# unvalidated_json: "JsonString", # required
|
745
|
-
# }
|
746
|
-
#
|
747
804
|
# @!attribute [rw] unvalidated_json
|
748
805
|
# Unvalidated JSON of a decode `Config`.
|
749
806
|
# @return [String]
|
@@ -756,14 +813,6 @@ module Aws::GroundStation
|
|
756
813
|
include Aws::Structure
|
757
814
|
end
|
758
815
|
|
759
|
-
# @note When making an API call, you may pass DeleteConfigRequest
|
760
|
-
# data as a hash:
|
761
|
-
#
|
762
|
-
# {
|
763
|
-
# config_id: "String", # required
|
764
|
-
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
765
|
-
# }
|
766
|
-
#
|
767
816
|
# @!attribute [rw] config_id
|
768
817
|
# UUID of a `Config`.
|
769
818
|
# @return [String]
|
@@ -781,13 +830,6 @@ module Aws::GroundStation
|
|
781
830
|
include Aws::Structure
|
782
831
|
end
|
783
832
|
|
784
|
-
# @note When making an API call, you may pass DeleteDataflowEndpointGroupRequest
|
785
|
-
# data as a hash:
|
786
|
-
#
|
787
|
-
# {
|
788
|
-
# dataflow_endpoint_group_id: "String", # required
|
789
|
-
# }
|
790
|
-
#
|
791
833
|
# @!attribute [rw] dataflow_endpoint_group_id
|
792
834
|
# UUID of a dataflow endpoint group.
|
793
835
|
# @return [String]
|
@@ -800,13 +842,18 @@ module Aws::GroundStation
|
|
800
842
|
include Aws::Structure
|
801
843
|
end
|
802
844
|
|
803
|
-
#
|
804
|
-
#
|
845
|
+
# @!attribute [rw] ephemeris_id
|
846
|
+
# The AWS Ground Station ephemeris ID.
|
847
|
+
# @return [String]
|
805
848
|
#
|
806
|
-
#
|
807
|
-
# mission_profile_id: "String", # required
|
808
|
-
# }
|
849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DeleteEphemerisRequest AWS API Documentation
|
809
850
|
#
|
851
|
+
class DeleteEphemerisRequest < Struct.new(
|
852
|
+
:ephemeris_id)
|
853
|
+
SENSITIVE = []
|
854
|
+
include Aws::Structure
|
855
|
+
end
|
856
|
+
|
810
857
|
# @!attribute [rw] mission_profile_id
|
811
858
|
# UUID of a mission profile.
|
812
859
|
# @return [String]
|
@@ -821,13 +868,6 @@ module Aws::GroundStation
|
|
821
868
|
|
822
869
|
# Information about the demodulation `Config`.
|
823
870
|
#
|
824
|
-
# @note When making an API call, you may pass DemodulationConfig
|
825
|
-
# data as a hash:
|
826
|
-
#
|
827
|
-
# {
|
828
|
-
# unvalidated_json: "JsonString", # required
|
829
|
-
# }
|
830
|
-
#
|
831
871
|
# @!attribute [rw] unvalidated_json
|
832
872
|
# Unvalidated JSON of a demodulation `Config`.
|
833
873
|
# @return [String]
|
@@ -857,13 +897,6 @@ module Aws::GroundStation
|
|
857
897
|
include Aws::Structure
|
858
898
|
end
|
859
899
|
|
860
|
-
# @note When making an API call, you may pass DescribeContactRequest
|
861
|
-
# data as a hash:
|
862
|
-
#
|
863
|
-
# {
|
864
|
-
# contact_id: "String", # required
|
865
|
-
# }
|
866
|
-
#
|
867
900
|
# @!attribute [rw] contact_id
|
868
901
|
# UUID of a contact.
|
869
902
|
# @return [String]
|
@@ -890,7 +923,7 @@ module Aws::GroundStation
|
|
890
923
|
# @return [Array<Types::DataflowDetail>]
|
891
924
|
#
|
892
925
|
# @!attribute [rw] end_time
|
893
|
-
# End time of a contact.
|
926
|
+
# End time of a contact in UTC.
|
894
927
|
# @return [Time]
|
895
928
|
#
|
896
929
|
# @!attribute [rw] error_message
|
@@ -928,7 +961,7 @@ module Aws::GroundStation
|
|
928
961
|
# @return [String]
|
929
962
|
#
|
930
963
|
# @!attribute [rw] start_time
|
931
|
-
# Start time of a contact.
|
964
|
+
# Start time of a contact in UTC.
|
932
965
|
# @return [Time]
|
933
966
|
#
|
934
967
|
# @!attribute [rw] tags
|
@@ -956,6 +989,83 @@ module Aws::GroundStation
|
|
956
989
|
include Aws::Structure
|
957
990
|
end
|
958
991
|
|
992
|
+
# @!attribute [rw] ephemeris_id
|
993
|
+
# The AWS Ground Station ephemeris ID.
|
994
|
+
# @return [String]
|
995
|
+
#
|
996
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DescribeEphemerisRequest AWS API Documentation
|
997
|
+
#
|
998
|
+
class DescribeEphemerisRequest < Struct.new(
|
999
|
+
:ephemeris_id)
|
1000
|
+
SENSITIVE = []
|
1001
|
+
include Aws::Structure
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
# @!attribute [rw] creation_time
|
1005
|
+
# The time the ephemeris was uploaded in UTC.
|
1006
|
+
# @return [Time]
|
1007
|
+
#
|
1008
|
+
# @!attribute [rw] enabled
|
1009
|
+
# Whether or not the ephemeris is enabled.
|
1010
|
+
# @return [Boolean]
|
1011
|
+
#
|
1012
|
+
# @!attribute [rw] ephemeris_id
|
1013
|
+
# The AWS Ground Station ephemeris ID.
|
1014
|
+
# @return [String]
|
1015
|
+
#
|
1016
|
+
# @!attribute [rw] invalid_reason
|
1017
|
+
# Reason that an ephemeris failed validation. Only provided for
|
1018
|
+
# ephemerides with `INVALID` status.
|
1019
|
+
# @return [String]
|
1020
|
+
#
|
1021
|
+
# @!attribute [rw] name
|
1022
|
+
# A name string associated with the ephemeris. Used as a
|
1023
|
+
# human-readable identifier for the ephemeris.
|
1024
|
+
# @return [String]
|
1025
|
+
#
|
1026
|
+
# @!attribute [rw] priority
|
1027
|
+
# Customer-provided priority score to establish the order in which
|
1028
|
+
# overlapping ephemerides should be used.
|
1029
|
+
#
|
1030
|
+
# The default for customer-provided ephemeris priority is 1, and
|
1031
|
+
# higher numbers take precedence.
|
1032
|
+
#
|
1033
|
+
# Priority must be 1 or greater
|
1034
|
+
# @return [Integer]
|
1035
|
+
#
|
1036
|
+
# @!attribute [rw] satellite_id
|
1037
|
+
# The AWS Ground Station satellite ID associated with ephemeris.
|
1038
|
+
# @return [String]
|
1039
|
+
#
|
1040
|
+
# @!attribute [rw] status
|
1041
|
+
# The status of the ephemeris.
|
1042
|
+
# @return [String]
|
1043
|
+
#
|
1044
|
+
# @!attribute [rw] supplied_data
|
1045
|
+
# Supplied ephemeris data.
|
1046
|
+
# @return [Types::EphemerisTypeDescription]
|
1047
|
+
#
|
1048
|
+
# @!attribute [rw] tags
|
1049
|
+
# Tags assigned to an ephemeris.
|
1050
|
+
# @return [Hash<String,String>]
|
1051
|
+
#
|
1052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DescribeEphemerisResponse AWS API Documentation
|
1053
|
+
#
|
1054
|
+
class DescribeEphemerisResponse < Struct.new(
|
1055
|
+
:creation_time,
|
1056
|
+
:enabled,
|
1057
|
+
:ephemeris_id,
|
1058
|
+
:invalid_reason,
|
1059
|
+
:name,
|
1060
|
+
:priority,
|
1061
|
+
:satellite_id,
|
1062
|
+
:status,
|
1063
|
+
:supplied_data,
|
1064
|
+
:tags)
|
1065
|
+
SENSITIVE = []
|
1066
|
+
include Aws::Structure
|
1067
|
+
end
|
1068
|
+
|
959
1069
|
# Dataflow details for the destination side.
|
960
1070
|
#
|
961
1071
|
# @!attribute [rw] config_details
|
@@ -986,15 +1096,31 @@ module Aws::GroundStation
|
|
986
1096
|
include Aws::Structure
|
987
1097
|
end
|
988
1098
|
|
989
|
-
#
|
1099
|
+
# Data for agent discovery.
|
1100
|
+
#
|
1101
|
+
# @!attribute [rw] capability_arns
|
1102
|
+
# List of capabilities to associate with agent.
|
1103
|
+
# @return [Array<String>]
|
990
1104
|
#
|
991
|
-
#
|
992
|
-
#
|
1105
|
+
# @!attribute [rw] private_ip_addresses
|
1106
|
+
# List of private IP addresses to associate with agent.
|
1107
|
+
# @return [Array<String>]
|
1108
|
+
#
|
1109
|
+
# @!attribute [rw] public_ip_addresses
|
1110
|
+
# List of public IP addresses to associate with agent.
|
1111
|
+
# @return [Array<String>]
|
993
1112
|
#
|
994
|
-
#
|
995
|
-
#
|
996
|
-
|
997
|
-
|
1113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DiscoveryData AWS API Documentation
|
1114
|
+
#
|
1115
|
+
class DiscoveryData < Struct.new(
|
1116
|
+
:capability_arns,
|
1117
|
+
:private_ip_addresses,
|
1118
|
+
:public_ip_addresses)
|
1119
|
+
SENSITIVE = []
|
1120
|
+
include Aws::Structure
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
# Object that represents EIRP.
|
998
1124
|
#
|
999
1125
|
# @!attribute [rw] units
|
1000
1126
|
# Units of an EIRP.
|
@@ -1034,53 +1160,215 @@ module Aws::GroundStation
|
|
1034
1160
|
|
1035
1161
|
# Information about the endpoint details.
|
1036
1162
|
#
|
1037
|
-
#
|
1038
|
-
#
|
1039
|
-
#
|
1040
|
-
# {
|
1041
|
-
# endpoint: {
|
1042
|
-
# address: {
|
1043
|
-
# name: "String", # required
|
1044
|
-
# port: 1, # required
|
1045
|
-
# },
|
1046
|
-
# mtu: 1,
|
1047
|
-
# name: "SafeName",
|
1048
|
-
# status: "created", # accepts created, creating, deleted, deleting, failed
|
1049
|
-
# },
|
1050
|
-
# security_details: {
|
1051
|
-
# role_arn: "RoleArn", # required
|
1052
|
-
# security_group_ids: ["String"], # required
|
1053
|
-
# subnet_ids: ["String"], # required
|
1054
|
-
# },
|
1055
|
-
# }
|
1163
|
+
# @!attribute [rw] aws_ground_station_agent_endpoint
|
1164
|
+
# An agent endpoint.
|
1165
|
+
# @return [Types::AwsGroundStationAgentEndpoint]
|
1056
1166
|
#
|
1057
1167
|
# @!attribute [rw] endpoint
|
1058
1168
|
# A dataflow endpoint.
|
1059
1169
|
# @return [Types::DataflowEndpoint]
|
1060
1170
|
#
|
1171
|
+
# @!attribute [rw] health_reasons
|
1172
|
+
# Health reasons for a dataflow endpoint. This field is ignored when
|
1173
|
+
# calling `CreateDataflowEndpointGroup`.
|
1174
|
+
# @return [Array<String>]
|
1175
|
+
#
|
1176
|
+
# @!attribute [rw] health_status
|
1177
|
+
# A dataflow endpoint health status. This field is ignored when
|
1178
|
+
# calling `CreateDataflowEndpointGroup`.
|
1179
|
+
# @return [String]
|
1180
|
+
#
|
1061
1181
|
# @!attribute [rw] security_details
|
1062
|
-
# Endpoint security details
|
1182
|
+
# Endpoint security details including a list of subnets, a list of
|
1183
|
+
# security groups and a role to connect streams to instances.
|
1063
1184
|
# @return [Types::SecurityDetails]
|
1064
1185
|
#
|
1065
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EndpointDetails AWS API Documentation
|
1186
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EndpointDetails AWS API Documentation
|
1187
|
+
#
|
1188
|
+
class EndpointDetails < Struct.new(
|
1189
|
+
:aws_ground_station_agent_endpoint,
|
1190
|
+
:endpoint,
|
1191
|
+
:health_reasons,
|
1192
|
+
:health_status,
|
1193
|
+
:security_details)
|
1194
|
+
SENSITIVE = []
|
1195
|
+
include Aws::Structure
|
1196
|
+
end
|
1197
|
+
|
1198
|
+
# Ephemeris data.
|
1199
|
+
#
|
1200
|
+
# @note EphemerisData is a union - when making an API calls you must set exactly one of the members.
|
1201
|
+
#
|
1202
|
+
# @!attribute [rw] oem
|
1203
|
+
# Ephemeris data in Orbit Ephemeris Message (OEM) format.
|
1204
|
+
# @return [Types::OEMEphemeris]
|
1205
|
+
#
|
1206
|
+
# @!attribute [rw] tle
|
1207
|
+
# Two-line element set (TLE) ephemeris.
|
1208
|
+
# @return [Types::TLEEphemeris]
|
1209
|
+
#
|
1210
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisData AWS API Documentation
|
1211
|
+
#
|
1212
|
+
class EphemerisData < Struct.new(
|
1213
|
+
:oem,
|
1214
|
+
:tle,
|
1215
|
+
:unknown)
|
1216
|
+
SENSITIVE = []
|
1217
|
+
include Aws::Structure
|
1218
|
+
include Aws::Structure::Union
|
1219
|
+
|
1220
|
+
class Oem < EphemerisData; end
|
1221
|
+
class Tle < EphemerisData; end
|
1222
|
+
class Unknown < EphemerisData; end
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
# Description of ephemeris.
|
1226
|
+
#
|
1227
|
+
# @!attribute [rw] ephemeris_data
|
1228
|
+
# Supplied ephemeris data.
|
1229
|
+
# @return [String]
|
1230
|
+
#
|
1231
|
+
# @!attribute [rw] source_s3_object
|
1232
|
+
# Source S3 object used for the ephemeris.
|
1233
|
+
# @return [Types::S3Object]
|
1234
|
+
#
|
1235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisDescription AWS API Documentation
|
1236
|
+
#
|
1237
|
+
class EphemerisDescription < Struct.new(
|
1238
|
+
:ephemeris_data,
|
1239
|
+
:source_s3_object)
|
1240
|
+
SENSITIVE = []
|
1241
|
+
include Aws::Structure
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
# @!attribute [rw] ephemeris_id
|
1245
|
+
# The AWS Ground Station ephemeris ID.
|
1246
|
+
# @return [String]
|
1247
|
+
#
|
1248
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisIdResponse AWS API Documentation
|
1249
|
+
#
|
1250
|
+
class EphemerisIdResponse < Struct.new(
|
1251
|
+
:ephemeris_id)
|
1252
|
+
SENSITIVE = []
|
1253
|
+
include Aws::Structure
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
# Ephemeris item.
|
1257
|
+
#
|
1258
|
+
# @!attribute [rw] creation_time
|
1259
|
+
# The time the ephemeris was uploaded in UTC.
|
1260
|
+
# @return [Time]
|
1261
|
+
#
|
1262
|
+
# @!attribute [rw] enabled
|
1263
|
+
# Whether or not the ephemeris is enabled.
|
1264
|
+
# @return [Boolean]
|
1265
|
+
#
|
1266
|
+
# @!attribute [rw] ephemeris_id
|
1267
|
+
# The AWS Ground Station ephemeris ID.
|
1268
|
+
# @return [String]
|
1269
|
+
#
|
1270
|
+
# @!attribute [rw] name
|
1271
|
+
# A name string associated with the ephemeris. Used as a
|
1272
|
+
# human-readable identifier for the ephemeris.
|
1273
|
+
# @return [String]
|
1274
|
+
#
|
1275
|
+
# @!attribute [rw] priority
|
1276
|
+
# Customer-provided priority score to establish the order in which
|
1277
|
+
# overlapping ephemerides should be used.
|
1278
|
+
#
|
1279
|
+
# The default for customer-provided ephemeris priority is 1, and
|
1280
|
+
# higher numbers take precedence.
|
1281
|
+
#
|
1282
|
+
# Priority must be 1 or greater
|
1283
|
+
# @return [Integer]
|
1284
|
+
#
|
1285
|
+
# @!attribute [rw] source_s3_object
|
1286
|
+
# Source S3 object used for the ephemeris.
|
1287
|
+
# @return [Types::S3Object]
|
1288
|
+
#
|
1289
|
+
# @!attribute [rw] status
|
1290
|
+
# The status of the ephemeris.
|
1291
|
+
# @return [String]
|
1292
|
+
#
|
1293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisItem AWS API Documentation
|
1294
|
+
#
|
1295
|
+
class EphemerisItem < Struct.new(
|
1296
|
+
:creation_time,
|
1297
|
+
:enabled,
|
1298
|
+
:ephemeris_id,
|
1299
|
+
:name,
|
1300
|
+
:priority,
|
1301
|
+
:source_s3_object,
|
1302
|
+
:status)
|
1303
|
+
SENSITIVE = []
|
1304
|
+
include Aws::Structure
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
# Metadata describing a particular ephemeris.
|
1308
|
+
#
|
1309
|
+
# @!attribute [rw] ephemeris_id
|
1310
|
+
# UUID of a customer-provided ephemeris.
|
1311
|
+
#
|
1312
|
+
# This field is not populated for default ephemerides from Space
|
1313
|
+
# Track.
|
1314
|
+
# @return [String]
|
1315
|
+
#
|
1316
|
+
# @!attribute [rw] epoch
|
1317
|
+
# The epoch of a default, ephemeris from Space Track in UTC.
|
1318
|
+
#
|
1319
|
+
# This field is not populated for customer-provided ephemerides.
|
1320
|
+
# @return [Time]
|
1321
|
+
#
|
1322
|
+
# @!attribute [rw] name
|
1323
|
+
# A name string associated with the ephemeris. Used as a
|
1324
|
+
# human-readable identifier for the ephemeris.
|
1325
|
+
#
|
1326
|
+
# A name is only returned for customer-provider ephemerides that have
|
1327
|
+
# a name associated.
|
1328
|
+
# @return [String]
|
1329
|
+
#
|
1330
|
+
# @!attribute [rw] source
|
1331
|
+
# The `EphemerisSource` that generated a given ephemeris.
|
1332
|
+
# @return [String]
|
1333
|
+
#
|
1334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisMetaData AWS API Documentation
|
1335
|
+
#
|
1336
|
+
class EphemerisMetaData < Struct.new(
|
1337
|
+
:ephemeris_id,
|
1338
|
+
:epoch,
|
1339
|
+
:name,
|
1340
|
+
:source)
|
1341
|
+
SENSITIVE = []
|
1342
|
+
include Aws::Structure
|
1343
|
+
end
|
1344
|
+
|
1345
|
+
# @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.
|
1346
|
+
#
|
1347
|
+
# @!attribute [rw] oem
|
1348
|
+
# Description of ephemeris.
|
1349
|
+
# @return [Types::EphemerisDescription]
|
1350
|
+
#
|
1351
|
+
# @!attribute [rw] tle
|
1352
|
+
# Description of ephemeris.
|
1353
|
+
# @return [Types::EphemerisDescription]
|
1066
1354
|
#
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EphemerisTypeDescription AWS API Documentation
|
1356
|
+
#
|
1357
|
+
class EphemerisTypeDescription < Struct.new(
|
1358
|
+
:oem,
|
1359
|
+
:tle,
|
1360
|
+
:unknown)
|
1070
1361
|
SENSITIVE = []
|
1071
1362
|
include Aws::Structure
|
1363
|
+
include Aws::Structure::Union
|
1364
|
+
|
1365
|
+
class Oem < EphemerisTypeDescription; end
|
1366
|
+
class Tle < EphemerisTypeDescription; end
|
1367
|
+
class Unknown < EphemerisTypeDescription; end
|
1072
1368
|
end
|
1073
1369
|
|
1074
1370
|
# Object that describes the frequency.
|
1075
1371
|
#
|
1076
|
-
# @note When making an API call, you may pass Frequency
|
1077
|
-
# data as a hash:
|
1078
|
-
#
|
1079
|
-
# {
|
1080
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
1081
|
-
# value: 1.0, # required
|
1082
|
-
# }
|
1083
|
-
#
|
1084
1372
|
# @!attribute [rw] units
|
1085
1373
|
# Frequency units.
|
1086
1374
|
# @return [String]
|
@@ -1101,14 +1389,6 @@ module Aws::GroundStation
|
|
1101
1389
|
|
1102
1390
|
# Object that describes the frequency bandwidth.
|
1103
1391
|
#
|
1104
|
-
# @note When making an API call, you may pass FrequencyBandwidth
|
1105
|
-
# data as a hash:
|
1106
|
-
#
|
1107
|
-
# {
|
1108
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
1109
|
-
# value: 1.0, # required
|
1110
|
-
# }
|
1111
|
-
#
|
1112
1392
|
# @!attribute [rw] units
|
1113
1393
|
# Frequency bandwidth units.
|
1114
1394
|
# @return [String]
|
@@ -1136,14 +1416,35 @@ module Aws::GroundStation
|
|
1136
1416
|
include Aws::Structure
|
1137
1417
|
end
|
1138
1418
|
|
1139
|
-
#
|
1140
|
-
#
|
1419
|
+
# @!attribute [rw] agent_id
|
1420
|
+
# UUID of agent to get configuration information for.
|
1421
|
+
# @return [String]
|
1422
|
+
#
|
1423
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentConfigurationRequest AWS API Documentation
|
1424
|
+
#
|
1425
|
+
class GetAgentConfigurationRequest < Struct.new(
|
1426
|
+
:agent_id)
|
1427
|
+
SENSITIVE = []
|
1428
|
+
include Aws::Structure
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# @!attribute [rw] agent_id
|
1432
|
+
# UUID of agent.
|
1433
|
+
# @return [String]
|
1141
1434
|
#
|
1142
|
-
#
|
1143
|
-
#
|
1144
|
-
#
|
1145
|
-
#
|
1435
|
+
# @!attribute [rw] tasking_document
|
1436
|
+
# Tasking document for agent.
|
1437
|
+
# @return [String]
|
1438
|
+
#
|
1439
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentConfigurationResponse AWS API Documentation
|
1146
1440
|
#
|
1441
|
+
class GetAgentConfigurationResponse < Struct.new(
|
1442
|
+
:agent_id,
|
1443
|
+
:tasking_document)
|
1444
|
+
SENSITIVE = []
|
1445
|
+
include Aws::Structure
|
1446
|
+
end
|
1447
|
+
|
1147
1448
|
# @!attribute [rw] config_id
|
1148
1449
|
# UUID of a `Config`.
|
1149
1450
|
# @return [String]
|
@@ -1198,13 +1499,6 @@ module Aws::GroundStation
|
|
1198
1499
|
include Aws::Structure
|
1199
1500
|
end
|
1200
1501
|
|
1201
|
-
# @note When making an API call, you may pass GetDataflowEndpointGroupRequest
|
1202
|
-
# data as a hash:
|
1203
|
-
#
|
1204
|
-
# {
|
1205
|
-
# dataflow_endpoint_group_id: "String", # required
|
1206
|
-
# }
|
1207
|
-
#
|
1208
1502
|
# @!attribute [rw] dataflow_endpoint_group_id
|
1209
1503
|
# UUID of a dataflow endpoint group.
|
1210
1504
|
# @return [String]
|
@@ -1217,6 +1511,22 @@ module Aws::GroundStation
|
|
1217
1511
|
include Aws::Structure
|
1218
1512
|
end
|
1219
1513
|
|
1514
|
+
# @!attribute [rw] contact_post_pass_duration_seconds
|
1515
|
+
# Amount of time, in seconds, after a contact ends that the Ground
|
1516
|
+
# Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
|
1517
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
1518
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
1519
|
+
# `POSTPASS` state.
|
1520
|
+
# @return [Integer]
|
1521
|
+
#
|
1522
|
+
# @!attribute [rw] contact_pre_pass_duration_seconds
|
1523
|
+
# Amount of time, in seconds, before a contact starts that the Ground
|
1524
|
+
# Station Dataflow Endpoint Group will be in a `PREPASS` state. A
|
1525
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
1526
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
1527
|
+
# `PREPASS` state.
|
1528
|
+
# @return [Integer]
|
1529
|
+
#
|
1220
1530
|
# @!attribute [rw] dataflow_endpoint_group_arn
|
1221
1531
|
# ARN of a dataflow endpoint group.
|
1222
1532
|
# @return [String]
|
@@ -1236,6 +1546,8 @@ module Aws::GroundStation
|
|
1236
1546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetDataflowEndpointGroupResponse AWS API Documentation
|
1237
1547
|
#
|
1238
1548
|
class GetDataflowEndpointGroupResponse < Struct.new(
|
1549
|
+
:contact_post_pass_duration_seconds,
|
1550
|
+
:contact_pre_pass_duration_seconds,
|
1239
1551
|
:dataflow_endpoint_group_arn,
|
1240
1552
|
:dataflow_endpoint_group_id,
|
1241
1553
|
:endpoints_details,
|
@@ -1244,14 +1556,6 @@ module Aws::GroundStation
|
|
1244
1556
|
include Aws::Structure
|
1245
1557
|
end
|
1246
1558
|
|
1247
|
-
# @note When making an API call, you may pass GetMinuteUsageRequest
|
1248
|
-
# data as a hash:
|
1249
|
-
#
|
1250
|
-
# {
|
1251
|
-
# month: 1, # required
|
1252
|
-
# year: 1, # required
|
1253
|
-
# }
|
1254
|
-
#
|
1255
1559
|
# @!attribute [rw] month
|
1256
1560
|
# The month being requested, with a value of 1-12.
|
1257
1561
|
# @return [Integer]
|
@@ -1306,13 +1610,6 @@ module Aws::GroundStation
|
|
1306
1610
|
include Aws::Structure
|
1307
1611
|
end
|
1308
1612
|
|
1309
|
-
# @note When making an API call, you may pass GetMissionProfileRequest
|
1310
|
-
# data as a hash:
|
1311
|
-
#
|
1312
|
-
# {
|
1313
|
-
# mission_profile_id: "String", # required
|
1314
|
-
# }
|
1315
|
-
#
|
1316
1613
|
# @!attribute [rw] mission_profile_id
|
1317
1614
|
# UUID of a mission profile.
|
1318
1615
|
# @return [String]
|
@@ -1362,6 +1659,14 @@ module Aws::GroundStation
|
|
1362
1659
|
# Region of a mission profile.
|
1363
1660
|
# @return [String]
|
1364
1661
|
#
|
1662
|
+
# @!attribute [rw] streams_kms_key
|
1663
|
+
# KMS key to use for encrypting streams.
|
1664
|
+
# @return [Types::KmsKey]
|
1665
|
+
#
|
1666
|
+
# @!attribute [rw] streams_kms_role
|
1667
|
+
# Role to use for encrypting streams with KMS key.
|
1668
|
+
# @return [String]
|
1669
|
+
#
|
1365
1670
|
# @!attribute [rw] tags
|
1366
1671
|
# Tags assigned to a mission profile.
|
1367
1672
|
# @return [Hash<String,String>]
|
@@ -1381,19 +1686,14 @@ module Aws::GroundStation
|
|
1381
1686
|
:mission_profile_id,
|
1382
1687
|
:name,
|
1383
1688
|
:region,
|
1689
|
+
:streams_kms_key,
|
1690
|
+
:streams_kms_role,
|
1384
1691
|
:tags,
|
1385
1692
|
:tracking_config_arn)
|
1386
1693
|
SENSITIVE = []
|
1387
1694
|
include Aws::Structure
|
1388
1695
|
end
|
1389
1696
|
|
1390
|
-
# @note When making an API call, you may pass GetSatelliteRequest
|
1391
|
-
# data as a hash:
|
1392
|
-
#
|
1393
|
-
# {
|
1394
|
-
# satellite_id: "String", # required
|
1395
|
-
# }
|
1396
|
-
#
|
1397
1697
|
# @!attribute [rw] satellite_id
|
1398
1698
|
# UUID of a satellite.
|
1399
1699
|
# @return [String]
|
@@ -1406,6 +1706,11 @@ module Aws::GroundStation
|
|
1406
1706
|
include Aws::Structure
|
1407
1707
|
end
|
1408
1708
|
|
1709
|
+
# @!attribute [rw] current_ephemeris
|
1710
|
+
# The current ephemeris being used to compute the trajectory of the
|
1711
|
+
# satellite.
|
1712
|
+
# @return [Types::EphemerisMetaData]
|
1713
|
+
#
|
1409
1714
|
# @!attribute [rw] ground_stations
|
1410
1715
|
# A list of ground stations to which the satellite is on-boarded.
|
1411
1716
|
# @return [Array<String>]
|
@@ -1425,6 +1730,7 @@ module Aws::GroundStation
|
|
1425
1730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetSatelliteResponse AWS API Documentation
|
1426
1731
|
#
|
1427
1732
|
class GetSatelliteResponse < Struct.new(
|
1733
|
+
:current_ephemeris,
|
1428
1734
|
:ground_stations,
|
1429
1735
|
:norad_satellite_id,
|
1430
1736
|
:satellite_arn,
|
@@ -1457,6 +1763,25 @@ module Aws::GroundStation
|
|
1457
1763
|
include Aws::Structure
|
1458
1764
|
end
|
1459
1765
|
|
1766
|
+
# An integer range that has a minimum and maximum value.
|
1767
|
+
#
|
1768
|
+
# @!attribute [rw] maximum
|
1769
|
+
# A maximum value.
|
1770
|
+
# @return [Integer]
|
1771
|
+
#
|
1772
|
+
# @!attribute [rw] minimum
|
1773
|
+
# A minimum value.
|
1774
|
+
# @return [Integer]
|
1775
|
+
#
|
1776
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/IntegerRange AWS API Documentation
|
1777
|
+
#
|
1778
|
+
class IntegerRange < Struct.new(
|
1779
|
+
:maximum,
|
1780
|
+
:minimum)
|
1781
|
+
SENSITIVE = []
|
1782
|
+
include Aws::Structure
|
1783
|
+
end
|
1784
|
+
|
1460
1785
|
# One or more parameters are not valid.
|
1461
1786
|
#
|
1462
1787
|
# @!attribute [rw] message
|
@@ -1474,14 +1799,41 @@ module Aws::GroundStation
|
|
1474
1799
|
include Aws::Structure
|
1475
1800
|
end
|
1476
1801
|
|
1477
|
-
#
|
1478
|
-
#
|
1802
|
+
# AWS Key Management Service (KMS) Key.
|
1803
|
+
#
|
1804
|
+
# @note KmsKey is a union - when making an API calls you must set exactly one of the members.
|
1805
|
+
#
|
1806
|
+
# @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.
|
1807
|
+
#
|
1808
|
+
# @!attribute [rw] kms_alias_arn
|
1809
|
+
# KMS Alias Arn.
|
1810
|
+
# @return [String]
|
1811
|
+
#
|
1812
|
+
# @!attribute [rw] kms_alias_name
|
1813
|
+
# KMS Alias Name.
|
1814
|
+
# @return [String]
|
1815
|
+
#
|
1816
|
+
# @!attribute [rw] kms_key_arn
|
1817
|
+
# KMS Key Arn.
|
1818
|
+
# @return [String]
|
1479
1819
|
#
|
1480
|
-
#
|
1481
|
-
# max_results: 1,
|
1482
|
-
# next_token: "String",
|
1483
|
-
# }
|
1820
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/KmsKey AWS API Documentation
|
1484
1821
|
#
|
1822
|
+
class KmsKey < Struct.new(
|
1823
|
+
:kms_alias_arn,
|
1824
|
+
:kms_alias_name,
|
1825
|
+
:kms_key_arn,
|
1826
|
+
:unknown)
|
1827
|
+
SENSITIVE = []
|
1828
|
+
include Aws::Structure
|
1829
|
+
include Aws::Structure::Union
|
1830
|
+
|
1831
|
+
class KmsAliasArn < KmsKey; end
|
1832
|
+
class KmsAliasName < KmsKey; end
|
1833
|
+
class KmsKeyArn < KmsKey; end
|
1834
|
+
class Unknown < KmsKey; end
|
1835
|
+
end
|
1836
|
+
|
1485
1837
|
# @!attribute [rw] max_results
|
1486
1838
|
# Maximum number of `Configs` returned.
|
1487
1839
|
# @return [Integer]
|
@@ -1518,22 +1870,8 @@ module Aws::GroundStation
|
|
1518
1870
|
include Aws::Structure
|
1519
1871
|
end
|
1520
1872
|
|
1521
|
-
# @note When making an API call, you may pass ListContactsRequest
|
1522
|
-
# data as a hash:
|
1523
|
-
#
|
1524
|
-
# {
|
1525
|
-
# end_time: Time.now, # required
|
1526
|
-
# ground_station: "String",
|
1527
|
-
# max_results: 1,
|
1528
|
-
# mission_profile_arn: "MissionProfileArn",
|
1529
|
-
# next_token: "String",
|
1530
|
-
# satellite_arn: "satelliteArn",
|
1531
|
-
# start_time: Time.now, # required
|
1532
|
-
# status_list: ["AVAILABLE"], # required, accepts AVAILABLE, AWS_CANCELLED, AWS_FAILED, CANCELLED, CANCELLING, COMPLETED, FAILED, FAILED_TO_SCHEDULE, PASS, POSTPASS, PREPASS, SCHEDULED, SCHEDULING
|
1533
|
-
# }
|
1534
|
-
#
|
1535
1873
|
# @!attribute [rw] end_time
|
1536
|
-
# End time of a contact.
|
1874
|
+
# End time of a contact in UTC.
|
1537
1875
|
# @return [Time]
|
1538
1876
|
#
|
1539
1877
|
# @!attribute [rw] ground_station
|
@@ -1558,7 +1896,7 @@ module Aws::GroundStation
|
|
1558
1896
|
# @return [String]
|
1559
1897
|
#
|
1560
1898
|
# @!attribute [rw] start_time
|
1561
|
-
# Start time of a contact.
|
1899
|
+
# Start time of a contact in UTC.
|
1562
1900
|
# @return [Time]
|
1563
1901
|
#
|
1564
1902
|
# @!attribute [rw] status_list
|
@@ -1598,14 +1936,6 @@ module Aws::GroundStation
|
|
1598
1936
|
include Aws::Structure
|
1599
1937
|
end
|
1600
1938
|
|
1601
|
-
# @note When making an API call, you may pass ListDataflowEndpointGroupsRequest
|
1602
|
-
# data as a hash:
|
1603
|
-
#
|
1604
|
-
# {
|
1605
|
-
# max_results: 1,
|
1606
|
-
# next_token: "String",
|
1607
|
-
# }
|
1608
|
-
#
|
1609
1939
|
# @!attribute [rw] max_results
|
1610
1940
|
# Maximum number of dataflow endpoint groups returned.
|
1611
1941
|
# @return [Integer]
|
@@ -1644,15 +1974,64 @@ module Aws::GroundStation
|
|
1644
1974
|
include Aws::Structure
|
1645
1975
|
end
|
1646
1976
|
|
1647
|
-
#
|
1648
|
-
#
|
1977
|
+
# @!attribute [rw] end_time
|
1978
|
+
# The end time to list in UTC. The operation will return an ephemeris
|
1979
|
+
# if its expiration time is within the time range defined by the
|
1980
|
+
# `startTime` and `endTime`.
|
1981
|
+
# @return [Time]
|
1982
|
+
#
|
1983
|
+
# @!attribute [rw] max_results
|
1984
|
+
# Maximum number of ephemerides to return.
|
1985
|
+
# @return [Integer]
|
1986
|
+
#
|
1987
|
+
# @!attribute [rw] next_token
|
1988
|
+
# Pagination token.
|
1989
|
+
# @return [String]
|
1990
|
+
#
|
1991
|
+
# @!attribute [rw] satellite_id
|
1992
|
+
# The AWS Ground Station satellite ID to list ephemeris for.
|
1993
|
+
# @return [String]
|
1994
|
+
#
|
1995
|
+
# @!attribute [rw] start_time
|
1996
|
+
# The start time to list in UTC. The operation will return an
|
1997
|
+
# ephemeris if its expiration time is within the time range defined by
|
1998
|
+
# the `startTime` and `endTime`.
|
1999
|
+
# @return [Time]
|
2000
|
+
#
|
2001
|
+
# @!attribute [rw] status_list
|
2002
|
+
# The list of ephemeris status to return.
|
2003
|
+
# @return [Array<String>]
|
2004
|
+
#
|
2005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListEphemeridesRequest AWS API Documentation
|
2006
|
+
#
|
2007
|
+
class ListEphemeridesRequest < Struct.new(
|
2008
|
+
:end_time,
|
2009
|
+
:max_results,
|
2010
|
+
:next_token,
|
2011
|
+
:satellite_id,
|
2012
|
+
:start_time,
|
2013
|
+
:status_list)
|
2014
|
+
SENSITIVE = []
|
2015
|
+
include Aws::Structure
|
2016
|
+
end
|
2017
|
+
|
2018
|
+
# @!attribute [rw] ephemerides
|
2019
|
+
# List of ephemerides.
|
2020
|
+
# @return [Array<Types::EphemerisItem>]
|
2021
|
+
#
|
2022
|
+
# @!attribute [rw] next_token
|
2023
|
+
# Pagination token.
|
2024
|
+
# @return [String]
|
1649
2025
|
#
|
1650
|
-
#
|
1651
|
-
# max_results: 1,
|
1652
|
-
# next_token: "String",
|
1653
|
-
# satellite_id: "String",
|
1654
|
-
# }
|
2026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListEphemeridesResponse AWS API Documentation
|
1655
2027
|
#
|
2028
|
+
class ListEphemeridesResponse < Struct.new(
|
2029
|
+
:ephemerides,
|
2030
|
+
:next_token)
|
2031
|
+
SENSITIVE = []
|
2032
|
+
include Aws::Structure
|
2033
|
+
end
|
2034
|
+
|
1656
2035
|
# @!attribute [rw] max_results
|
1657
2036
|
# Maximum number of ground stations returned.
|
1658
2037
|
# @return [Integer]
|
@@ -1694,14 +2073,6 @@ module Aws::GroundStation
|
|
1694
2073
|
include Aws::Structure
|
1695
2074
|
end
|
1696
2075
|
|
1697
|
-
# @note When making an API call, you may pass ListMissionProfilesRequest
|
1698
|
-
# data as a hash:
|
1699
|
-
#
|
1700
|
-
# {
|
1701
|
-
# max_results: 1,
|
1702
|
-
# next_token: "String",
|
1703
|
-
# }
|
1704
|
-
#
|
1705
2076
|
# @!attribute [rw] max_results
|
1706
2077
|
# Maximum number of mission profiles returned.
|
1707
2078
|
# @return [Integer]
|
@@ -1738,14 +2109,6 @@ module Aws::GroundStation
|
|
1738
2109
|
include Aws::Structure
|
1739
2110
|
end
|
1740
2111
|
|
1741
|
-
# @note When making an API call, you may pass ListSatellitesRequest
|
1742
|
-
# data as a hash:
|
1743
|
-
#
|
1744
|
-
# {
|
1745
|
-
# max_results: 1,
|
1746
|
-
# next_token: "String",
|
1747
|
-
# }
|
1748
|
-
#
|
1749
2112
|
# @!attribute [rw] max_results
|
1750
2113
|
# Maximum number of satellites returned.
|
1751
2114
|
# @return [Integer]
|
@@ -1782,13 +2145,6 @@ module Aws::GroundStation
|
|
1782
2145
|
include Aws::Structure
|
1783
2146
|
end
|
1784
2147
|
|
1785
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1786
|
-
# data as a hash:
|
1787
|
-
#
|
1788
|
-
# {
|
1789
|
-
# resource_arn: "String", # required
|
1790
|
-
# }
|
1791
|
-
#
|
1792
2148
|
# @!attribute [rw] resource_arn
|
1793
2149
|
# ARN of a resource.
|
1794
2150
|
# @return [String]
|
@@ -1854,22 +2210,97 @@ module Aws::GroundStation
|
|
1854
2210
|
include Aws::Structure
|
1855
2211
|
end
|
1856
2212
|
|
1857
|
-
#
|
1858
|
-
#
|
2213
|
+
# Ephemeris data in Orbit Ephemeris Message (OEM) format.
|
2214
|
+
#
|
2215
|
+
# @!attribute [rw] oem_data
|
2216
|
+
# The data for an OEM ephemeris, supplied directly in the request
|
2217
|
+
# rather than through an S3 object.
|
2218
|
+
# @return [String]
|
2219
|
+
#
|
2220
|
+
# @!attribute [rw] s3_object
|
2221
|
+
# Identifies the S3 object to be used as the ephemeris.
|
2222
|
+
# @return [Types::S3Object]
|
2223
|
+
#
|
2224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/OEMEphemeris AWS API Documentation
|
2225
|
+
#
|
2226
|
+
class OEMEphemeris < Struct.new(
|
2227
|
+
:oem_data,
|
2228
|
+
:s3_object)
|
2229
|
+
SENSITIVE = []
|
2230
|
+
include Aws::Structure
|
2231
|
+
end
|
2232
|
+
|
2233
|
+
# Ingress address of AgentEndpoint with a port range and an optional
|
2234
|
+
# mtu.
|
2235
|
+
#
|
2236
|
+
# @!attribute [rw] mtu
|
2237
|
+
# Maximum transmission unit (MTU) size in bytes of a dataflow
|
2238
|
+
# endpoint.
|
2239
|
+
# @return [Integer]
|
2240
|
+
#
|
2241
|
+
# @!attribute [rw] socket_address
|
2242
|
+
# A ranged socket address.
|
2243
|
+
# @return [Types::RangedSocketAddress]
|
2244
|
+
#
|
2245
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RangedConnectionDetails AWS API Documentation
|
2246
|
+
#
|
2247
|
+
class RangedConnectionDetails < Struct.new(
|
2248
|
+
:mtu,
|
2249
|
+
:socket_address)
|
2250
|
+
SENSITIVE = []
|
2251
|
+
include Aws::Structure
|
2252
|
+
end
|
2253
|
+
|
2254
|
+
# A socket address with a port range.
|
2255
|
+
#
|
2256
|
+
# @!attribute [rw] name
|
2257
|
+
# IPv4 socket address.
|
2258
|
+
# @return [String]
|
2259
|
+
#
|
2260
|
+
# @!attribute [rw] port_range
|
2261
|
+
# Port range of a socket address.
|
2262
|
+
# @return [Types::IntegerRange]
|
2263
|
+
#
|
2264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RangedSocketAddress AWS API Documentation
|
2265
|
+
#
|
2266
|
+
class RangedSocketAddress < Struct.new(
|
2267
|
+
:name,
|
2268
|
+
:port_range)
|
2269
|
+
SENSITIVE = []
|
2270
|
+
include Aws::Structure
|
2271
|
+
end
|
2272
|
+
|
2273
|
+
# @!attribute [rw] agent_details
|
2274
|
+
# Detailed information about the agent being registered.
|
2275
|
+
# @return [Types::AgentDetails]
|
2276
|
+
#
|
2277
|
+
# @!attribute [rw] discovery_data
|
2278
|
+
# Data for associating an agent with the capabilities it is managing.
|
2279
|
+
# @return [Types::DiscoveryData]
|
2280
|
+
#
|
2281
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RegisterAgentRequest AWS API Documentation
|
2282
|
+
#
|
2283
|
+
class RegisterAgentRequest < Struct.new(
|
2284
|
+
:agent_details,
|
2285
|
+
:discovery_data)
|
2286
|
+
SENSITIVE = []
|
2287
|
+
include Aws::Structure
|
2288
|
+
end
|
2289
|
+
|
2290
|
+
# @!attribute [rw] agent_id
|
2291
|
+
# UUID of registered agent.
|
2292
|
+
# @return [String]
|
1859
2293
|
#
|
1860
|
-
#
|
1861
|
-
# end_time: Time.now, # required
|
1862
|
-
# ground_station: "String", # required
|
1863
|
-
# mission_profile_arn: "MissionProfileArn", # required
|
1864
|
-
# satellite_arn: "satelliteArn", # required
|
1865
|
-
# start_time: Time.now, # required
|
1866
|
-
# tags: {
|
1867
|
-
# "String" => "String",
|
1868
|
-
# },
|
1869
|
-
# }
|
2294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RegisterAgentResponse AWS API Documentation
|
1870
2295
|
#
|
2296
|
+
class RegisterAgentResponse < Struct.new(
|
2297
|
+
:agent_id)
|
2298
|
+
SENSITIVE = []
|
2299
|
+
include Aws::Structure
|
2300
|
+
end
|
2301
|
+
|
1871
2302
|
# @!attribute [rw] end_time
|
1872
|
-
# End time of a contact.
|
2303
|
+
# End time of a contact in UTC.
|
1873
2304
|
# @return [Time]
|
1874
2305
|
#
|
1875
2306
|
# @!attribute [rw] ground_station
|
@@ -1885,7 +2316,7 @@ module Aws::GroundStation
|
|
1885
2316
|
# @return [String]
|
1886
2317
|
#
|
1887
2318
|
# @!attribute [rw] start_time
|
1888
|
-
# Start time of a contact.
|
2319
|
+
# Start time of a contact in UTC.
|
1889
2320
|
# @return [Time]
|
1890
2321
|
#
|
1891
2322
|
# @!attribute [rw] tags
|
@@ -1935,16 +2366,31 @@ module Aws::GroundStation
|
|
1935
2366
|
include Aws::Structure
|
1936
2367
|
end
|
1937
2368
|
|
1938
|
-
#
|
2369
|
+
# Object stored in S3 containing ephemeris data.
|
2370
|
+
#
|
2371
|
+
# @!attribute [rw] bucket
|
2372
|
+
# An Amazon S3 Bucket name.
|
2373
|
+
# @return [String]
|
2374
|
+
#
|
2375
|
+
# @!attribute [rw] key
|
2376
|
+
# An Amazon S3 key for the ephemeris.
|
2377
|
+
# @return [String]
|
2378
|
+
#
|
2379
|
+
# @!attribute [rw] version
|
2380
|
+
# For versioned S3 objects, the version to use for the ephemeris.
|
2381
|
+
# @return [String]
|
1939
2382
|
#
|
1940
|
-
# @
|
1941
|
-
# data as a hash:
|
2383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/S3Object AWS API Documentation
|
1942
2384
|
#
|
1943
|
-
|
1944
|
-
|
1945
|
-
|
1946
|
-
|
1947
|
-
|
2385
|
+
class S3Object < Struct.new(
|
2386
|
+
:bucket,
|
2387
|
+
:key,
|
2388
|
+
:version)
|
2389
|
+
SENSITIVE = []
|
2390
|
+
include Aws::Structure
|
2391
|
+
end
|
2392
|
+
|
2393
|
+
# Information about an S3 recording `Config`.
|
1948
2394
|
#
|
1949
2395
|
# @!attribute [rw] bucket_arn
|
1950
2396
|
# ARN of the bucket to record to.
|
@@ -1975,7 +2421,7 @@ module Aws::GroundStation
|
|
1975
2421
|
# @return [String]
|
1976
2422
|
#
|
1977
2423
|
# @!attribute [rw] key_template
|
1978
|
-
#
|
2424
|
+
# Key template used for the S3 Recording Configuration
|
1979
2425
|
# @return [String]
|
1980
2426
|
#
|
1981
2427
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/S3RecordingDetails AWS API Documentation
|
@@ -1989,6 +2435,11 @@ module Aws::GroundStation
|
|
1989
2435
|
|
1990
2436
|
# Item in a list of satellites.
|
1991
2437
|
#
|
2438
|
+
# @!attribute [rw] current_ephemeris
|
2439
|
+
# The current ephemeris being used to compute the trajectory of the
|
2440
|
+
# satellite.
|
2441
|
+
# @return [Types::EphemerisMetaData]
|
2442
|
+
#
|
1992
2443
|
# @!attribute [rw] ground_stations
|
1993
2444
|
# A list of ground stations to which the satellite is on-boarded.
|
1994
2445
|
# @return [Array<String>]
|
@@ -2008,6 +2459,7 @@ module Aws::GroundStation
|
|
2008
2459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/SatelliteListItem AWS API Documentation
|
2009
2460
|
#
|
2010
2461
|
class SatelliteListItem < Struct.new(
|
2462
|
+
:current_ephemeris,
|
2011
2463
|
:ground_stations,
|
2012
2464
|
:norad_satellite_id,
|
2013
2465
|
:satellite_arn,
|
@@ -2018,15 +2470,6 @@ module Aws::GroundStation
|
|
2018
2470
|
|
2019
2471
|
# Information about endpoints.
|
2020
2472
|
#
|
2021
|
-
# @note When making an API call, you may pass SecurityDetails
|
2022
|
-
# data as a hash:
|
2023
|
-
#
|
2024
|
-
# {
|
2025
|
-
# role_arn: "RoleArn", # required
|
2026
|
-
# security_group_ids: ["String"], # required
|
2027
|
-
# subnet_ids: ["String"], # required
|
2028
|
-
# }
|
2029
|
-
#
|
2030
2473
|
# @!attribute [rw] role_arn
|
2031
2474
|
# ARN to a role needed for connecting streams to your instances.
|
2032
2475
|
# @return [String]
|
@@ -2052,14 +2495,6 @@ module Aws::GroundStation
|
|
2052
2495
|
|
2053
2496
|
# Information about the socket address.
|
2054
2497
|
#
|
2055
|
-
# @note When making an API call, you may pass SocketAddress
|
2056
|
-
# data as a hash:
|
2057
|
-
#
|
2058
|
-
# {
|
2059
|
-
# name: "String", # required
|
2060
|
-
# port: 1, # required
|
2061
|
-
# }
|
2062
|
-
#
|
2063
2498
|
# @!attribute [rw] name
|
2064
2499
|
# Name of a socket address.
|
2065
2500
|
# @return [String]
|
@@ -2080,8 +2515,8 @@ module Aws::GroundStation
|
|
2080
2515
|
# Dataflow details for the source side.
|
2081
2516
|
#
|
2082
2517
|
# @!attribute [rw] config_details
|
2083
|
-
# Additional details for a `Config`, if type is dataflow
|
2084
|
-
# antenna
|
2518
|
+
# Additional details for a `Config`, if type is `dataflow-endpoint` or
|
2519
|
+
# `antenna-downlink-demod-decode`
|
2085
2520
|
# @return [Types::ConfigDetails]
|
2086
2521
|
#
|
2087
2522
|
# @!attribute [rw] config_id
|
@@ -2109,21 +2544,6 @@ module Aws::GroundStation
|
|
2109
2544
|
|
2110
2545
|
# Object that describes a spectral `Config`.
|
2111
2546
|
#
|
2112
|
-
# @note When making an API call, you may pass SpectrumConfig
|
2113
|
-
# data as a hash:
|
2114
|
-
#
|
2115
|
-
# {
|
2116
|
-
# bandwidth: { # required
|
2117
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
2118
|
-
# value: 1.0, # required
|
2119
|
-
# },
|
2120
|
-
# center_frequency: { # required
|
2121
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
2122
|
-
# value: 1.0, # required
|
2123
|
-
# },
|
2124
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
2125
|
-
# }
|
2126
|
-
#
|
2127
2547
|
# @!attribute [rw] bandwidth
|
2128
2548
|
# Bandwidth of a spectral `Config`. AWS Ground Station currently has
|
2129
2549
|
# the following bandwidth limitations:
|
@@ -2159,16 +2579,50 @@ module Aws::GroundStation
|
|
2159
2579
|
include Aws::Structure
|
2160
2580
|
end
|
2161
2581
|
|
2162
|
-
#
|
2163
|
-
#
|
2582
|
+
# Two-line element set (TLE) data.
|
2583
|
+
#
|
2584
|
+
# @!attribute [rw] tle_line_1
|
2585
|
+
# First line of two-line element set (TLE) data.
|
2586
|
+
# @return [String]
|
2587
|
+
#
|
2588
|
+
# @!attribute [rw] tle_line_2
|
2589
|
+
# Second line of two-line element set (TLE) data.
|
2590
|
+
# @return [String]
|
2591
|
+
#
|
2592
|
+
# @!attribute [rw] valid_time_range
|
2593
|
+
# The valid time range for the TLE. Gaps or overlap are not permitted.
|
2594
|
+
# @return [Types::TimeRange]
|
2595
|
+
#
|
2596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TLEData AWS API Documentation
|
2597
|
+
#
|
2598
|
+
class TLEData < Struct.new(
|
2599
|
+
:tle_line_1,
|
2600
|
+
:tle_line_2,
|
2601
|
+
:valid_time_range)
|
2602
|
+
SENSITIVE = []
|
2603
|
+
include Aws::Structure
|
2604
|
+
end
|
2605
|
+
|
2606
|
+
# Two-line element set (TLE) ephemeris.
|
2607
|
+
#
|
2608
|
+
# @!attribute [rw] s3_object
|
2609
|
+
# Identifies the S3 object to be used as the ephemeris.
|
2610
|
+
# @return [Types::S3Object]
|
2164
2611
|
#
|
2165
|
-
#
|
2166
|
-
#
|
2167
|
-
#
|
2168
|
-
#
|
2169
|
-
# },
|
2170
|
-
# }
|
2612
|
+
# @!attribute [rw] tle_data
|
2613
|
+
# The data for a TLE ephemeris, supplied directly in the request
|
2614
|
+
# rather than through an S3 object.
|
2615
|
+
# @return [Array<Types::TLEData>]
|
2171
2616
|
#
|
2617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TLEEphemeris AWS API Documentation
|
2618
|
+
#
|
2619
|
+
class TLEEphemeris < Struct.new(
|
2620
|
+
:s3_object,
|
2621
|
+
:tle_data)
|
2622
|
+
SENSITIVE = []
|
2623
|
+
include Aws::Structure
|
2624
|
+
end
|
2625
|
+
|
2172
2626
|
# @!attribute [rw] resource_arn
|
2173
2627
|
# ARN of a resource tag.
|
2174
2628
|
# @return [String]
|
@@ -2190,15 +2644,27 @@ module Aws::GroundStation
|
|
2190
2644
|
#
|
2191
2645
|
class TagResourceResponse < Aws::EmptyStructure; end
|
2192
2646
|
|
2193
|
-
#
|
2194
|
-
#
|
2647
|
+
# A time range with a start and end time.
|
2648
|
+
#
|
2649
|
+
# @!attribute [rw] end_time
|
2650
|
+
# Time in UTC at which the time range ends.
|
2651
|
+
# @return [Time]
|
2195
2652
|
#
|
2196
|
-
#
|
2197
|
-
#
|
2653
|
+
# @!attribute [rw] start_time
|
2654
|
+
# Time in UTC at which the time range starts.
|
2655
|
+
# @return [Time]
|
2198
2656
|
#
|
2199
|
-
#
|
2200
|
-
#
|
2201
|
-
|
2657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TimeRange AWS API Documentation
|
2658
|
+
#
|
2659
|
+
class TimeRange < Struct.new(
|
2660
|
+
:end_time,
|
2661
|
+
:start_time)
|
2662
|
+
SENSITIVE = []
|
2663
|
+
include Aws::Structure
|
2664
|
+
end
|
2665
|
+
|
2666
|
+
# Object that determines whether tracking should be used during a
|
2667
|
+
# contact executed with this `Config` in the mission profile.
|
2202
2668
|
#
|
2203
2669
|
# @!attribute [rw] autotrack
|
2204
2670
|
# Current setting for autotrack.
|
@@ -2212,14 +2678,6 @@ module Aws::GroundStation
|
|
2212
2678
|
include Aws::Structure
|
2213
2679
|
end
|
2214
2680
|
|
2215
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
2216
|
-
# data as a hash:
|
2217
|
-
#
|
2218
|
-
# {
|
2219
|
-
# resource_arn: "String", # required
|
2220
|
-
# tag_keys: ["String"], # required
|
2221
|
-
# }
|
2222
|
-
#
|
2223
2681
|
# @!attribute [rw] resource_arn
|
2224
2682
|
# ARN of a resource.
|
2225
2683
|
# @return [String]
|
@@ -2241,79 +2699,45 @@ module Aws::GroundStation
|
|
2241
2699
|
#
|
2242
2700
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
2243
2701
|
|
2244
|
-
#
|
2245
|
-
#
|
2246
|
-
#
|
2247
|
-
#
|
2248
|
-
#
|
2249
|
-
#
|
2250
|
-
#
|
2251
|
-
#
|
2252
|
-
#
|
2253
|
-
#
|
2254
|
-
#
|
2255
|
-
#
|
2256
|
-
#
|
2257
|
-
#
|
2258
|
-
#
|
2259
|
-
#
|
2260
|
-
#
|
2261
|
-
#
|
2262
|
-
|
2263
|
-
|
2264
|
-
|
2265
|
-
|
2266
|
-
|
2267
|
-
|
2268
|
-
|
2269
|
-
|
2270
|
-
|
2271
|
-
#
|
2272
|
-
#
|
2273
|
-
#
|
2274
|
-
# center_frequency: { # required
|
2275
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
2276
|
-
# value: 1.0, # required
|
2277
|
-
# },
|
2278
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
2279
|
-
# },
|
2280
|
-
# },
|
2281
|
-
# antenna_uplink_config: {
|
2282
|
-
# spectrum_config: { # required
|
2283
|
-
# center_frequency: { # required
|
2284
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
2285
|
-
# value: 1.0, # required
|
2286
|
-
# },
|
2287
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
2288
|
-
# },
|
2289
|
-
# target_eirp: { # required
|
2290
|
-
# units: "dBW", # required, accepts dBW
|
2291
|
-
# value: 1.0, # required
|
2292
|
-
# },
|
2293
|
-
# transmit_disabled: false,
|
2294
|
-
# },
|
2295
|
-
# dataflow_endpoint_config: {
|
2296
|
-
# dataflow_endpoint_name: "String", # required
|
2297
|
-
# dataflow_endpoint_region: "String",
|
2298
|
-
# },
|
2299
|
-
# s3_recording_config: {
|
2300
|
-
# bucket_arn: "BucketArn", # required
|
2301
|
-
# prefix: "S3KeyPrefix",
|
2302
|
-
# role_arn: "RoleArn", # required
|
2303
|
-
# },
|
2304
|
-
# tracking_config: {
|
2305
|
-
# autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
|
2306
|
-
# },
|
2307
|
-
# uplink_echo_config: {
|
2308
|
-
# antenna_uplink_config_arn: "ConfigArn", # required
|
2309
|
-
# enabled: false, # required
|
2310
|
-
# },
|
2311
|
-
# },
|
2312
|
-
# config_id: "String", # required
|
2313
|
-
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
2314
|
-
# name: "SafeName", # required
|
2315
|
-
# }
|
2702
|
+
# @!attribute [rw] agent_id
|
2703
|
+
# UUID of agent to update.
|
2704
|
+
# @return [String]
|
2705
|
+
#
|
2706
|
+
# @!attribute [rw] aggregate_status
|
2707
|
+
# Aggregate status for agent.
|
2708
|
+
# @return [Types::AggregateStatus]
|
2709
|
+
#
|
2710
|
+
# @!attribute [rw] component_statuses
|
2711
|
+
# List of component statuses for agent.
|
2712
|
+
# @return [Array<Types::ComponentStatusData>]
|
2713
|
+
#
|
2714
|
+
# @!attribute [rw] task_id
|
2715
|
+
# GUID of agent task.
|
2716
|
+
# @return [String]
|
2717
|
+
#
|
2718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateAgentStatusRequest AWS API Documentation
|
2719
|
+
#
|
2720
|
+
class UpdateAgentStatusRequest < Struct.new(
|
2721
|
+
:agent_id,
|
2722
|
+
:aggregate_status,
|
2723
|
+
:component_statuses,
|
2724
|
+
:task_id)
|
2725
|
+
SENSITIVE = []
|
2726
|
+
include Aws::Structure
|
2727
|
+
end
|
2728
|
+
|
2729
|
+
# @!attribute [rw] agent_id
|
2730
|
+
# UUID of updated agent.
|
2731
|
+
# @return [String]
|
2316
2732
|
#
|
2733
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateAgentStatusResponse AWS API Documentation
|
2734
|
+
#
|
2735
|
+
class UpdateAgentStatusResponse < Struct.new(
|
2736
|
+
:agent_id)
|
2737
|
+
SENSITIVE = []
|
2738
|
+
include Aws::Structure
|
2739
|
+
end
|
2740
|
+
|
2317
2741
|
# @!attribute [rw] config_data
|
2318
2742
|
# Parameters of a `Config`.
|
2319
2743
|
# @return [Types::ConfigTypeData]
|
@@ -2341,21 +2765,41 @@ module Aws::GroundStation
|
|
2341
2765
|
include Aws::Structure
|
2342
2766
|
end
|
2343
2767
|
|
2344
|
-
#
|
2345
|
-
#
|
2768
|
+
# @!attribute [rw] enabled
|
2769
|
+
# Whether the ephemeris is enabled or not. Changing this value will
|
2770
|
+
# not require the ephemeris to be re-validated.
|
2771
|
+
# @return [Boolean]
|
2772
|
+
#
|
2773
|
+
# @!attribute [rw] ephemeris_id
|
2774
|
+
# The AWS Ground Station ephemeris ID.
|
2775
|
+
# @return [String]
|
2776
|
+
#
|
2777
|
+
# @!attribute [rw] name
|
2778
|
+
# A name string associated with the ephemeris. Used as a
|
2779
|
+
# human-readable identifier for the ephemeris.
|
2780
|
+
# @return [String]
|
2346
2781
|
#
|
2347
|
-
#
|
2348
|
-
#
|
2349
|
-
#
|
2350
|
-
# dataflow_edges: [
|
2351
|
-
# ["ConfigArn"],
|
2352
|
-
# ],
|
2353
|
-
# minimum_viable_contact_duration_seconds: 1,
|
2354
|
-
# mission_profile_id: "String", # required
|
2355
|
-
# name: "SafeName",
|
2356
|
-
# tracking_config_arn: "ConfigArn",
|
2357
|
-
# }
|
2782
|
+
# @!attribute [rw] priority
|
2783
|
+
# Customer-provided priority score to establish the order in which
|
2784
|
+
# overlapping ephemerides should be used.
|
2358
2785
|
#
|
2786
|
+
# The default for customer-provided ephemeris priority is 1, and
|
2787
|
+
# higher numbers take precedence.
|
2788
|
+
#
|
2789
|
+
# Priority must be 1 or greater
|
2790
|
+
# @return [Integer]
|
2791
|
+
#
|
2792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateEphemerisRequest AWS API Documentation
|
2793
|
+
#
|
2794
|
+
class UpdateEphemerisRequest < Struct.new(
|
2795
|
+
:enabled,
|
2796
|
+
:ephemeris_id,
|
2797
|
+
:name,
|
2798
|
+
:priority)
|
2799
|
+
SENSITIVE = []
|
2800
|
+
include Aws::Structure
|
2801
|
+
end
|
2802
|
+
|
2359
2803
|
# @!attribute [rw] contact_post_pass_duration_seconds
|
2360
2804
|
# Amount of time after a contact ends that you’d like to receive a
|
2361
2805
|
# CloudWatch event indicating the pass has finished.
|
@@ -2385,6 +2829,14 @@ module Aws::GroundStation
|
|
2385
2829
|
# Name of a mission profile.
|
2386
2830
|
# @return [String]
|
2387
2831
|
#
|
2832
|
+
# @!attribute [rw] streams_kms_key
|
2833
|
+
# KMS key to use for encrypting streams.
|
2834
|
+
# @return [Types::KmsKey]
|
2835
|
+
#
|
2836
|
+
# @!attribute [rw] streams_kms_role
|
2837
|
+
# Role to use for encrypting streams with KMS key.
|
2838
|
+
# @return [String]
|
2839
|
+
#
|
2388
2840
|
# @!attribute [rw] tracking_config_arn
|
2389
2841
|
# ARN of a tracking `Config`.
|
2390
2842
|
# @return [String]
|
@@ -2398,6 +2850,8 @@ module Aws::GroundStation
|
|
2398
2850
|
:minimum_viable_contact_duration_seconds,
|
2399
2851
|
:mission_profile_id,
|
2400
2852
|
:name,
|
2853
|
+
:streams_kms_key,
|
2854
|
+
:streams_kms_role,
|
2401
2855
|
:tracking_config_arn)
|
2402
2856
|
SENSITIVE = []
|
2403
2857
|
include Aws::Structure
|
@@ -2409,14 +2863,6 @@ module Aws::GroundStation
|
|
2409
2863
|
# specified `AntennaUplinkConfigArn`, are used when this
|
2410
2864
|
# `UplinkEchoConfig` is used in a contact.
|
2411
2865
|
#
|
2412
|
-
# @note When making an API call, you may pass UplinkEchoConfig
|
2413
|
-
# data as a hash:
|
2414
|
-
#
|
2415
|
-
# {
|
2416
|
-
# antenna_uplink_config_arn: "ConfigArn", # required
|
2417
|
-
# enabled: false, # required
|
2418
|
-
# }
|
2419
|
-
#
|
2420
2866
|
# @!attribute [rw] antenna_uplink_config_arn
|
2421
2867
|
# ARN of an uplink `Config`.
|
2422
2868
|
# @return [String]
|
@@ -2436,17 +2882,6 @@ module Aws::GroundStation
|
|
2436
2882
|
|
2437
2883
|
# Information about the uplink spectral `Config`.
|
2438
2884
|
#
|
2439
|
-
# @note When making an API call, you may pass UplinkSpectrumConfig
|
2440
|
-
# data as a hash:
|
2441
|
-
#
|
2442
|
-
# {
|
2443
|
-
# center_frequency: { # required
|
2444
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
2445
|
-
# value: 1.0, # required
|
2446
|
-
# },
|
2447
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
2448
|
-
# }
|
2449
|
-
#
|
2450
2885
|
# @!attribute [rw] center_frequency
|
2451
2886
|
# Center frequency of an uplink spectral `Config`. Valid values are
|
2452
2887
|
# between 2025 to 2120 MHz.
|