@aws-sdk/client-groundstation 3.295.0 → 3.297.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.
- package/dist-types/GroundStation.d.ts +34 -0
- package/dist-types/GroundStationClient.d.ts +24 -4
- package/dist-types/commands/CancelContactCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfigCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataflowEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateEphemerisCommand.d.ts +16 -0
- package/dist-types/commands/CreateMissionProfileCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDataflowEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEphemerisCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMissionProfileCommand.d.ts +16 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEphemerisCommand.d.ts +16 -0
- package/dist-types/commands/GetAgentConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigCommand.d.ts +16 -0
- package/dist-types/commands/GetDataflowEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetMinuteUsageCommand.d.ts +16 -0
- package/dist-types/commands/GetMissionProfileCommand.d.ts +16 -0
- package/dist-types/commands/GetSatelliteCommand.d.ts +16 -0
- package/dist-types/commands/ListConfigsCommand.d.ts +16 -0
- package/dist-types/commands/ListContactsCommand.d.ts +16 -0
- package/dist-types/commands/ListDataflowEndpointGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListEphemeridesCommand.d.ts +16 -0
- package/dist-types/commands/ListGroundStationsCommand.d.ts +16 -0
- package/dist-types/commands/ListMissionProfilesCommand.d.ts +16 -0
- package/dist-types/commands/ListSatellitesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RegisterAgentCommand.d.ts +16 -0
- package/dist-types/commands/ReserveContactCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAgentStatusCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEphemerisCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMissionProfileCommand.d.ts +16 -0
- package/dist-types/models/GroundStationServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +203 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListConfigsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListContactsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDataflowEndpointGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEphemeridesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGroundStationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMissionProfilesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSatellitesPaginator.d.ts +3 -0
- package/package.json +30 -30
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>Dependency encountered an error.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class DependencyException extends __BaseException {
|
|
@@ -15,12 +16,18 @@ export declare class DependencyException extends __BaseException {
|
|
|
15
16
|
*/
|
|
16
17
|
constructor(opts: __ExceptionOptionType<DependencyException, __BaseException>);
|
|
17
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
18
22
|
export interface GetAgentConfigurationRequest {
|
|
19
23
|
/**
|
|
20
24
|
* <p>UUID of agent to get configuration information for.</p>
|
|
21
25
|
*/
|
|
22
26
|
agentId: string | undefined;
|
|
23
27
|
}
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
24
31
|
export interface GetAgentConfigurationResponse {
|
|
25
32
|
/**
|
|
26
33
|
* <p>UUID of agent.</p>
|
|
@@ -32,6 +39,7 @@ export interface GetAgentConfigurationResponse {
|
|
|
32
39
|
taskingDocument?: string;
|
|
33
40
|
}
|
|
34
41
|
/**
|
|
42
|
+
* @public
|
|
35
43
|
* <p>One or more parameters are not valid.</p>
|
|
36
44
|
*/
|
|
37
45
|
export declare class InvalidParameterException extends __BaseException {
|
|
@@ -47,6 +55,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
47
55
|
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
48
56
|
}
|
|
49
57
|
/**
|
|
58
|
+
* @public
|
|
50
59
|
* <p>Resource was not found.</p>
|
|
51
60
|
*/
|
|
52
61
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -57,12 +66,16 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
57
66
|
*/
|
|
58
67
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
59
68
|
}
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
60
72
|
export declare enum ComponentType {
|
|
61
73
|
DIGITIZER = "DIGITIZER",
|
|
62
74
|
LAMINAR_FLOW = "LAMINAR_FLOW",
|
|
63
75
|
PRISM = "PRISM"
|
|
64
76
|
}
|
|
65
77
|
/**
|
|
78
|
+
* @public
|
|
66
79
|
* <p>Version information for agent components.</p>
|
|
67
80
|
*/
|
|
68
81
|
export interface ComponentVersion {
|
|
@@ -76,6 +89,7 @@ export interface ComponentVersion {
|
|
|
76
89
|
versions: string[] | undefined;
|
|
77
90
|
}
|
|
78
91
|
/**
|
|
92
|
+
* @public
|
|
79
93
|
* <p>Detailed information about the agent.</p>
|
|
80
94
|
*/
|
|
81
95
|
export interface AgentDetails {
|
|
@@ -101,6 +115,7 @@ export interface AgentDetails {
|
|
|
101
115
|
componentVersions: ComponentVersion[] | undefined;
|
|
102
116
|
}
|
|
103
117
|
/**
|
|
118
|
+
* @public
|
|
104
119
|
* <p>Data for agent discovery.</p>
|
|
105
120
|
*/
|
|
106
121
|
export interface DiscoveryData {
|
|
@@ -117,6 +132,9 @@ export interface DiscoveryData {
|
|
|
117
132
|
*/
|
|
118
133
|
capabilityArns: string[] | undefined;
|
|
119
134
|
}
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
120
138
|
export interface RegisterAgentRequest {
|
|
121
139
|
/**
|
|
122
140
|
* <p>Data for associating and agent with the capabilities it is managing.</p>
|
|
@@ -127,12 +145,18 @@ export interface RegisterAgentRequest {
|
|
|
127
145
|
*/
|
|
128
146
|
agentDetails: AgentDetails | undefined;
|
|
129
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
130
151
|
export interface RegisterAgentResponse {
|
|
131
152
|
/**
|
|
132
153
|
* <p>UUID of registered agent.</p>
|
|
133
154
|
*/
|
|
134
155
|
agentId?: string;
|
|
135
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
136
160
|
export declare enum AgentStatus {
|
|
137
161
|
ACTIVE = "ACTIVE",
|
|
138
162
|
FAILED = "FAILED",
|
|
@@ -140,6 +164,7 @@ export declare enum AgentStatus {
|
|
|
140
164
|
SUCCESS = "SUCCESS"
|
|
141
165
|
}
|
|
142
166
|
/**
|
|
167
|
+
* @public
|
|
143
168
|
* <p>Aggregate status of Agent components.</p>
|
|
144
169
|
*/
|
|
145
170
|
export interface AggregateStatus {
|
|
@@ -153,6 +178,7 @@ export interface AggregateStatus {
|
|
|
153
178
|
signatureMap?: Record<string, boolean>;
|
|
154
179
|
}
|
|
155
180
|
/**
|
|
181
|
+
* @public
|
|
156
182
|
* <p>Data on the status of agent components.</p>
|
|
157
183
|
*/
|
|
158
184
|
export interface ComponentStatusData {
|
|
@@ -185,6 +211,9 @@ export interface ComponentStatusData {
|
|
|
185
211
|
*/
|
|
186
212
|
dataflowId: string | undefined;
|
|
187
213
|
}
|
|
214
|
+
/**
|
|
215
|
+
* @public
|
|
216
|
+
*/
|
|
188
217
|
export interface UpdateAgentStatusRequest {
|
|
189
218
|
/**
|
|
190
219
|
* <p>UUID of agent to update.</p>
|
|
@@ -203,17 +232,24 @@ export interface UpdateAgentStatusRequest {
|
|
|
203
232
|
*/
|
|
204
233
|
componentStatuses: ComponentStatusData[] | undefined;
|
|
205
234
|
}
|
|
235
|
+
/**
|
|
236
|
+
* @public
|
|
237
|
+
*/
|
|
206
238
|
export interface UpdateAgentStatusResponse {
|
|
207
239
|
/**
|
|
208
240
|
* <p>UUID of updated agent.</p>
|
|
209
241
|
*/
|
|
210
242
|
agentId: string | undefined;
|
|
211
243
|
}
|
|
244
|
+
/**
|
|
245
|
+
* @public
|
|
246
|
+
*/
|
|
212
247
|
export declare enum AngleUnits {
|
|
213
248
|
DEGREE_ANGLE = "DEGREE_ANGLE",
|
|
214
249
|
RADIAN = "RADIAN"
|
|
215
250
|
}
|
|
216
251
|
/**
|
|
252
|
+
* @public
|
|
217
253
|
* <p>Details about an antenna demod decode <code>Config</code> used in a contact.</p>
|
|
218
254
|
*/
|
|
219
255
|
export interface AntennaDemodDecodeDetails {
|
|
@@ -222,12 +258,16 @@ export interface AntennaDemodDecodeDetails {
|
|
|
222
258
|
*/
|
|
223
259
|
outputNode?: string;
|
|
224
260
|
}
|
|
261
|
+
/**
|
|
262
|
+
* @public
|
|
263
|
+
*/
|
|
225
264
|
export declare enum BandwidthUnits {
|
|
226
265
|
GHZ = "GHz",
|
|
227
266
|
KHZ = "kHz",
|
|
228
267
|
MHZ = "MHz"
|
|
229
268
|
}
|
|
230
269
|
/**
|
|
270
|
+
* @public
|
|
231
271
|
* <p>Object that describes the frequency bandwidth. </p>
|
|
232
272
|
*/
|
|
233
273
|
export interface FrequencyBandwidth {
|
|
@@ -251,12 +291,16 @@ export interface FrequencyBandwidth {
|
|
|
251
291
|
*/
|
|
252
292
|
units: BandwidthUnits | string | undefined;
|
|
253
293
|
}
|
|
294
|
+
/**
|
|
295
|
+
* @public
|
|
296
|
+
*/
|
|
254
297
|
export declare enum FrequencyUnits {
|
|
255
298
|
GHZ = "GHz",
|
|
256
299
|
KHZ = "kHz",
|
|
257
300
|
MHZ = "MHz"
|
|
258
301
|
}
|
|
259
302
|
/**
|
|
303
|
+
* @public
|
|
260
304
|
* <p>Object that describes the frequency.</p>
|
|
261
305
|
*/
|
|
262
306
|
export interface Frequency {
|
|
@@ -269,12 +313,16 @@ export interface Frequency {
|
|
|
269
313
|
*/
|
|
270
314
|
units: FrequencyUnits | string | undefined;
|
|
271
315
|
}
|
|
316
|
+
/**
|
|
317
|
+
* @public
|
|
318
|
+
*/
|
|
272
319
|
export declare enum Polarization {
|
|
273
320
|
LEFT_HAND = "LEFT_HAND",
|
|
274
321
|
NONE = "NONE",
|
|
275
322
|
RIGHT_HAND = "RIGHT_HAND"
|
|
276
323
|
}
|
|
277
324
|
/**
|
|
325
|
+
* @public
|
|
278
326
|
* <p>Object that describes a spectral <code>Config</code>.</p>
|
|
279
327
|
*/
|
|
280
328
|
export interface SpectrumConfig {
|
|
@@ -303,6 +351,7 @@ export interface SpectrumConfig {
|
|
|
303
351
|
polarization?: Polarization | string;
|
|
304
352
|
}
|
|
305
353
|
/**
|
|
354
|
+
* @public
|
|
306
355
|
* <p>Information about how AWS Ground Station should configure an
|
|
307
356
|
* antenna for downlink during a contact.</p>
|
|
308
357
|
*/
|
|
@@ -313,6 +362,7 @@ export interface AntennaDownlinkConfig {
|
|
|
313
362
|
spectrumConfig: SpectrumConfig | undefined;
|
|
314
363
|
}
|
|
315
364
|
/**
|
|
365
|
+
* @public
|
|
316
366
|
* <p>Information about the decode <code>Config</code>.</p>
|
|
317
367
|
*/
|
|
318
368
|
export interface DecodeConfig {
|
|
@@ -322,6 +372,7 @@ export interface DecodeConfig {
|
|
|
322
372
|
unvalidatedJSON: string | undefined;
|
|
323
373
|
}
|
|
324
374
|
/**
|
|
375
|
+
* @public
|
|
325
376
|
* <p>Information about the demodulation <code>Config</code>.</p>
|
|
326
377
|
*/
|
|
327
378
|
export interface DemodulationConfig {
|
|
@@ -331,6 +382,7 @@ export interface DemodulationConfig {
|
|
|
331
382
|
unvalidatedJSON: string | undefined;
|
|
332
383
|
}
|
|
333
384
|
/**
|
|
385
|
+
* @public
|
|
334
386
|
* <p>Information about how AWS Ground Station should configure an antenna for downlink demod decode during a contact.</p>
|
|
335
387
|
*/
|
|
336
388
|
export interface AntennaDownlinkDemodDecodeConfig {
|
|
@@ -348,6 +400,7 @@ export interface AntennaDownlinkDemodDecodeConfig {
|
|
|
348
400
|
decodeConfig: DecodeConfig | undefined;
|
|
349
401
|
}
|
|
350
402
|
/**
|
|
403
|
+
* @public
|
|
351
404
|
* <p>Information about the uplink spectral <code>Config</code>.</p>
|
|
352
405
|
*/
|
|
353
406
|
export interface UplinkSpectrumConfig {
|
|
@@ -360,10 +413,14 @@ export interface UplinkSpectrumConfig {
|
|
|
360
413
|
*/
|
|
361
414
|
polarization?: Polarization | string;
|
|
362
415
|
}
|
|
416
|
+
/**
|
|
417
|
+
* @public
|
|
418
|
+
*/
|
|
363
419
|
export declare enum EirpUnits {
|
|
364
420
|
DBW = "dBW"
|
|
365
421
|
}
|
|
366
422
|
/**
|
|
423
|
+
* @public
|
|
367
424
|
* <p>Object that represents EIRP.</p>
|
|
368
425
|
*/
|
|
369
426
|
export interface Eirp {
|
|
@@ -377,6 +434,7 @@ export interface Eirp {
|
|
|
377
434
|
units: EirpUnits | string | undefined;
|
|
378
435
|
}
|
|
379
436
|
/**
|
|
437
|
+
* @public
|
|
380
438
|
* <p>Information about the uplink <code>Config</code> of an antenna.</p>
|
|
381
439
|
*/
|
|
382
440
|
export interface AntennaUplinkConfig {
|
|
@@ -393,11 +451,15 @@ export interface AntennaUplinkConfig {
|
|
|
393
451
|
*/
|
|
394
452
|
targetEirp: Eirp | undefined;
|
|
395
453
|
}
|
|
454
|
+
/**
|
|
455
|
+
* @public
|
|
456
|
+
*/
|
|
396
457
|
export declare enum AuditResults {
|
|
397
458
|
HEALTHY = "HEALTHY",
|
|
398
459
|
UNHEALTHY = "UNHEALTHY"
|
|
399
460
|
}
|
|
400
461
|
/**
|
|
462
|
+
* @public
|
|
401
463
|
* <p>Information about the socket address.</p>
|
|
402
464
|
*/
|
|
403
465
|
export interface SocketAddress {
|
|
@@ -411,6 +473,7 @@ export interface SocketAddress {
|
|
|
411
473
|
port: number | undefined;
|
|
412
474
|
}
|
|
413
475
|
/**
|
|
476
|
+
* @public
|
|
414
477
|
* <p>Egress address of AgentEndpoint with an optional mtu.</p>
|
|
415
478
|
*/
|
|
416
479
|
export interface ConnectionDetails {
|
|
@@ -424,6 +487,7 @@ export interface ConnectionDetails {
|
|
|
424
487
|
mtu?: number;
|
|
425
488
|
}
|
|
426
489
|
/**
|
|
490
|
+
* @public
|
|
427
491
|
* <p>An integer range that has a minimum and maximum value.</p>
|
|
428
492
|
*/
|
|
429
493
|
export interface IntegerRange {
|
|
@@ -437,6 +501,7 @@ export interface IntegerRange {
|
|
|
437
501
|
maximum: number | undefined;
|
|
438
502
|
}
|
|
439
503
|
/**
|
|
504
|
+
* @public
|
|
440
505
|
* <p>A socket address with a port range.</p>
|
|
441
506
|
*/
|
|
442
507
|
export interface RangedSocketAddress {
|
|
@@ -450,6 +515,7 @@ export interface RangedSocketAddress {
|
|
|
450
515
|
portRange: IntegerRange | undefined;
|
|
451
516
|
}
|
|
452
517
|
/**
|
|
518
|
+
* @public
|
|
453
519
|
* <p>Ingress address of AgentEndpoint with a port range and an optional mtu.</p>
|
|
454
520
|
*/
|
|
455
521
|
export interface RangedConnectionDetails {
|
|
@@ -463,6 +529,7 @@ export interface RangedConnectionDetails {
|
|
|
463
529
|
mtu?: number;
|
|
464
530
|
}
|
|
465
531
|
/**
|
|
532
|
+
* @public
|
|
466
533
|
* <p>Information about AwsGroundStationAgentEndpoint.</p>
|
|
467
534
|
*/
|
|
468
535
|
export interface AwsGroundStationAgentEndpoint {
|
|
@@ -488,6 +555,7 @@ export interface AwsGroundStationAgentEndpoint {
|
|
|
488
555
|
auditResults?: AuditResults | string;
|
|
489
556
|
}
|
|
490
557
|
/**
|
|
558
|
+
* @public
|
|
491
559
|
* <p/>
|
|
492
560
|
*/
|
|
493
561
|
export interface CancelContactRequest {
|
|
@@ -497,6 +565,7 @@ export interface CancelContactRequest {
|
|
|
497
565
|
contactId: string | undefined;
|
|
498
566
|
}
|
|
499
567
|
/**
|
|
568
|
+
* @public
|
|
500
569
|
* <p/>
|
|
501
570
|
*/
|
|
502
571
|
export interface ContactIdResponse {
|
|
@@ -505,6 +574,9 @@ export interface ContactIdResponse {
|
|
|
505
574
|
*/
|
|
506
575
|
contactId?: string;
|
|
507
576
|
}
|
|
577
|
+
/**
|
|
578
|
+
* @public
|
|
579
|
+
*/
|
|
508
580
|
export declare enum ConfigCapabilityType {
|
|
509
581
|
ANTENNA_DOWNLINK = "antenna-downlink",
|
|
510
582
|
ANTENNA_DOWNLINK_DEMOD_DECODE = "antenna-downlink-demod-decode",
|
|
@@ -515,6 +587,7 @@ export declare enum ConfigCapabilityType {
|
|
|
515
587
|
UPLINK_ECHO = "uplink-echo"
|
|
516
588
|
}
|
|
517
589
|
/**
|
|
590
|
+
* @public
|
|
518
591
|
* <p/>
|
|
519
592
|
*/
|
|
520
593
|
export interface ConfigIdResponse {
|
|
@@ -532,6 +605,7 @@ export interface ConfigIdResponse {
|
|
|
532
605
|
configArn?: string;
|
|
533
606
|
}
|
|
534
607
|
/**
|
|
608
|
+
* @public
|
|
535
609
|
* <p>Information about the dataflow endpoint <code>Config</code>.</p>
|
|
536
610
|
*/
|
|
537
611
|
export interface DataflowEndpointConfig {
|
|
@@ -545,6 +619,7 @@ export interface DataflowEndpointConfig {
|
|
|
545
619
|
dataflowEndpointRegion?: string;
|
|
546
620
|
}
|
|
547
621
|
/**
|
|
622
|
+
* @public
|
|
548
623
|
* <p>Information about an S3 recording <code>Config</code>.</p>
|
|
549
624
|
*/
|
|
550
625
|
export interface S3RecordingConfig {
|
|
@@ -561,12 +636,16 @@ export interface S3RecordingConfig {
|
|
|
561
636
|
*/
|
|
562
637
|
prefix?: string;
|
|
563
638
|
}
|
|
639
|
+
/**
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
564
642
|
export declare enum Criticality {
|
|
565
643
|
PREFERRED = "PREFERRED",
|
|
566
644
|
REMOVED = "REMOVED",
|
|
567
645
|
REQUIRED = "REQUIRED"
|
|
568
646
|
}
|
|
569
647
|
/**
|
|
648
|
+
* @public
|
|
570
649
|
* <p>Object that determines whether tracking should be used during a contact
|
|
571
650
|
* executed with this <code>Config</code> in the mission profile.</p>
|
|
572
651
|
*/
|
|
@@ -577,6 +656,7 @@ export interface TrackingConfig {
|
|
|
577
656
|
autotrack: Criticality | string | undefined;
|
|
578
657
|
}
|
|
579
658
|
/**
|
|
659
|
+
* @public
|
|
580
660
|
* <p>Information about an uplink echo <code>Config</code>.</p>
|
|
581
661
|
* <p>Parameters from the <code>AntennaUplinkConfig</code>, corresponding to the
|
|
582
662
|
* specified <code>AntennaUplinkConfigArn</code>, are used when this <code>UplinkEchoConfig</code>
|
|
@@ -593,10 +673,14 @@ export interface UplinkEchoConfig {
|
|
|
593
673
|
antennaUplinkConfigArn: string | undefined;
|
|
594
674
|
}
|
|
595
675
|
/**
|
|
676
|
+
* @public
|
|
596
677
|
* <p>Object containing the parameters of a <code>Config</code>.</p>
|
|
597
678
|
* <p>See the subtype definitions for what each type of <code>Config</code> contains.</p>
|
|
598
679
|
*/
|
|
599
680
|
export type ConfigTypeData = ConfigTypeData.AntennaDownlinkConfigMember | ConfigTypeData.AntennaDownlinkDemodDecodeConfigMember | ConfigTypeData.AntennaUplinkConfigMember | ConfigTypeData.DataflowEndpointConfigMember | ConfigTypeData.S3RecordingConfigMember | ConfigTypeData.TrackingConfigMember | ConfigTypeData.UplinkEchoConfigMember | ConfigTypeData.$UnknownMember;
|
|
681
|
+
/**
|
|
682
|
+
* @public
|
|
683
|
+
*/
|
|
600
684
|
export declare namespace ConfigTypeData {
|
|
601
685
|
/**
|
|
602
686
|
* <p>Information about how AWS Ground Station should configure an antenna for downlink during a contact.</p>
|
|
@@ -713,6 +797,7 @@ export declare namespace ConfigTypeData {
|
|
|
713
797
|
const visit: <T>(value: ConfigTypeData, visitor: Visitor<T>) => T;
|
|
714
798
|
}
|
|
715
799
|
/**
|
|
800
|
+
* @public
|
|
716
801
|
* <p/>
|
|
717
802
|
*/
|
|
718
803
|
export interface CreateConfigRequest {
|
|
@@ -730,6 +815,7 @@ export interface CreateConfigRequest {
|
|
|
730
815
|
tags?: Record<string, string>;
|
|
731
816
|
}
|
|
732
817
|
/**
|
|
818
|
+
* @public
|
|
733
819
|
* <p>Account limits for this resource have been exceeded.</p>
|
|
734
820
|
*/
|
|
735
821
|
export declare class ResourceLimitExceededException extends __BaseException {
|
|
@@ -745,6 +831,7 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
745
831
|
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
746
832
|
}
|
|
747
833
|
/**
|
|
834
|
+
* @public
|
|
748
835
|
* <p/>
|
|
749
836
|
*/
|
|
750
837
|
export interface DeleteConfigRequest {
|
|
@@ -758,6 +845,7 @@ export interface DeleteConfigRequest {
|
|
|
758
845
|
configType: ConfigCapabilityType | string | undefined;
|
|
759
846
|
}
|
|
760
847
|
/**
|
|
848
|
+
* @public
|
|
761
849
|
* <p/>
|
|
762
850
|
*/
|
|
763
851
|
export interface GetConfigRequest {
|
|
@@ -771,6 +859,7 @@ export interface GetConfigRequest {
|
|
|
771
859
|
configType: ConfigCapabilityType | string | undefined;
|
|
772
860
|
}
|
|
773
861
|
/**
|
|
862
|
+
* @public
|
|
774
863
|
* <p/>
|
|
775
864
|
*/
|
|
776
865
|
export interface GetConfigResponse {
|
|
@@ -801,6 +890,7 @@ export interface GetConfigResponse {
|
|
|
801
890
|
tags?: Record<string, string>;
|
|
802
891
|
}
|
|
803
892
|
/**
|
|
893
|
+
* @public
|
|
804
894
|
* <p/>
|
|
805
895
|
*/
|
|
806
896
|
export interface ListConfigsRequest {
|
|
@@ -814,6 +904,7 @@ export interface ListConfigsRequest {
|
|
|
814
904
|
nextToken?: string;
|
|
815
905
|
}
|
|
816
906
|
/**
|
|
907
|
+
* @public
|
|
817
908
|
* <p>An item in a list of <code>Config</code> objects.</p>
|
|
818
909
|
*/
|
|
819
910
|
export interface ConfigListItem {
|
|
@@ -835,6 +926,7 @@ export interface ConfigListItem {
|
|
|
835
926
|
name?: string;
|
|
836
927
|
}
|
|
837
928
|
/**
|
|
929
|
+
* @public
|
|
838
930
|
* <p/>
|
|
839
931
|
*/
|
|
840
932
|
export interface ListConfigsResponse {
|
|
@@ -848,6 +940,7 @@ export interface ListConfigsResponse {
|
|
|
848
940
|
configList?: ConfigListItem[];
|
|
849
941
|
}
|
|
850
942
|
/**
|
|
943
|
+
* @public
|
|
851
944
|
* <p/>
|
|
852
945
|
*/
|
|
853
946
|
export interface UpdateConfigRequest {
|
|
@@ -868,6 +961,9 @@ export interface UpdateConfigRequest {
|
|
|
868
961
|
*/
|
|
869
962
|
configData: ConfigTypeData | undefined;
|
|
870
963
|
}
|
|
964
|
+
/**
|
|
965
|
+
* @public
|
|
966
|
+
*/
|
|
871
967
|
export declare enum EndpointStatus {
|
|
872
968
|
created = "created",
|
|
873
969
|
creating = "creating",
|
|
@@ -876,6 +972,7 @@ export declare enum EndpointStatus {
|
|
|
876
972
|
failed = "failed"
|
|
877
973
|
}
|
|
878
974
|
/**
|
|
975
|
+
* @public
|
|
879
976
|
* <p>Information about a dataflow endpoint.</p>
|
|
880
977
|
*/
|
|
881
978
|
export interface DataflowEndpoint {
|
|
@@ -897,6 +994,7 @@ export interface DataflowEndpoint {
|
|
|
897
994
|
mtu?: number;
|
|
898
995
|
}
|
|
899
996
|
/**
|
|
997
|
+
* @public
|
|
900
998
|
* <p>Information about endpoints.</p>
|
|
901
999
|
*/
|
|
902
1000
|
export interface SecurityDetails {
|
|
@@ -914,6 +1012,7 @@ export interface SecurityDetails {
|
|
|
914
1012
|
roleArn: string | undefined;
|
|
915
1013
|
}
|
|
916
1014
|
/**
|
|
1015
|
+
* @public
|
|
917
1016
|
* <p>Information about the endpoint details.</p>
|
|
918
1017
|
*/
|
|
919
1018
|
export interface EndpointDetails {
|
|
@@ -931,6 +1030,7 @@ export interface EndpointDetails {
|
|
|
931
1030
|
awsGroundStationAgentEndpoint?: AwsGroundStationAgentEndpoint;
|
|
932
1031
|
}
|
|
933
1032
|
/**
|
|
1033
|
+
* @public
|
|
934
1034
|
* <p>Details about an S3 recording <code>Config</code> used in a contact.</p>
|
|
935
1035
|
*/
|
|
936
1036
|
export interface S3RecordingDetails {
|
|
@@ -944,9 +1044,13 @@ export interface S3RecordingDetails {
|
|
|
944
1044
|
keyTemplate?: string;
|
|
945
1045
|
}
|
|
946
1046
|
/**
|
|
1047
|
+
* @public
|
|
947
1048
|
* <p>Details for certain <code>Config</code> object types in a contact.</p>
|
|
948
1049
|
*/
|
|
949
1050
|
export type ConfigDetails = ConfigDetails.AntennaDemodDecodeDetailsMember | ConfigDetails.EndpointDetailsMember | ConfigDetails.S3RecordingDetailsMember | ConfigDetails.$UnknownMember;
|
|
1051
|
+
/**
|
|
1052
|
+
* @public
|
|
1053
|
+
*/
|
|
950
1054
|
export declare namespace ConfigDetails {
|
|
951
1055
|
/**
|
|
952
1056
|
* <p>Information about the endpoint details.</p>
|
|
@@ -990,6 +1094,7 @@ export declare namespace ConfigDetails {
|
|
|
990
1094
|
const visit: <T>(value: ConfigDetails, visitor: Visitor<T>) => T;
|
|
991
1095
|
}
|
|
992
1096
|
/**
|
|
1097
|
+
* @public
|
|
993
1098
|
* <p/>
|
|
994
1099
|
*/
|
|
995
1100
|
export interface DescribeContactRequest {
|
|
@@ -998,6 +1103,9 @@ export interface DescribeContactRequest {
|
|
|
998
1103
|
*/
|
|
999
1104
|
contactId: string | undefined;
|
|
1000
1105
|
}
|
|
1106
|
+
/**
|
|
1107
|
+
* @public
|
|
1108
|
+
*/
|
|
1001
1109
|
export declare enum ContactStatus {
|
|
1002
1110
|
AVAILABLE = "AVAILABLE",
|
|
1003
1111
|
AWS_CANCELLED = "AWS_CANCELLED",
|
|
@@ -1014,6 +1122,7 @@ export declare enum ContactStatus {
|
|
|
1014
1122
|
SCHEDULING = "SCHEDULING"
|
|
1015
1123
|
}
|
|
1016
1124
|
/**
|
|
1125
|
+
* @public
|
|
1017
1126
|
* <p>Dataflow details for the destination side.</p>
|
|
1018
1127
|
*/
|
|
1019
1128
|
export interface Destination {
|
|
@@ -1035,6 +1144,7 @@ export interface Destination {
|
|
|
1035
1144
|
dataflowDestinationRegion?: string;
|
|
1036
1145
|
}
|
|
1037
1146
|
/**
|
|
1147
|
+
* @public
|
|
1038
1148
|
* <p>Dataflow details for the source side.</p>
|
|
1039
1149
|
*/
|
|
1040
1150
|
export interface Source {
|
|
@@ -1057,6 +1167,7 @@ export interface Source {
|
|
|
1057
1167
|
dataflowSourceRegion?: string;
|
|
1058
1168
|
}
|
|
1059
1169
|
/**
|
|
1170
|
+
* @public
|
|
1060
1171
|
* <p>Information about a dataflow edge used in a contact.</p>
|
|
1061
1172
|
*/
|
|
1062
1173
|
export interface DataflowDetail {
|
|
@@ -1074,6 +1185,7 @@ export interface DataflowDetail {
|
|
|
1074
1185
|
errorMessage?: string;
|
|
1075
1186
|
}
|
|
1076
1187
|
/**
|
|
1188
|
+
* @public
|
|
1077
1189
|
* <p>Elevation angle of the satellite in the sky during a contact.</p>
|
|
1078
1190
|
*/
|
|
1079
1191
|
export interface Elevation {
|
|
@@ -1087,6 +1199,7 @@ export interface Elevation {
|
|
|
1087
1199
|
unit: AngleUnits | string | undefined;
|
|
1088
1200
|
}
|
|
1089
1201
|
/**
|
|
1202
|
+
* @public
|
|
1090
1203
|
* <p/>
|
|
1091
1204
|
*/
|
|
1092
1205
|
export interface DescribeContactResponse {
|
|
@@ -1148,6 +1261,7 @@ export interface DescribeContactResponse {
|
|
|
1148
1261
|
dataflowList?: DataflowDetail[];
|
|
1149
1262
|
}
|
|
1150
1263
|
/**
|
|
1264
|
+
* @public
|
|
1151
1265
|
* <p/>
|
|
1152
1266
|
*/
|
|
1153
1267
|
export interface ListContactsRequest {
|
|
@@ -1185,6 +1299,7 @@ export interface ListContactsRequest {
|
|
|
1185
1299
|
missionProfileArn?: string;
|
|
1186
1300
|
}
|
|
1187
1301
|
/**
|
|
1302
|
+
* @public
|
|
1188
1303
|
* <p>Data describing a contact.</p>
|
|
1189
1304
|
*/
|
|
1190
1305
|
export interface ContactData {
|
|
@@ -1242,6 +1357,7 @@ export interface ContactData {
|
|
|
1242
1357
|
tags?: Record<string, string>;
|
|
1243
1358
|
}
|
|
1244
1359
|
/**
|
|
1360
|
+
* @public
|
|
1245
1361
|
* <p/>
|
|
1246
1362
|
*/
|
|
1247
1363
|
export interface ListContactsResponse {
|
|
@@ -1255,6 +1371,7 @@ export interface ListContactsResponse {
|
|
|
1255
1371
|
contactList?: ContactData[];
|
|
1256
1372
|
}
|
|
1257
1373
|
/**
|
|
1374
|
+
* @public
|
|
1258
1375
|
* <p/>
|
|
1259
1376
|
*/
|
|
1260
1377
|
export interface ReserveContactRequest {
|
|
@@ -1284,6 +1401,7 @@ export interface ReserveContactRequest {
|
|
|
1284
1401
|
tags?: Record<string, string>;
|
|
1285
1402
|
}
|
|
1286
1403
|
/**
|
|
1404
|
+
* @public
|
|
1287
1405
|
* <p/>
|
|
1288
1406
|
*/
|
|
1289
1407
|
export interface CreateDataflowEndpointGroupRequest {
|
|
@@ -1305,6 +1423,7 @@ export interface CreateDataflowEndpointGroupRequest {
|
|
|
1305
1423
|
contactPostPassDurationSeconds?: number;
|
|
1306
1424
|
}
|
|
1307
1425
|
/**
|
|
1426
|
+
* @public
|
|
1308
1427
|
* <p/>
|
|
1309
1428
|
*/
|
|
1310
1429
|
export interface DataflowEndpointGroupIdResponse {
|
|
@@ -1314,6 +1433,7 @@ export interface DataflowEndpointGroupIdResponse {
|
|
|
1314
1433
|
dataflowEndpointGroupId?: string;
|
|
1315
1434
|
}
|
|
1316
1435
|
/**
|
|
1436
|
+
* @public
|
|
1317
1437
|
* <p>Object stored in S3 containing ephemeris data.</p>
|
|
1318
1438
|
*/
|
|
1319
1439
|
export interface S3Object {
|
|
@@ -1331,6 +1451,7 @@ export interface S3Object {
|
|
|
1331
1451
|
version?: string;
|
|
1332
1452
|
}
|
|
1333
1453
|
/**
|
|
1454
|
+
* @public
|
|
1334
1455
|
* <p>Ephemeris data in Orbit Ephemeris Message (OEM) format.</p>
|
|
1335
1456
|
*/
|
|
1336
1457
|
export interface OEMEphemeris {
|
|
@@ -1344,6 +1465,7 @@ export interface OEMEphemeris {
|
|
|
1344
1465
|
oemData?: string;
|
|
1345
1466
|
}
|
|
1346
1467
|
/**
|
|
1468
|
+
* @public
|
|
1347
1469
|
* <p>A time range with a start and end time.</p>
|
|
1348
1470
|
*/
|
|
1349
1471
|
export interface TimeRange {
|
|
@@ -1357,6 +1479,7 @@ export interface TimeRange {
|
|
|
1357
1479
|
endTime: Date | undefined;
|
|
1358
1480
|
}
|
|
1359
1481
|
/**
|
|
1482
|
+
* @public
|
|
1360
1483
|
* <p>Two-line element set (TLE) data.</p>
|
|
1361
1484
|
*/
|
|
1362
1485
|
export interface TLEData {
|
|
@@ -1374,6 +1497,7 @@ export interface TLEData {
|
|
|
1374
1497
|
validTimeRange: TimeRange | undefined;
|
|
1375
1498
|
}
|
|
1376
1499
|
/**
|
|
1500
|
+
* @public
|
|
1377
1501
|
* <p>Two-line element set (TLE) ephemeris.</p>
|
|
1378
1502
|
*/
|
|
1379
1503
|
export interface TLEEphemeris {
|
|
@@ -1387,9 +1511,13 @@ export interface TLEEphemeris {
|
|
|
1387
1511
|
tleData?: TLEData[];
|
|
1388
1512
|
}
|
|
1389
1513
|
/**
|
|
1514
|
+
* @public
|
|
1390
1515
|
* <p>Ephemeris data.</p>
|
|
1391
1516
|
*/
|
|
1392
1517
|
export type EphemerisData = EphemerisData.OemMember | EphemerisData.TleMember | EphemerisData.$UnknownMember;
|
|
1518
|
+
/**
|
|
1519
|
+
* @public
|
|
1520
|
+
*/
|
|
1393
1521
|
export declare namespace EphemerisData {
|
|
1394
1522
|
/**
|
|
1395
1523
|
* <p>Two-line element set (TLE) ephemeris.</p>
|
|
@@ -1419,6 +1547,9 @@ export declare namespace EphemerisData {
|
|
|
1419
1547
|
}
|
|
1420
1548
|
const visit: <T>(value: EphemerisData, visitor: Visitor<T>) => T;
|
|
1421
1549
|
}
|
|
1550
|
+
/**
|
|
1551
|
+
* @public
|
|
1552
|
+
*/
|
|
1422
1553
|
export interface CreateEphemerisRequest {
|
|
1423
1554
|
/**
|
|
1424
1555
|
* <p>AWS Ground Station satellite ID for this ephemeris.</p>
|
|
@@ -1456,6 +1587,9 @@ export interface CreateEphemerisRequest {
|
|
|
1456
1587
|
*/
|
|
1457
1588
|
tags?: Record<string, string>;
|
|
1458
1589
|
}
|
|
1590
|
+
/**
|
|
1591
|
+
* @public
|
|
1592
|
+
*/
|
|
1459
1593
|
export interface EphemerisIdResponse {
|
|
1460
1594
|
/**
|
|
1461
1595
|
* <p>The AWS Ground Station ephemeris ID.</p>
|
|
@@ -1463,9 +1597,13 @@ export interface EphemerisIdResponse {
|
|
|
1463
1597
|
ephemerisId?: string;
|
|
1464
1598
|
}
|
|
1465
1599
|
/**
|
|
1600
|
+
* @public
|
|
1466
1601
|
* <p>AWS Key Management Service (KMS) Key.</p>
|
|
1467
1602
|
*/
|
|
1468
1603
|
export type KmsKey = KmsKey.KmsAliasArnMember | KmsKey.KmsKeyArnMember | KmsKey.$UnknownMember;
|
|
1604
|
+
/**
|
|
1605
|
+
* @public
|
|
1606
|
+
*/
|
|
1469
1607
|
export declare namespace KmsKey {
|
|
1470
1608
|
/**
|
|
1471
1609
|
* <p>KMS Key Arn.</p>
|
|
@@ -1496,6 +1634,7 @@ export declare namespace KmsKey {
|
|
|
1496
1634
|
const visit: <T>(value: KmsKey, visitor: Visitor<T>) => T;
|
|
1497
1635
|
}
|
|
1498
1636
|
/**
|
|
1637
|
+
* @public
|
|
1499
1638
|
* <p/>
|
|
1500
1639
|
*/
|
|
1501
1640
|
export interface CreateMissionProfileRequest {
|
|
@@ -1539,6 +1678,7 @@ export interface CreateMissionProfileRequest {
|
|
|
1539
1678
|
streamsKmsRole?: string;
|
|
1540
1679
|
}
|
|
1541
1680
|
/**
|
|
1681
|
+
* @public
|
|
1542
1682
|
* <p/>
|
|
1543
1683
|
*/
|
|
1544
1684
|
export interface MissionProfileIdResponse {
|
|
@@ -1548,6 +1688,7 @@ export interface MissionProfileIdResponse {
|
|
|
1548
1688
|
missionProfileId?: string;
|
|
1549
1689
|
}
|
|
1550
1690
|
/**
|
|
1691
|
+
* @public
|
|
1551
1692
|
* <p/>
|
|
1552
1693
|
*/
|
|
1553
1694
|
export interface DeleteDataflowEndpointGroupRequest {
|
|
@@ -1557,6 +1698,7 @@ export interface DeleteDataflowEndpointGroupRequest {
|
|
|
1557
1698
|
dataflowEndpointGroupId: string | undefined;
|
|
1558
1699
|
}
|
|
1559
1700
|
/**
|
|
1701
|
+
* @public
|
|
1560
1702
|
* <p/>
|
|
1561
1703
|
*/
|
|
1562
1704
|
export interface GetDataflowEndpointGroupRequest {
|
|
@@ -1566,6 +1708,7 @@ export interface GetDataflowEndpointGroupRequest {
|
|
|
1566
1708
|
dataflowEndpointGroupId: string | undefined;
|
|
1567
1709
|
}
|
|
1568
1710
|
/**
|
|
1711
|
+
* @public
|
|
1569
1712
|
* <p/>
|
|
1570
1713
|
*/
|
|
1571
1714
|
export interface GetDataflowEndpointGroupResponse {
|
|
@@ -1595,6 +1738,7 @@ export interface GetDataflowEndpointGroupResponse {
|
|
|
1595
1738
|
contactPostPassDurationSeconds?: number;
|
|
1596
1739
|
}
|
|
1597
1740
|
/**
|
|
1741
|
+
* @public
|
|
1598
1742
|
* <p/>
|
|
1599
1743
|
*/
|
|
1600
1744
|
export interface ListDataflowEndpointGroupsRequest {
|
|
@@ -1608,6 +1752,7 @@ export interface ListDataflowEndpointGroupsRequest {
|
|
|
1608
1752
|
nextToken?: string;
|
|
1609
1753
|
}
|
|
1610
1754
|
/**
|
|
1755
|
+
* @public
|
|
1611
1756
|
* <p>Item in a list of <code>DataflowEndpoint</code> groups.</p>
|
|
1612
1757
|
*/
|
|
1613
1758
|
export interface DataflowEndpointListItem {
|
|
@@ -1621,6 +1766,7 @@ export interface DataflowEndpointListItem {
|
|
|
1621
1766
|
dataflowEndpointGroupArn?: string;
|
|
1622
1767
|
}
|
|
1623
1768
|
/**
|
|
1769
|
+
* @public
|
|
1624
1770
|
* <p/>
|
|
1625
1771
|
*/
|
|
1626
1772
|
export interface ListDataflowEndpointGroupsResponse {
|
|
@@ -1633,6 +1779,9 @@ export interface ListDataflowEndpointGroupsResponse {
|
|
|
1633
1779
|
*/
|
|
1634
1780
|
dataflowEndpointGroupList?: DataflowEndpointListItem[];
|
|
1635
1781
|
}
|
|
1782
|
+
/**
|
|
1783
|
+
* @public
|
|
1784
|
+
*/
|
|
1636
1785
|
export interface DeleteEphemerisRequest {
|
|
1637
1786
|
/**
|
|
1638
1787
|
* <p>The AWS Ground Station ephemeris ID.</p>
|
|
@@ -1640,6 +1789,7 @@ export interface DeleteEphemerisRequest {
|
|
|
1640
1789
|
ephemerisId: string | undefined;
|
|
1641
1790
|
}
|
|
1642
1791
|
/**
|
|
1792
|
+
* @public
|
|
1643
1793
|
* <p/>
|
|
1644
1794
|
*/
|
|
1645
1795
|
export interface DeleteMissionProfileRequest {
|
|
@@ -1648,12 +1798,18 @@ export interface DeleteMissionProfileRequest {
|
|
|
1648
1798
|
*/
|
|
1649
1799
|
missionProfileId: string | undefined;
|
|
1650
1800
|
}
|
|
1801
|
+
/**
|
|
1802
|
+
* @public
|
|
1803
|
+
*/
|
|
1651
1804
|
export interface DescribeEphemerisRequest {
|
|
1652
1805
|
/**
|
|
1653
1806
|
* <p>The AWS Ground Station ephemeris ID.</p>
|
|
1654
1807
|
*/
|
|
1655
1808
|
ephemerisId: string | undefined;
|
|
1656
1809
|
}
|
|
1810
|
+
/**
|
|
1811
|
+
* @public
|
|
1812
|
+
*/
|
|
1657
1813
|
export declare enum EphemerisInvalidReason {
|
|
1658
1814
|
/**
|
|
1659
1815
|
* Provided KMS key is invalid
|
|
@@ -1676,6 +1832,9 @@ export declare enum EphemerisInvalidReason {
|
|
|
1676
1832
|
*/
|
|
1677
1833
|
VALIDATION_ERROR = "VALIDATION_ERROR"
|
|
1678
1834
|
}
|
|
1835
|
+
/**
|
|
1836
|
+
* @public
|
|
1837
|
+
*/
|
|
1679
1838
|
export declare enum EphemerisStatus {
|
|
1680
1839
|
DISABLED = "DISABLED",
|
|
1681
1840
|
ENABLED = "ENABLED",
|
|
@@ -1685,6 +1844,7 @@ export declare enum EphemerisStatus {
|
|
|
1685
1844
|
VALIDATING = "VALIDATING"
|
|
1686
1845
|
}
|
|
1687
1846
|
/**
|
|
1847
|
+
* @public
|
|
1688
1848
|
* <p>Description of ephemeris.</p>
|
|
1689
1849
|
*/
|
|
1690
1850
|
export interface EphemerisDescription {
|
|
@@ -1698,9 +1858,13 @@ export interface EphemerisDescription {
|
|
|
1698
1858
|
ephemerisData?: string;
|
|
1699
1859
|
}
|
|
1700
1860
|
/**
|
|
1861
|
+
* @public
|
|
1701
1862
|
* <p/>
|
|
1702
1863
|
*/
|
|
1703
1864
|
export type EphemerisTypeDescription = EphemerisTypeDescription.OemMember | EphemerisTypeDescription.TleMember | EphemerisTypeDescription.$UnknownMember;
|
|
1865
|
+
/**
|
|
1866
|
+
* @public
|
|
1867
|
+
*/
|
|
1704
1868
|
export declare namespace EphemerisTypeDescription {
|
|
1705
1869
|
/**
|
|
1706
1870
|
* <p>Description of ephemeris.</p>
|
|
@@ -1730,6 +1894,9 @@ export declare namespace EphemerisTypeDescription {
|
|
|
1730
1894
|
}
|
|
1731
1895
|
const visit: <T>(value: EphemerisTypeDescription, visitor: Visitor<T>) => T;
|
|
1732
1896
|
}
|
|
1897
|
+
/**
|
|
1898
|
+
* @public
|
|
1899
|
+
*/
|
|
1733
1900
|
export interface DescribeEphemerisResponse {
|
|
1734
1901
|
/**
|
|
1735
1902
|
* <p>The AWS Ground Station ephemeris ID.</p>
|
|
@@ -1775,6 +1942,7 @@ export interface DescribeEphemerisResponse {
|
|
|
1775
1942
|
invalidReason?: EphemerisInvalidReason | string;
|
|
1776
1943
|
}
|
|
1777
1944
|
/**
|
|
1945
|
+
* @public
|
|
1778
1946
|
* <p>Ephemeris item.</p>
|
|
1779
1947
|
*/
|
|
1780
1948
|
export interface EphemerisItem {
|
|
@@ -1809,6 +1977,9 @@ export interface EphemerisItem {
|
|
|
1809
1977
|
*/
|
|
1810
1978
|
sourceS3Object?: S3Object;
|
|
1811
1979
|
}
|
|
1980
|
+
/**
|
|
1981
|
+
* @public
|
|
1982
|
+
*/
|
|
1812
1983
|
export interface ListEphemeridesRequest {
|
|
1813
1984
|
/**
|
|
1814
1985
|
* <p>The AWS Ground Station satellite ID to list ephemeris for.</p>
|
|
@@ -1835,6 +2006,9 @@ export interface ListEphemeridesRequest {
|
|
|
1835
2006
|
*/
|
|
1836
2007
|
nextToken?: string;
|
|
1837
2008
|
}
|
|
2009
|
+
/**
|
|
2010
|
+
* @public
|
|
2011
|
+
*/
|
|
1838
2012
|
export interface ListEphemeridesResponse {
|
|
1839
2013
|
/**
|
|
1840
2014
|
* <p>Pagination token.</p>
|
|
@@ -1845,6 +2019,9 @@ export interface ListEphemeridesResponse {
|
|
|
1845
2019
|
*/
|
|
1846
2020
|
ephemerides?: EphemerisItem[];
|
|
1847
2021
|
}
|
|
2022
|
+
/**
|
|
2023
|
+
* @public
|
|
2024
|
+
*/
|
|
1848
2025
|
export interface UpdateEphemerisRequest {
|
|
1849
2026
|
/**
|
|
1850
2027
|
* <p>The AWS Ground Station ephemeris ID.</p>
|
|
@@ -1865,11 +2042,15 @@ export interface UpdateEphemerisRequest {
|
|
|
1865
2042
|
*/
|
|
1866
2043
|
priority?: number;
|
|
1867
2044
|
}
|
|
2045
|
+
/**
|
|
2046
|
+
* @public
|
|
2047
|
+
*/
|
|
1868
2048
|
export declare enum EphemerisSource {
|
|
1869
2049
|
CUSTOMER_PROVIDED = "CUSTOMER_PROVIDED",
|
|
1870
2050
|
SPACE_TRACK = "SPACE_TRACK"
|
|
1871
2051
|
}
|
|
1872
2052
|
/**
|
|
2053
|
+
* @public
|
|
1873
2054
|
* <p>Metadata describing a particular ephemeris.</p>
|
|
1874
2055
|
*/
|
|
1875
2056
|
export interface EphemerisMetaData {
|
|
@@ -1894,6 +2075,7 @@ export interface EphemerisMetaData {
|
|
|
1894
2075
|
name?: string;
|
|
1895
2076
|
}
|
|
1896
2077
|
/**
|
|
2078
|
+
* @public
|
|
1897
2079
|
* <p/>
|
|
1898
2080
|
*/
|
|
1899
2081
|
export interface GetMinuteUsageRequest {
|
|
@@ -1907,6 +2089,7 @@ export interface GetMinuteUsageRequest {
|
|
|
1907
2089
|
year: number | undefined;
|
|
1908
2090
|
}
|
|
1909
2091
|
/**
|
|
2092
|
+
* @public
|
|
1910
2093
|
* <p/>
|
|
1911
2094
|
*/
|
|
1912
2095
|
export interface GetMinuteUsageResponse {
|
|
@@ -1932,6 +2115,7 @@ export interface GetMinuteUsageResponse {
|
|
|
1932
2115
|
estimatedMinutesRemaining?: number;
|
|
1933
2116
|
}
|
|
1934
2117
|
/**
|
|
2118
|
+
* @public
|
|
1935
2119
|
* <p/>
|
|
1936
2120
|
*/
|
|
1937
2121
|
export interface GetMissionProfileRequest {
|
|
@@ -1941,6 +2125,7 @@ export interface GetMissionProfileRequest {
|
|
|
1941
2125
|
missionProfileId: string | undefined;
|
|
1942
2126
|
}
|
|
1943
2127
|
/**
|
|
2128
|
+
* @public
|
|
1944
2129
|
* <p/>
|
|
1945
2130
|
*/
|
|
1946
2131
|
export interface GetMissionProfileResponse {
|
|
@@ -1996,6 +2181,7 @@ export interface GetMissionProfileResponse {
|
|
|
1996
2181
|
streamsKmsRole?: string;
|
|
1997
2182
|
}
|
|
1998
2183
|
/**
|
|
2184
|
+
* @public
|
|
1999
2185
|
* <p/>
|
|
2000
2186
|
*/
|
|
2001
2187
|
export interface GetSatelliteRequest {
|
|
@@ -2005,6 +2191,7 @@ export interface GetSatelliteRequest {
|
|
|
2005
2191
|
satelliteId: string | undefined;
|
|
2006
2192
|
}
|
|
2007
2193
|
/**
|
|
2194
|
+
* @public
|
|
2008
2195
|
* <p/>
|
|
2009
2196
|
*/
|
|
2010
2197
|
export interface GetSatelliteResponse {
|
|
@@ -2030,6 +2217,7 @@ export interface GetSatelliteResponse {
|
|
|
2030
2217
|
currentEphemeris?: EphemerisMetaData;
|
|
2031
2218
|
}
|
|
2032
2219
|
/**
|
|
2220
|
+
* @public
|
|
2033
2221
|
* <p/>
|
|
2034
2222
|
*/
|
|
2035
2223
|
export interface ListGroundStationsRequest {
|
|
@@ -2047,6 +2235,7 @@ export interface ListGroundStationsRequest {
|
|
|
2047
2235
|
nextToken?: string;
|
|
2048
2236
|
}
|
|
2049
2237
|
/**
|
|
2238
|
+
* @public
|
|
2050
2239
|
* <p>Information about the ground station data.</p>
|
|
2051
2240
|
*/
|
|
2052
2241
|
export interface GroundStationData {
|
|
@@ -2064,6 +2253,7 @@ export interface GroundStationData {
|
|
|
2064
2253
|
region?: string;
|
|
2065
2254
|
}
|
|
2066
2255
|
/**
|
|
2256
|
+
* @public
|
|
2067
2257
|
* <p/>
|
|
2068
2258
|
*/
|
|
2069
2259
|
export interface ListGroundStationsResponse {
|
|
@@ -2077,6 +2267,7 @@ export interface ListGroundStationsResponse {
|
|
|
2077
2267
|
groundStationList?: GroundStationData[];
|
|
2078
2268
|
}
|
|
2079
2269
|
/**
|
|
2270
|
+
* @public
|
|
2080
2271
|
* <p/>
|
|
2081
2272
|
*/
|
|
2082
2273
|
export interface ListTagsForResourceRequest {
|
|
@@ -2086,6 +2277,7 @@ export interface ListTagsForResourceRequest {
|
|
|
2086
2277
|
resourceArn: string | undefined;
|
|
2087
2278
|
}
|
|
2088
2279
|
/**
|
|
2280
|
+
* @public
|
|
2089
2281
|
* <p/>
|
|
2090
2282
|
*/
|
|
2091
2283
|
export interface ListTagsForResourceResponse {
|
|
@@ -2095,6 +2287,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2095
2287
|
tags?: Record<string, string>;
|
|
2096
2288
|
}
|
|
2097
2289
|
/**
|
|
2290
|
+
* @public
|
|
2098
2291
|
* <p/>
|
|
2099
2292
|
*/
|
|
2100
2293
|
export interface ListMissionProfilesRequest {
|
|
@@ -2108,6 +2301,7 @@ export interface ListMissionProfilesRequest {
|
|
|
2108
2301
|
nextToken?: string;
|
|
2109
2302
|
}
|
|
2110
2303
|
/**
|
|
2304
|
+
* @public
|
|
2111
2305
|
* <p>Item in a list of mission profiles.</p>
|
|
2112
2306
|
*/
|
|
2113
2307
|
export interface MissionProfileListItem {
|
|
@@ -2129,6 +2323,7 @@ export interface MissionProfileListItem {
|
|
|
2129
2323
|
name?: string;
|
|
2130
2324
|
}
|
|
2131
2325
|
/**
|
|
2326
|
+
* @public
|
|
2132
2327
|
* <p/>
|
|
2133
2328
|
*/
|
|
2134
2329
|
export interface ListMissionProfilesResponse {
|
|
@@ -2142,6 +2337,7 @@ export interface ListMissionProfilesResponse {
|
|
|
2142
2337
|
missionProfileList?: MissionProfileListItem[];
|
|
2143
2338
|
}
|
|
2144
2339
|
/**
|
|
2340
|
+
* @public
|
|
2145
2341
|
* <p/>
|
|
2146
2342
|
*/
|
|
2147
2343
|
export interface UpdateMissionProfileRequest {
|
|
@@ -2185,6 +2381,7 @@ export interface UpdateMissionProfileRequest {
|
|
|
2185
2381
|
streamsKmsRole?: string;
|
|
2186
2382
|
}
|
|
2187
2383
|
/**
|
|
2384
|
+
* @public
|
|
2188
2385
|
* <p/>
|
|
2189
2386
|
*/
|
|
2190
2387
|
export interface ListSatellitesRequest {
|
|
@@ -2198,6 +2395,7 @@ export interface ListSatellitesRequest {
|
|
|
2198
2395
|
nextToken?: string;
|
|
2199
2396
|
}
|
|
2200
2397
|
/**
|
|
2398
|
+
* @public
|
|
2201
2399
|
* <p>Item in a list of satellites.</p>
|
|
2202
2400
|
*/
|
|
2203
2401
|
export interface SatelliteListItem {
|
|
@@ -2223,6 +2421,7 @@ export interface SatelliteListItem {
|
|
|
2223
2421
|
currentEphemeris?: EphemerisMetaData;
|
|
2224
2422
|
}
|
|
2225
2423
|
/**
|
|
2424
|
+
* @public
|
|
2226
2425
|
* <p/>
|
|
2227
2426
|
*/
|
|
2228
2427
|
export interface ListSatellitesResponse {
|
|
@@ -2236,6 +2435,7 @@ export interface ListSatellitesResponse {
|
|
|
2236
2435
|
satellites?: SatelliteListItem[];
|
|
2237
2436
|
}
|
|
2238
2437
|
/**
|
|
2438
|
+
* @public
|
|
2239
2439
|
* <p/>
|
|
2240
2440
|
*/
|
|
2241
2441
|
export interface TagResourceRequest {
|
|
@@ -2249,11 +2449,13 @@ export interface TagResourceRequest {
|
|
|
2249
2449
|
tags: Record<string, string> | undefined;
|
|
2250
2450
|
}
|
|
2251
2451
|
/**
|
|
2452
|
+
* @public
|
|
2252
2453
|
* <p/>
|
|
2253
2454
|
*/
|
|
2254
2455
|
export interface TagResourceResponse {
|
|
2255
2456
|
}
|
|
2256
2457
|
/**
|
|
2458
|
+
* @public
|
|
2257
2459
|
* <p/>
|
|
2258
2460
|
*/
|
|
2259
2461
|
export interface UntagResourceRequest {
|
|
@@ -2267,6 +2469,7 @@ export interface UntagResourceRequest {
|
|
|
2267
2469
|
tagKeys: string[] | undefined;
|
|
2268
2470
|
}
|
|
2269
2471
|
/**
|
|
2472
|
+
* @public
|
|
2270
2473
|
* <p/>
|
|
2271
2474
|
*/
|
|
2272
2475
|
export interface UntagResourceResponse {
|