@aws-sdk/client-groundstation 3.169.0 → 3.171.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.
Files changed (48) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/GroundStation.d.ts +429 -130
  3. package/dist-types/ts3.4/GroundStationClient.d.ts +255 -98
  4. package/dist-types/ts3.4/commands/CancelContactCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateConfigCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/CreateDataflowEndpointGroupCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/CreateMissionProfileCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteConfigCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/DeleteDataflowEndpointGroupCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DeleteMissionProfileCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeContactCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/GetDataflowEndpointGroupCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/GetMinuteUsageCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/GetMissionProfileCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/GetSatelliteCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/ListConfigsCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/ListDataflowEndpointGroupsCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/ListGroundStationsCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/ListMissionProfilesCommand.d.ts +36 -17
  22. package/dist-types/ts3.4/commands/ListSatellitesCommand.d.ts +35 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/ReserveContactCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/UpdateConfigCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UpdateMissionProfileCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/index.d.ts +25 -25
  30. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  31. package/dist-types/ts3.4/index.d.ts +6 -6
  32. package/dist-types/ts3.4/models/GroundStationServiceException.d.ts +7 -6
  33. package/dist-types/ts3.4/models/index.d.ts +1 -1
  34. package/dist-types/ts3.4/models/models_0.d.ts +806 -1040
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  36. package/dist-types/ts3.4/pagination/ListConfigsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListContactsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListDataflowEndpointGroupsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListGroundStationsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListMissionProfilesPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListSatellitesPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  43. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +305 -77
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  48. package/package.json +34 -34
@@ -1,1040 +1,806 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
3
- export declare enum AngleUnits {
4
- DEGREE_ANGLE = "DEGREE_ANGLE",
5
- RADIAN = "RADIAN"
6
- }
7
-
8
- export interface AntennaDemodDecodeDetails {
9
-
10
- outputNode?: string;
11
- }
12
- export declare enum BandwidthUnits {
13
- GHZ = "GHz",
14
- KHZ = "kHz",
15
- MHZ = "MHz"
16
- }
17
-
18
- export interface FrequencyBandwidth {
19
-
20
- value: number | undefined;
21
-
22
- units: BandwidthUnits | string | undefined;
23
- }
24
- export declare enum FrequencyUnits {
25
- GHZ = "GHz",
26
- KHZ = "kHz",
27
- MHZ = "MHz"
28
- }
29
-
30
- export interface Frequency {
31
-
32
- value: number | undefined;
33
-
34
- units: FrequencyUnits | string | undefined;
35
- }
36
- export declare enum Polarization {
37
- LEFT_HAND = "LEFT_HAND",
38
- NONE = "NONE",
39
- RIGHT_HAND = "RIGHT_HAND"
40
- }
41
-
42
- export interface SpectrumConfig {
43
-
44
- centerFrequency: Frequency | undefined;
45
-
46
- bandwidth: FrequencyBandwidth | undefined;
47
-
48
- polarization?: Polarization | string;
49
- }
50
-
51
- export interface AntennaDownlinkConfig {
52
-
53
- spectrumConfig: SpectrumConfig | undefined;
54
- }
55
-
56
- export interface DecodeConfig {
57
-
58
- unvalidatedJSON: string | undefined;
59
- }
60
-
61
- export interface DemodulationConfig {
62
-
63
- unvalidatedJSON: string | undefined;
64
- }
65
-
66
- export interface AntennaDownlinkDemodDecodeConfig {
67
-
68
- spectrumConfig: SpectrumConfig | undefined;
69
-
70
- demodulationConfig: DemodulationConfig | undefined;
71
-
72
- decodeConfig: DecodeConfig | undefined;
73
- }
74
-
75
- export interface UplinkSpectrumConfig {
76
-
77
- centerFrequency: Frequency | undefined;
78
-
79
- polarization?: Polarization | string;
80
- }
81
- export declare enum EirpUnits {
82
- DBW = "dBW"
83
- }
84
-
85
- export interface Eirp {
86
-
87
- value: number | undefined;
88
-
89
- units: EirpUnits | string | undefined;
90
- }
91
-
92
- export interface AntennaUplinkConfig {
93
-
94
- transmitDisabled?: boolean;
95
-
96
- spectrumConfig: UplinkSpectrumConfig | undefined;
97
-
98
- targetEirp: Eirp | undefined;
99
- }
100
-
101
- export interface CancelContactRequest {
102
-
103
- contactId: string | undefined;
104
- }
105
-
106
- export interface ContactIdResponse {
107
-
108
- contactId?: string;
109
- }
110
-
111
- export declare class DependencyException extends __BaseException {
112
- readonly name: "DependencyException";
113
- readonly $fault: "server";
114
-
115
- parameterName?: string;
116
-
117
- constructor(opts: __ExceptionOptionType<DependencyException, __BaseException>);
118
- }
119
-
120
- export declare class InvalidParameterException extends __BaseException {
121
- readonly name: "InvalidParameterException";
122
- readonly $fault: "client";
123
-
124
- parameterName?: string;
125
-
126
- constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
127
- }
128
-
129
- export declare class ResourceNotFoundException extends __BaseException {
130
- readonly name: "ResourceNotFoundException";
131
- readonly $fault: "client";
132
-
133
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
134
- }
135
- export declare enum ConfigCapabilityType {
136
- ANTENNA_DOWNLINK = "antenna-downlink",
137
- ANTENNA_DOWNLINK_DEMOD_DECODE = "antenna-downlink-demod-decode",
138
- ANTENNA_UPLINK = "antenna-uplink",
139
- DATAFLOW_ENDPOINT = "dataflow-endpoint",
140
- S3_RECORDING = "s3-recording",
141
- TRACKING = "tracking",
142
- UPLINK_ECHO = "uplink-echo"
143
- }
144
-
145
- export interface ConfigIdResponse {
146
-
147
- configId?: string;
148
-
149
- configType?: ConfigCapabilityType | string;
150
-
151
- configArn?: string;
152
- }
153
-
154
- export interface DataflowEndpointConfig {
155
-
156
- dataflowEndpointName: string | undefined;
157
-
158
- dataflowEndpointRegion?: string;
159
- }
160
-
161
- export interface S3RecordingConfig {
162
-
163
- bucketArn: string | undefined;
164
-
165
- roleArn: string | undefined;
166
-
167
- prefix?: string;
168
- }
169
- export declare enum Criticality {
170
- PREFERRED = "PREFERRED",
171
- REMOVED = "REMOVED",
172
- REQUIRED = "REQUIRED"
173
- }
174
-
175
- export interface TrackingConfig {
176
-
177
- autotrack: Criticality | string | undefined;
178
- }
179
-
180
- export interface UplinkEchoConfig {
181
-
182
- enabled: boolean | undefined;
183
-
184
- antennaUplinkConfigArn: string | undefined;
185
- }
186
-
187
- export declare type ConfigTypeData = ConfigTypeData.AntennaDownlinkConfigMember | ConfigTypeData.AntennaDownlinkDemodDecodeConfigMember | ConfigTypeData.AntennaUplinkConfigMember | ConfigTypeData.DataflowEndpointConfigMember | ConfigTypeData.S3RecordingConfigMember | ConfigTypeData.TrackingConfigMember | ConfigTypeData.UplinkEchoConfigMember | ConfigTypeData.$UnknownMember;
188
- export declare namespace ConfigTypeData {
189
-
190
- interface AntennaDownlinkConfigMember {
191
- antennaDownlinkConfig: AntennaDownlinkConfig;
192
- trackingConfig?: never;
193
- dataflowEndpointConfig?: never;
194
- antennaDownlinkDemodDecodeConfig?: never;
195
- antennaUplinkConfig?: never;
196
- uplinkEchoConfig?: never;
197
- s3RecordingConfig?: never;
198
- $unknown?: never;
199
- }
200
-
201
- interface TrackingConfigMember {
202
- antennaDownlinkConfig?: never;
203
- trackingConfig: TrackingConfig;
204
- dataflowEndpointConfig?: never;
205
- antennaDownlinkDemodDecodeConfig?: never;
206
- antennaUplinkConfig?: never;
207
- uplinkEchoConfig?: never;
208
- s3RecordingConfig?: never;
209
- $unknown?: never;
210
- }
211
-
212
- interface DataflowEndpointConfigMember {
213
- antennaDownlinkConfig?: never;
214
- trackingConfig?: never;
215
- dataflowEndpointConfig: DataflowEndpointConfig;
216
- antennaDownlinkDemodDecodeConfig?: never;
217
- antennaUplinkConfig?: never;
218
- uplinkEchoConfig?: never;
219
- s3RecordingConfig?: never;
220
- $unknown?: never;
221
- }
222
-
223
- interface AntennaDownlinkDemodDecodeConfigMember {
224
- antennaDownlinkConfig?: never;
225
- trackingConfig?: never;
226
- dataflowEndpointConfig?: never;
227
- antennaDownlinkDemodDecodeConfig: AntennaDownlinkDemodDecodeConfig;
228
- antennaUplinkConfig?: never;
229
- uplinkEchoConfig?: never;
230
- s3RecordingConfig?: never;
231
- $unknown?: never;
232
- }
233
-
234
- interface AntennaUplinkConfigMember {
235
- antennaDownlinkConfig?: never;
236
- trackingConfig?: never;
237
- dataflowEndpointConfig?: never;
238
- antennaDownlinkDemodDecodeConfig?: never;
239
- antennaUplinkConfig: AntennaUplinkConfig;
240
- uplinkEchoConfig?: never;
241
- s3RecordingConfig?: never;
242
- $unknown?: never;
243
- }
244
-
245
- interface UplinkEchoConfigMember {
246
- antennaDownlinkConfig?: never;
247
- trackingConfig?: never;
248
- dataflowEndpointConfig?: never;
249
- antennaDownlinkDemodDecodeConfig?: never;
250
- antennaUplinkConfig?: never;
251
- uplinkEchoConfig: UplinkEchoConfig;
252
- s3RecordingConfig?: never;
253
- $unknown?: never;
254
- }
255
-
256
- interface S3RecordingConfigMember {
257
- antennaDownlinkConfig?: never;
258
- trackingConfig?: never;
259
- dataflowEndpointConfig?: never;
260
- antennaDownlinkDemodDecodeConfig?: never;
261
- antennaUplinkConfig?: never;
262
- uplinkEchoConfig?: never;
263
- s3RecordingConfig: S3RecordingConfig;
264
- $unknown?: never;
265
- }
266
- interface $UnknownMember {
267
- antennaDownlinkConfig?: never;
268
- trackingConfig?: never;
269
- dataflowEndpointConfig?: never;
270
- antennaDownlinkDemodDecodeConfig?: never;
271
- antennaUplinkConfig?: never;
272
- uplinkEchoConfig?: never;
273
- s3RecordingConfig?: never;
274
- $unknown: [
275
- string,
276
- any
277
- ];
278
- }
279
- interface Visitor<T> {
280
- antennaDownlinkConfig: (value: AntennaDownlinkConfig) => T;
281
- trackingConfig: (value: TrackingConfig) => T;
282
- dataflowEndpointConfig: (value: DataflowEndpointConfig) => T;
283
- antennaDownlinkDemodDecodeConfig: (value: AntennaDownlinkDemodDecodeConfig) => T;
284
- antennaUplinkConfig: (value: AntennaUplinkConfig) => T;
285
- uplinkEchoConfig: (value: UplinkEchoConfig) => T;
286
- s3RecordingConfig: (value: S3RecordingConfig) => T;
287
- _: (name: string, value: any) => T;
288
- }
289
- const visit: <T>(value: ConfigTypeData, visitor: Visitor<T>) => T;
290
- }
291
-
292
- export interface CreateConfigRequest {
293
-
294
- name: string | undefined;
295
-
296
- configData: ConfigTypeData | undefined;
297
-
298
- tags?: Record<string, string>;
299
- }
300
-
301
- export declare class ResourceLimitExceededException extends __BaseException {
302
- readonly name: "ResourceLimitExceededException";
303
- readonly $fault: "client";
304
-
305
- parameterName?: string;
306
-
307
- constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
308
- }
309
-
310
- export interface DeleteConfigRequest {
311
-
312
- configId: string | undefined;
313
-
314
- configType: ConfigCapabilityType | string | undefined;
315
- }
316
-
317
- export interface GetConfigRequest {
318
-
319
- configId: string | undefined;
320
-
321
- configType: ConfigCapabilityType | string | undefined;
322
- }
323
-
324
- export interface GetConfigResponse {
325
-
326
- configId: string | undefined;
327
-
328
- configArn: string | undefined;
329
-
330
- name: string | undefined;
331
-
332
- configType?: ConfigCapabilityType | string;
333
-
334
- configData: ConfigTypeData | undefined;
335
-
336
- tags?: Record<string, string>;
337
- }
338
-
339
- export interface ListConfigsRequest {
340
-
341
- maxResults?: number;
342
-
343
- nextToken?: string;
344
- }
345
-
346
- export interface ConfigListItem {
347
-
348
- configId?: string;
349
-
350
- configType?: ConfigCapabilityType | string;
351
-
352
- configArn?: string;
353
-
354
- name?: string;
355
- }
356
-
357
- export interface ListConfigsResponse {
358
-
359
- nextToken?: string;
360
-
361
- configList?: ConfigListItem[];
362
- }
363
-
364
- export interface UpdateConfigRequest {
365
-
366
- configId: string | undefined;
367
-
368
- name: string | undefined;
369
-
370
- configType: ConfigCapabilityType | string | undefined;
371
-
372
- configData: ConfigTypeData | undefined;
373
- }
374
-
375
- export interface SocketAddress {
376
-
377
- name: string | undefined;
378
-
379
- port: number | undefined;
380
- }
381
- export declare enum EndpointStatus {
382
- created = "created",
383
- creating = "creating",
384
- deleted = "deleted",
385
- deleting = "deleting",
386
- failed = "failed"
387
- }
388
-
389
- export interface DataflowEndpoint {
390
-
391
- name?: string;
392
-
393
- address?: SocketAddress;
394
-
395
- status?: EndpointStatus | string;
396
-
397
- mtu?: number;
398
- }
399
-
400
- export interface SecurityDetails {
401
-
402
- subnetIds: string[] | undefined;
403
-
404
- securityGroupIds: string[] | undefined;
405
-
406
- roleArn: string | undefined;
407
- }
408
-
409
- export interface EndpointDetails {
410
-
411
- securityDetails?: SecurityDetails;
412
-
413
- endpoint?: DataflowEndpoint;
414
- }
415
-
416
- export interface S3RecordingDetails {
417
-
418
- bucketArn?: string;
419
-
420
- keyTemplate?: string;
421
- }
422
-
423
- export declare type ConfigDetails = ConfigDetails.AntennaDemodDecodeDetailsMember | ConfigDetails.EndpointDetailsMember | ConfigDetails.S3RecordingDetailsMember | ConfigDetails.$UnknownMember;
424
- export declare namespace ConfigDetails {
425
-
426
- interface EndpointDetailsMember {
427
- endpointDetails: EndpointDetails;
428
- antennaDemodDecodeDetails?: never;
429
- s3RecordingDetails?: never;
430
- $unknown?: never;
431
- }
432
-
433
- interface AntennaDemodDecodeDetailsMember {
434
- endpointDetails?: never;
435
- antennaDemodDecodeDetails: AntennaDemodDecodeDetails;
436
- s3RecordingDetails?: never;
437
- $unknown?: never;
438
- }
439
-
440
- interface S3RecordingDetailsMember {
441
- endpointDetails?: never;
442
- antennaDemodDecodeDetails?: never;
443
- s3RecordingDetails: S3RecordingDetails;
444
- $unknown?: never;
445
- }
446
- interface $UnknownMember {
447
- endpointDetails?: never;
448
- antennaDemodDecodeDetails?: never;
449
- s3RecordingDetails?: never;
450
- $unknown: [
451
- string,
452
- any
453
- ];
454
- }
455
- interface Visitor<T> {
456
- endpointDetails: (value: EndpointDetails) => T;
457
- antennaDemodDecodeDetails: (value: AntennaDemodDecodeDetails) => T;
458
- s3RecordingDetails: (value: S3RecordingDetails) => T;
459
- _: (name: string, value: any) => T;
460
- }
461
- const visit: <T>(value: ConfigDetails, visitor: Visitor<T>) => T;
462
- }
463
-
464
- export interface DescribeContactRequest {
465
-
466
- contactId: string | undefined;
467
- }
468
- export declare enum ContactStatus {
469
- AVAILABLE = "AVAILABLE",
470
- AWS_CANCELLED = "AWS_CANCELLED",
471
- AWS_FAILED = "AWS_FAILED",
472
- CANCELLED = "CANCELLED",
473
- CANCELLING = "CANCELLING",
474
- COMPLETED = "COMPLETED",
475
- FAILED = "FAILED",
476
- FAILED_TO_SCHEDULE = "FAILED_TO_SCHEDULE",
477
- PASS = "PASS",
478
- POSTPASS = "POSTPASS",
479
- PREPASS = "PREPASS",
480
- SCHEDULED = "SCHEDULED",
481
- SCHEDULING = "SCHEDULING"
482
- }
483
-
484
- export interface Destination {
485
-
486
- configType?: ConfigCapabilityType | string;
487
-
488
- configId?: string;
489
-
490
- configDetails?: ConfigDetails;
491
-
492
- dataflowDestinationRegion?: string;
493
- }
494
-
495
- export interface Source {
496
-
497
- configType?: ConfigCapabilityType | string;
498
-
499
- configId?: string;
500
-
501
- configDetails?: ConfigDetails;
502
-
503
- dataflowSourceRegion?: string;
504
- }
505
-
506
- export interface DataflowDetail {
507
-
508
- source?: Source;
509
-
510
- destination?: Destination;
511
-
512
- errorMessage?: string;
513
- }
514
-
515
- export interface Elevation {
516
-
517
- value: number | undefined;
518
-
519
- unit: AngleUnits | string | undefined;
520
- }
521
-
522
- export interface DescribeContactResponse {
523
-
524
- contactId?: string;
525
-
526
- missionProfileArn?: string;
527
-
528
- satelliteArn?: string;
529
-
530
- startTime?: Date;
531
-
532
- endTime?: Date;
533
-
534
- prePassStartTime?: Date;
535
-
536
- postPassEndTime?: Date;
537
-
538
- groundStation?: string;
539
-
540
- contactStatus?: ContactStatus | string;
541
-
542
- errorMessage?: string;
543
-
544
- maximumElevation?: Elevation;
545
-
546
- tags?: Record<string, string>;
547
-
548
- region?: string;
549
-
550
- dataflowList?: DataflowDetail[];
551
- }
552
-
553
- export interface ListContactsRequest {
554
-
555
- maxResults?: number;
556
-
557
- nextToken?: string;
558
-
559
- statusList: (ContactStatus | string)[] | undefined;
560
-
561
- startTime: Date | undefined;
562
-
563
- endTime: Date | undefined;
564
-
565
- groundStation?: string;
566
-
567
- satelliteArn?: string;
568
-
569
- missionProfileArn?: string;
570
- }
571
-
572
- export interface ContactData {
573
-
574
- contactId?: string;
575
-
576
- missionProfileArn?: string;
577
-
578
- satelliteArn?: string;
579
-
580
- startTime?: Date;
581
-
582
- endTime?: Date;
583
-
584
- prePassStartTime?: Date;
585
-
586
- postPassEndTime?: Date;
587
-
588
- groundStation?: string;
589
-
590
- contactStatus?: ContactStatus | string;
591
-
592
- errorMessage?: string;
593
-
594
- maximumElevation?: Elevation;
595
-
596
- region?: string;
597
-
598
- tags?: Record<string, string>;
599
- }
600
-
601
- export interface ListContactsResponse {
602
-
603
- nextToken?: string;
604
-
605
- contactList?: ContactData[];
606
- }
607
-
608
- export interface ReserveContactRequest {
609
-
610
- missionProfileArn: string | undefined;
611
-
612
- satelliteArn: string | undefined;
613
-
614
- startTime: Date | undefined;
615
-
616
- endTime: Date | undefined;
617
-
618
- groundStation: string | undefined;
619
-
620
- tags?: Record<string, string>;
621
- }
622
-
623
- export interface CreateDataflowEndpointGroupRequest {
624
-
625
- endpointDetails: EndpointDetails[] | undefined;
626
-
627
- tags?: Record<string, string>;
628
- }
629
-
630
- export interface DataflowEndpointGroupIdResponse {
631
-
632
- dataflowEndpointGroupId?: string;
633
- }
634
-
635
- export interface CreateMissionProfileRequest {
636
-
637
- name: string | undefined;
638
-
639
- contactPrePassDurationSeconds?: number;
640
-
641
- contactPostPassDurationSeconds?: number;
642
-
643
- minimumViableContactDurationSeconds: number | undefined;
644
-
645
- dataflowEdges: string[][] | undefined;
646
-
647
- trackingConfigArn: string | undefined;
648
-
649
- tags?: Record<string, string>;
650
- }
651
-
652
- export interface MissionProfileIdResponse {
653
-
654
- missionProfileId?: string;
655
- }
656
-
657
- export interface DeleteDataflowEndpointGroupRequest {
658
-
659
- dataflowEndpointGroupId: string | undefined;
660
- }
661
-
662
- export interface GetDataflowEndpointGroupRequest {
663
-
664
- dataflowEndpointGroupId: string | undefined;
665
- }
666
-
667
- export interface GetDataflowEndpointGroupResponse {
668
-
669
- dataflowEndpointGroupId?: string;
670
-
671
- dataflowEndpointGroupArn?: string;
672
-
673
- endpointsDetails?: EndpointDetails[];
674
-
675
- tags?: Record<string, string>;
676
- }
677
-
678
- export interface ListDataflowEndpointGroupsRequest {
679
-
680
- maxResults?: number;
681
-
682
- nextToken?: string;
683
- }
684
-
685
- export interface DataflowEndpointListItem {
686
-
687
- dataflowEndpointGroupId?: string;
688
-
689
- dataflowEndpointGroupArn?: string;
690
- }
691
-
692
- export interface ListDataflowEndpointGroupsResponse {
693
-
694
- nextToken?: string;
695
-
696
- dataflowEndpointGroupList?: DataflowEndpointListItem[];
697
- }
698
-
699
- export interface DeleteMissionProfileRequest {
700
-
701
- missionProfileId: string | undefined;
702
- }
703
-
704
- export interface GetMinuteUsageRequest {
705
-
706
- month: number | undefined;
707
-
708
- year: number | undefined;
709
- }
710
-
711
- export interface GetMinuteUsageResponse {
712
-
713
- isReservedMinutesCustomer?: boolean;
714
-
715
- totalReservedMinuteAllocation?: number;
716
-
717
- upcomingMinutesScheduled?: number;
718
-
719
- totalScheduledMinutes?: number;
720
-
721
- estimatedMinutesRemaining?: number;
722
- }
723
-
724
- export interface GetMissionProfileRequest {
725
-
726
- missionProfileId: string | undefined;
727
- }
728
-
729
- export interface GetMissionProfileResponse {
730
-
731
- missionProfileId?: string;
732
-
733
- missionProfileArn?: string;
734
-
735
- name?: string;
736
-
737
- region?: string;
738
-
739
- contactPrePassDurationSeconds?: number;
740
-
741
- contactPostPassDurationSeconds?: number;
742
-
743
- minimumViableContactDurationSeconds?: number;
744
-
745
- dataflowEdges?: string[][];
746
-
747
- trackingConfigArn?: string;
748
-
749
- tags?: Record<string, string>;
750
- }
751
-
752
- export interface GetSatelliteRequest {
753
-
754
- satelliteId: string | undefined;
755
- }
756
-
757
- export interface GetSatelliteResponse {
758
-
759
- satelliteId?: string;
760
-
761
- satelliteArn?: string;
762
-
763
- noradSatelliteID?: number;
764
-
765
- groundStations?: string[];
766
- }
767
-
768
- export interface ListGroundStationsRequest {
769
-
770
- satelliteId?: string;
771
-
772
- maxResults?: number;
773
-
774
- nextToken?: string;
775
- }
776
-
777
- export interface GroundStationData {
778
-
779
- groundStationId?: string;
780
-
781
- groundStationName?: string;
782
-
783
- region?: string;
784
- }
785
-
786
- export interface ListGroundStationsResponse {
787
-
788
- nextToken?: string;
789
-
790
- groundStationList?: GroundStationData[];
791
- }
792
-
793
- export interface ListTagsForResourceRequest {
794
-
795
- resourceArn: string | undefined;
796
- }
797
-
798
- export interface ListTagsForResourceResponse {
799
-
800
- tags?: Record<string, string>;
801
- }
802
-
803
- export interface ListMissionProfilesRequest {
804
-
805
- maxResults?: number;
806
-
807
- nextToken?: string;
808
- }
809
-
810
- export interface MissionProfileListItem {
811
-
812
- missionProfileId?: string;
813
-
814
- missionProfileArn?: string;
815
-
816
- region?: string;
817
-
818
- name?: string;
819
- }
820
-
821
- export interface ListMissionProfilesResponse {
822
-
823
- nextToken?: string;
824
-
825
- missionProfileList?: MissionProfileListItem[];
826
- }
827
-
828
- export interface UpdateMissionProfileRequest {
829
-
830
- missionProfileId: string | undefined;
831
-
832
- name?: string;
833
-
834
- contactPrePassDurationSeconds?: number;
835
-
836
- contactPostPassDurationSeconds?: number;
837
-
838
- minimumViableContactDurationSeconds?: number;
839
-
840
- dataflowEdges?: string[][];
841
-
842
- trackingConfigArn?: string;
843
- }
844
-
845
- export interface ListSatellitesRequest {
846
-
847
- maxResults?: number;
848
-
849
- nextToken?: string;
850
- }
851
-
852
- export interface SatelliteListItem {
853
-
854
- satelliteId?: string;
855
-
856
- satelliteArn?: string;
857
-
858
- noradSatelliteID?: number;
859
-
860
- groundStations?: string[];
861
- }
862
-
863
- export interface ListSatellitesResponse {
864
-
865
- nextToken?: string;
866
-
867
- satellites?: SatelliteListItem[];
868
- }
869
-
870
- export interface TagResourceRequest {
871
-
872
- resourceArn: string | undefined;
873
-
874
- tags: Record<string, string> | undefined;
875
- }
876
-
877
- export interface TagResourceResponse {
878
- }
879
-
880
- export interface UntagResourceRequest {
881
-
882
- resourceArn: string | undefined;
883
-
884
- tagKeys: string[] | undefined;
885
- }
886
-
887
- export interface UntagResourceResponse {
888
- }
889
-
890
- export declare const AntennaDemodDecodeDetailsFilterSensitiveLog: (obj: AntennaDemodDecodeDetails) => any;
891
-
892
- export declare const FrequencyBandwidthFilterSensitiveLog: (obj: FrequencyBandwidth) => any;
893
-
894
- export declare const FrequencyFilterSensitiveLog: (obj: Frequency) => any;
895
-
896
- export declare const SpectrumConfigFilterSensitiveLog: (obj: SpectrumConfig) => any;
897
-
898
- export declare const AntennaDownlinkConfigFilterSensitiveLog: (obj: AntennaDownlinkConfig) => any;
899
-
900
- export declare const DecodeConfigFilterSensitiveLog: (obj: DecodeConfig) => any;
901
-
902
- export declare const DemodulationConfigFilterSensitiveLog: (obj: DemodulationConfig) => any;
903
-
904
- export declare const AntennaDownlinkDemodDecodeConfigFilterSensitiveLog: (obj: AntennaDownlinkDemodDecodeConfig) => any;
905
-
906
- export declare const UplinkSpectrumConfigFilterSensitiveLog: (obj: UplinkSpectrumConfig) => any;
907
-
908
- export declare const EirpFilterSensitiveLog: (obj: Eirp) => any;
909
-
910
- export declare const AntennaUplinkConfigFilterSensitiveLog: (obj: AntennaUplinkConfig) => any;
911
-
912
- export declare const CancelContactRequestFilterSensitiveLog: (obj: CancelContactRequest) => any;
913
-
914
- export declare const ContactIdResponseFilterSensitiveLog: (obj: ContactIdResponse) => any;
915
-
916
- export declare const ConfigIdResponseFilterSensitiveLog: (obj: ConfigIdResponse) => any;
917
-
918
- export declare const DataflowEndpointConfigFilterSensitiveLog: (obj: DataflowEndpointConfig) => any;
919
-
920
- export declare const S3RecordingConfigFilterSensitiveLog: (obj: S3RecordingConfig) => any;
921
-
922
- export declare const TrackingConfigFilterSensitiveLog: (obj: TrackingConfig) => any;
923
-
924
- export declare const UplinkEchoConfigFilterSensitiveLog: (obj: UplinkEchoConfig) => any;
925
-
926
- export declare const ConfigTypeDataFilterSensitiveLog: (obj: ConfigTypeData) => any;
927
-
928
- export declare const CreateConfigRequestFilterSensitiveLog: (obj: CreateConfigRequest) => any;
929
-
930
- export declare const DeleteConfigRequestFilterSensitiveLog: (obj: DeleteConfigRequest) => any;
931
-
932
- export declare const GetConfigRequestFilterSensitiveLog: (obj: GetConfigRequest) => any;
933
-
934
- export declare const GetConfigResponseFilterSensitiveLog: (obj: GetConfigResponse) => any;
935
-
936
- export declare const ListConfigsRequestFilterSensitiveLog: (obj: ListConfigsRequest) => any;
937
-
938
- export declare const ConfigListItemFilterSensitiveLog: (obj: ConfigListItem) => any;
939
-
940
- export declare const ListConfigsResponseFilterSensitiveLog: (obj: ListConfigsResponse) => any;
941
-
942
- export declare const UpdateConfigRequestFilterSensitiveLog: (obj: UpdateConfigRequest) => any;
943
-
944
- export declare const SocketAddressFilterSensitiveLog: (obj: SocketAddress) => any;
945
-
946
- export declare const DataflowEndpointFilterSensitiveLog: (obj: DataflowEndpoint) => any;
947
-
948
- export declare const SecurityDetailsFilterSensitiveLog: (obj: SecurityDetails) => any;
949
-
950
- export declare const EndpointDetailsFilterSensitiveLog: (obj: EndpointDetails) => any;
951
-
952
- export declare const S3RecordingDetailsFilterSensitiveLog: (obj: S3RecordingDetails) => any;
953
-
954
- export declare const ConfigDetailsFilterSensitiveLog: (obj: ConfigDetails) => any;
955
-
956
- export declare const DescribeContactRequestFilterSensitiveLog: (obj: DescribeContactRequest) => any;
957
-
958
- export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
959
-
960
- export declare const SourceFilterSensitiveLog: (obj: Source) => any;
961
-
962
- export declare const DataflowDetailFilterSensitiveLog: (obj: DataflowDetail) => any;
963
-
964
- export declare const ElevationFilterSensitiveLog: (obj: Elevation) => any;
965
-
966
- export declare const DescribeContactResponseFilterSensitiveLog: (obj: DescribeContactResponse) => any;
967
-
968
- export declare const ListContactsRequestFilterSensitiveLog: (obj: ListContactsRequest) => any;
969
-
970
- export declare const ContactDataFilterSensitiveLog: (obj: ContactData) => any;
971
-
972
- export declare const ListContactsResponseFilterSensitiveLog: (obj: ListContactsResponse) => any;
973
-
974
- export declare const ReserveContactRequestFilterSensitiveLog: (obj: ReserveContactRequest) => any;
975
-
976
- export declare const CreateDataflowEndpointGroupRequestFilterSensitiveLog: (obj: CreateDataflowEndpointGroupRequest) => any;
977
-
978
- export declare const DataflowEndpointGroupIdResponseFilterSensitiveLog: (obj: DataflowEndpointGroupIdResponse) => any;
979
-
980
- export declare const CreateMissionProfileRequestFilterSensitiveLog: (obj: CreateMissionProfileRequest) => any;
981
-
982
- export declare const MissionProfileIdResponseFilterSensitiveLog: (obj: MissionProfileIdResponse) => any;
983
-
984
- export declare const DeleteDataflowEndpointGroupRequestFilterSensitiveLog: (obj: DeleteDataflowEndpointGroupRequest) => any;
985
-
986
- export declare const GetDataflowEndpointGroupRequestFilterSensitiveLog: (obj: GetDataflowEndpointGroupRequest) => any;
987
-
988
- export declare const GetDataflowEndpointGroupResponseFilterSensitiveLog: (obj: GetDataflowEndpointGroupResponse) => any;
989
-
990
- export declare const ListDataflowEndpointGroupsRequestFilterSensitiveLog: (obj: ListDataflowEndpointGroupsRequest) => any;
991
-
992
- export declare const DataflowEndpointListItemFilterSensitiveLog: (obj: DataflowEndpointListItem) => any;
993
-
994
- export declare const ListDataflowEndpointGroupsResponseFilterSensitiveLog: (obj: ListDataflowEndpointGroupsResponse) => any;
995
-
996
- export declare const DeleteMissionProfileRequestFilterSensitiveLog: (obj: DeleteMissionProfileRequest) => any;
997
-
998
- export declare const GetMinuteUsageRequestFilterSensitiveLog: (obj: GetMinuteUsageRequest) => any;
999
-
1000
- export declare const GetMinuteUsageResponseFilterSensitiveLog: (obj: GetMinuteUsageResponse) => any;
1001
-
1002
- export declare const GetMissionProfileRequestFilterSensitiveLog: (obj: GetMissionProfileRequest) => any;
1003
-
1004
- export declare const GetMissionProfileResponseFilterSensitiveLog: (obj: GetMissionProfileResponse) => any;
1005
-
1006
- export declare const GetSatelliteRequestFilterSensitiveLog: (obj: GetSatelliteRequest) => any;
1007
-
1008
- export declare const GetSatelliteResponseFilterSensitiveLog: (obj: GetSatelliteResponse) => any;
1009
-
1010
- export declare const ListGroundStationsRequestFilterSensitiveLog: (obj: ListGroundStationsRequest) => any;
1011
-
1012
- export declare const GroundStationDataFilterSensitiveLog: (obj: GroundStationData) => any;
1013
-
1014
- export declare const ListGroundStationsResponseFilterSensitiveLog: (obj: ListGroundStationsResponse) => any;
1015
-
1016
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1017
-
1018
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1019
-
1020
- export declare const ListMissionProfilesRequestFilterSensitiveLog: (obj: ListMissionProfilesRequest) => any;
1021
-
1022
- export declare const MissionProfileListItemFilterSensitiveLog: (obj: MissionProfileListItem) => any;
1023
-
1024
- export declare const ListMissionProfilesResponseFilterSensitiveLog: (obj: ListMissionProfilesResponse) => any;
1025
-
1026
- export declare const UpdateMissionProfileRequestFilterSensitiveLog: (obj: UpdateMissionProfileRequest) => any;
1027
-
1028
- export declare const ListSatellitesRequestFilterSensitiveLog: (obj: ListSatellitesRequest) => any;
1029
-
1030
- export declare const SatelliteListItemFilterSensitiveLog: (obj: SatelliteListItem) => any;
1031
-
1032
- export declare const ListSatellitesResponseFilterSensitiveLog: (obj: ListSatellitesResponse) => any;
1033
-
1034
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1035
-
1036
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1037
-
1038
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1039
-
1040
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
3
+ export declare enum AngleUnits {
4
+ DEGREE_ANGLE = "DEGREE_ANGLE",
5
+ RADIAN = "RADIAN",
6
+ }
7
+ export interface AntennaDemodDecodeDetails {
8
+ outputNode?: string;
9
+ }
10
+ export declare enum BandwidthUnits {
11
+ GHZ = "GHz",
12
+ KHZ = "kHz",
13
+ MHZ = "MHz",
14
+ }
15
+ export interface FrequencyBandwidth {
16
+ value: number | undefined;
17
+ units: BandwidthUnits | string | undefined;
18
+ }
19
+ export declare enum FrequencyUnits {
20
+ GHZ = "GHz",
21
+ KHZ = "kHz",
22
+ MHZ = "MHz",
23
+ }
24
+ export interface Frequency {
25
+ value: number | undefined;
26
+ units: FrequencyUnits | string | undefined;
27
+ }
28
+ export declare enum Polarization {
29
+ LEFT_HAND = "LEFT_HAND",
30
+ NONE = "NONE",
31
+ RIGHT_HAND = "RIGHT_HAND",
32
+ }
33
+ export interface SpectrumConfig {
34
+ centerFrequency: Frequency | undefined;
35
+ bandwidth: FrequencyBandwidth | undefined;
36
+ polarization?: Polarization | string;
37
+ }
38
+ export interface AntennaDownlinkConfig {
39
+ spectrumConfig: SpectrumConfig | undefined;
40
+ }
41
+ export interface DecodeConfig {
42
+ unvalidatedJSON: string | undefined;
43
+ }
44
+ export interface DemodulationConfig {
45
+ unvalidatedJSON: string | undefined;
46
+ }
47
+ export interface AntennaDownlinkDemodDecodeConfig {
48
+ spectrumConfig: SpectrumConfig | undefined;
49
+ demodulationConfig: DemodulationConfig | undefined;
50
+ decodeConfig: DecodeConfig | undefined;
51
+ }
52
+ export interface UplinkSpectrumConfig {
53
+ centerFrequency: Frequency | undefined;
54
+ polarization?: Polarization | string;
55
+ }
56
+ export declare enum EirpUnits {
57
+ DBW = "dBW",
58
+ }
59
+ export interface Eirp {
60
+ value: number | undefined;
61
+ units: EirpUnits | string | undefined;
62
+ }
63
+ export interface AntennaUplinkConfig {
64
+ transmitDisabled?: boolean;
65
+ spectrumConfig: UplinkSpectrumConfig | undefined;
66
+ targetEirp: Eirp | undefined;
67
+ }
68
+ export interface CancelContactRequest {
69
+ contactId: string | undefined;
70
+ }
71
+ export interface ContactIdResponse {
72
+ contactId?: string;
73
+ }
74
+ export declare class DependencyException extends __BaseException {
75
+ readonly name: "DependencyException";
76
+ readonly $fault: "server";
77
+ parameterName?: string;
78
+ constructor(
79
+ opts: __ExceptionOptionType<DependencyException, __BaseException>
80
+ );
81
+ }
82
+ export declare class InvalidParameterException extends __BaseException {
83
+ readonly name: "InvalidParameterException";
84
+ readonly $fault: "client";
85
+ parameterName?: string;
86
+ constructor(
87
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
88
+ );
89
+ }
90
+ export declare class ResourceNotFoundException extends __BaseException {
91
+ readonly name: "ResourceNotFoundException";
92
+ readonly $fault: "client";
93
+ constructor(
94
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
95
+ );
96
+ }
97
+ export declare enum ConfigCapabilityType {
98
+ ANTENNA_DOWNLINK = "antenna-downlink",
99
+ ANTENNA_DOWNLINK_DEMOD_DECODE = "antenna-downlink-demod-decode",
100
+ ANTENNA_UPLINK = "antenna-uplink",
101
+ DATAFLOW_ENDPOINT = "dataflow-endpoint",
102
+ S3_RECORDING = "s3-recording",
103
+ TRACKING = "tracking",
104
+ UPLINK_ECHO = "uplink-echo",
105
+ }
106
+ export interface ConfigIdResponse {
107
+ configId?: string;
108
+ configType?: ConfigCapabilityType | string;
109
+ configArn?: string;
110
+ }
111
+ export interface DataflowEndpointConfig {
112
+ dataflowEndpointName: string | undefined;
113
+ dataflowEndpointRegion?: string;
114
+ }
115
+ export interface S3RecordingConfig {
116
+ bucketArn: string | undefined;
117
+ roleArn: string | undefined;
118
+ prefix?: string;
119
+ }
120
+ export declare enum Criticality {
121
+ PREFERRED = "PREFERRED",
122
+ REMOVED = "REMOVED",
123
+ REQUIRED = "REQUIRED",
124
+ }
125
+ export interface TrackingConfig {
126
+ autotrack: Criticality | string | undefined;
127
+ }
128
+ export interface UplinkEchoConfig {
129
+ enabled: boolean | undefined;
130
+ antennaUplinkConfigArn: string | undefined;
131
+ }
132
+ export declare type ConfigTypeData =
133
+ | ConfigTypeData.AntennaDownlinkConfigMember
134
+ | ConfigTypeData.AntennaDownlinkDemodDecodeConfigMember
135
+ | ConfigTypeData.AntennaUplinkConfigMember
136
+ | ConfigTypeData.DataflowEndpointConfigMember
137
+ | ConfigTypeData.S3RecordingConfigMember
138
+ | ConfigTypeData.TrackingConfigMember
139
+ | ConfigTypeData.UplinkEchoConfigMember
140
+ | ConfigTypeData.$UnknownMember;
141
+ export declare namespace ConfigTypeData {
142
+ interface AntennaDownlinkConfigMember {
143
+ antennaDownlinkConfig: AntennaDownlinkConfig;
144
+ trackingConfig?: never;
145
+ dataflowEndpointConfig?: never;
146
+ antennaDownlinkDemodDecodeConfig?: never;
147
+ antennaUplinkConfig?: never;
148
+ uplinkEchoConfig?: never;
149
+ s3RecordingConfig?: never;
150
+ $unknown?: never;
151
+ }
152
+ interface TrackingConfigMember {
153
+ antennaDownlinkConfig?: never;
154
+ trackingConfig: TrackingConfig;
155
+ dataflowEndpointConfig?: never;
156
+ antennaDownlinkDemodDecodeConfig?: never;
157
+ antennaUplinkConfig?: never;
158
+ uplinkEchoConfig?: never;
159
+ s3RecordingConfig?: never;
160
+ $unknown?: never;
161
+ }
162
+ interface DataflowEndpointConfigMember {
163
+ antennaDownlinkConfig?: never;
164
+ trackingConfig?: never;
165
+ dataflowEndpointConfig: DataflowEndpointConfig;
166
+ antennaDownlinkDemodDecodeConfig?: never;
167
+ antennaUplinkConfig?: never;
168
+ uplinkEchoConfig?: never;
169
+ s3RecordingConfig?: never;
170
+ $unknown?: never;
171
+ }
172
+ interface AntennaDownlinkDemodDecodeConfigMember {
173
+ antennaDownlinkConfig?: never;
174
+ trackingConfig?: never;
175
+ dataflowEndpointConfig?: never;
176
+ antennaDownlinkDemodDecodeConfig: AntennaDownlinkDemodDecodeConfig;
177
+ antennaUplinkConfig?: never;
178
+ uplinkEchoConfig?: never;
179
+ s3RecordingConfig?: never;
180
+ $unknown?: never;
181
+ }
182
+ interface AntennaUplinkConfigMember {
183
+ antennaDownlinkConfig?: never;
184
+ trackingConfig?: never;
185
+ dataflowEndpointConfig?: never;
186
+ antennaDownlinkDemodDecodeConfig?: never;
187
+ antennaUplinkConfig: AntennaUplinkConfig;
188
+ uplinkEchoConfig?: never;
189
+ s3RecordingConfig?: never;
190
+ $unknown?: never;
191
+ }
192
+ interface UplinkEchoConfigMember {
193
+ antennaDownlinkConfig?: never;
194
+ trackingConfig?: never;
195
+ dataflowEndpointConfig?: never;
196
+ antennaDownlinkDemodDecodeConfig?: never;
197
+ antennaUplinkConfig?: never;
198
+ uplinkEchoConfig: UplinkEchoConfig;
199
+ s3RecordingConfig?: never;
200
+ $unknown?: never;
201
+ }
202
+ interface S3RecordingConfigMember {
203
+ antennaDownlinkConfig?: never;
204
+ trackingConfig?: never;
205
+ dataflowEndpointConfig?: never;
206
+ antennaDownlinkDemodDecodeConfig?: never;
207
+ antennaUplinkConfig?: never;
208
+ uplinkEchoConfig?: never;
209
+ s3RecordingConfig: S3RecordingConfig;
210
+ $unknown?: never;
211
+ }
212
+ interface $UnknownMember {
213
+ antennaDownlinkConfig?: never;
214
+ trackingConfig?: never;
215
+ dataflowEndpointConfig?: never;
216
+ antennaDownlinkDemodDecodeConfig?: never;
217
+ antennaUplinkConfig?: never;
218
+ uplinkEchoConfig?: never;
219
+ s3RecordingConfig?: never;
220
+ $unknown: [string, any];
221
+ }
222
+ interface Visitor<T> {
223
+ antennaDownlinkConfig: (value: AntennaDownlinkConfig) => T;
224
+ trackingConfig: (value: TrackingConfig) => T;
225
+ dataflowEndpointConfig: (value: DataflowEndpointConfig) => T;
226
+ antennaDownlinkDemodDecodeConfig: (
227
+ value: AntennaDownlinkDemodDecodeConfig
228
+ ) => T;
229
+ antennaUplinkConfig: (value: AntennaUplinkConfig) => T;
230
+ uplinkEchoConfig: (value: UplinkEchoConfig) => T;
231
+ s3RecordingConfig: (value: S3RecordingConfig) => T;
232
+ _: (name: string, value: any) => T;
233
+ }
234
+ const visit: <T>(value: ConfigTypeData, visitor: Visitor<T>) => T;
235
+ }
236
+ export interface CreateConfigRequest {
237
+ name: string | undefined;
238
+ configData: ConfigTypeData | undefined;
239
+ tags?: Record<string, string>;
240
+ }
241
+ export declare class ResourceLimitExceededException extends __BaseException {
242
+ readonly name: "ResourceLimitExceededException";
243
+ readonly $fault: "client";
244
+ parameterName?: string;
245
+ constructor(
246
+ opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
247
+ );
248
+ }
249
+ export interface DeleteConfigRequest {
250
+ configId: string | undefined;
251
+ configType: ConfigCapabilityType | string | undefined;
252
+ }
253
+ export interface GetConfigRequest {
254
+ configId: string | undefined;
255
+ configType: ConfigCapabilityType | string | undefined;
256
+ }
257
+ export interface GetConfigResponse {
258
+ configId: string | undefined;
259
+ configArn: string | undefined;
260
+ name: string | undefined;
261
+ configType?: ConfigCapabilityType | string;
262
+ configData: ConfigTypeData | undefined;
263
+ tags?: Record<string, string>;
264
+ }
265
+ export interface ListConfigsRequest {
266
+ maxResults?: number;
267
+ nextToken?: string;
268
+ }
269
+ export interface ConfigListItem {
270
+ configId?: string;
271
+ configType?: ConfigCapabilityType | string;
272
+ configArn?: string;
273
+ name?: string;
274
+ }
275
+ export interface ListConfigsResponse {
276
+ nextToken?: string;
277
+ configList?: ConfigListItem[];
278
+ }
279
+ export interface UpdateConfigRequest {
280
+ configId: string | undefined;
281
+ name: string | undefined;
282
+ configType: ConfigCapabilityType | string | undefined;
283
+ configData: ConfigTypeData | undefined;
284
+ }
285
+ export interface SocketAddress {
286
+ name: string | undefined;
287
+ port: number | undefined;
288
+ }
289
+ export declare enum EndpointStatus {
290
+ created = "created",
291
+ creating = "creating",
292
+ deleted = "deleted",
293
+ deleting = "deleting",
294
+ failed = "failed",
295
+ }
296
+ export interface DataflowEndpoint {
297
+ name?: string;
298
+ address?: SocketAddress;
299
+ status?: EndpointStatus | string;
300
+ mtu?: number;
301
+ }
302
+ export interface SecurityDetails {
303
+ subnetIds: string[] | undefined;
304
+ securityGroupIds: string[] | undefined;
305
+ roleArn: string | undefined;
306
+ }
307
+ export interface EndpointDetails {
308
+ securityDetails?: SecurityDetails;
309
+ endpoint?: DataflowEndpoint;
310
+ }
311
+ export interface S3RecordingDetails {
312
+ bucketArn?: string;
313
+ keyTemplate?: string;
314
+ }
315
+ export declare type ConfigDetails =
316
+ | ConfigDetails.AntennaDemodDecodeDetailsMember
317
+ | ConfigDetails.EndpointDetailsMember
318
+ | ConfigDetails.S3RecordingDetailsMember
319
+ | ConfigDetails.$UnknownMember;
320
+ export declare namespace ConfigDetails {
321
+ interface EndpointDetailsMember {
322
+ endpointDetails: EndpointDetails;
323
+ antennaDemodDecodeDetails?: never;
324
+ s3RecordingDetails?: never;
325
+ $unknown?: never;
326
+ }
327
+ interface AntennaDemodDecodeDetailsMember {
328
+ endpointDetails?: never;
329
+ antennaDemodDecodeDetails: AntennaDemodDecodeDetails;
330
+ s3RecordingDetails?: never;
331
+ $unknown?: never;
332
+ }
333
+ interface S3RecordingDetailsMember {
334
+ endpointDetails?: never;
335
+ antennaDemodDecodeDetails?: never;
336
+ s3RecordingDetails: S3RecordingDetails;
337
+ $unknown?: never;
338
+ }
339
+ interface $UnknownMember {
340
+ endpointDetails?: never;
341
+ antennaDemodDecodeDetails?: never;
342
+ s3RecordingDetails?: never;
343
+ $unknown: [string, any];
344
+ }
345
+ interface Visitor<T> {
346
+ endpointDetails: (value: EndpointDetails) => T;
347
+ antennaDemodDecodeDetails: (value: AntennaDemodDecodeDetails) => T;
348
+ s3RecordingDetails: (value: S3RecordingDetails) => T;
349
+ _: (name: string, value: any) => T;
350
+ }
351
+ const visit: <T>(value: ConfigDetails, visitor: Visitor<T>) => T;
352
+ }
353
+ export interface DescribeContactRequest {
354
+ contactId: string | undefined;
355
+ }
356
+ export declare enum ContactStatus {
357
+ AVAILABLE = "AVAILABLE",
358
+ AWS_CANCELLED = "AWS_CANCELLED",
359
+ AWS_FAILED = "AWS_FAILED",
360
+ CANCELLED = "CANCELLED",
361
+ CANCELLING = "CANCELLING",
362
+ COMPLETED = "COMPLETED",
363
+ FAILED = "FAILED",
364
+ FAILED_TO_SCHEDULE = "FAILED_TO_SCHEDULE",
365
+ PASS = "PASS",
366
+ POSTPASS = "POSTPASS",
367
+ PREPASS = "PREPASS",
368
+ SCHEDULED = "SCHEDULED",
369
+ SCHEDULING = "SCHEDULING",
370
+ }
371
+ export interface Destination {
372
+ configType?: ConfigCapabilityType | string;
373
+ configId?: string;
374
+ configDetails?: ConfigDetails;
375
+ dataflowDestinationRegion?: string;
376
+ }
377
+ export interface Source {
378
+ configType?: ConfigCapabilityType | string;
379
+ configId?: string;
380
+ configDetails?: ConfigDetails;
381
+ dataflowSourceRegion?: string;
382
+ }
383
+ export interface DataflowDetail {
384
+ source?: Source;
385
+ destination?: Destination;
386
+ errorMessage?: string;
387
+ }
388
+ export interface Elevation {
389
+ value: number | undefined;
390
+ unit: AngleUnits | string | undefined;
391
+ }
392
+ export interface DescribeContactResponse {
393
+ contactId?: string;
394
+ missionProfileArn?: string;
395
+ satelliteArn?: string;
396
+ startTime?: Date;
397
+ endTime?: Date;
398
+ prePassStartTime?: Date;
399
+ postPassEndTime?: Date;
400
+ groundStation?: string;
401
+ contactStatus?: ContactStatus | string;
402
+ errorMessage?: string;
403
+ maximumElevation?: Elevation;
404
+ tags?: Record<string, string>;
405
+ region?: string;
406
+ dataflowList?: DataflowDetail[];
407
+ }
408
+ export interface ListContactsRequest {
409
+ maxResults?: number;
410
+ nextToken?: string;
411
+ statusList: (ContactStatus | string)[] | undefined;
412
+ startTime: Date | undefined;
413
+ endTime: Date | undefined;
414
+ groundStation?: string;
415
+ satelliteArn?: string;
416
+ missionProfileArn?: string;
417
+ }
418
+ export interface ContactData {
419
+ contactId?: string;
420
+ missionProfileArn?: string;
421
+ satelliteArn?: string;
422
+ startTime?: Date;
423
+ endTime?: Date;
424
+ prePassStartTime?: Date;
425
+ postPassEndTime?: Date;
426
+ groundStation?: string;
427
+ contactStatus?: ContactStatus | string;
428
+ errorMessage?: string;
429
+ maximumElevation?: Elevation;
430
+ region?: string;
431
+ tags?: Record<string, string>;
432
+ }
433
+ export interface ListContactsResponse {
434
+ nextToken?: string;
435
+ contactList?: ContactData[];
436
+ }
437
+ export interface ReserveContactRequest {
438
+ missionProfileArn: string | undefined;
439
+ satelliteArn: string | undefined;
440
+ startTime: Date | undefined;
441
+ endTime: Date | undefined;
442
+ groundStation: string | undefined;
443
+ tags?: Record<string, string>;
444
+ }
445
+ export interface CreateDataflowEndpointGroupRequest {
446
+ endpointDetails: EndpointDetails[] | undefined;
447
+ tags?: Record<string, string>;
448
+ }
449
+ export interface DataflowEndpointGroupIdResponse {
450
+ dataflowEndpointGroupId?: string;
451
+ }
452
+ export interface CreateMissionProfileRequest {
453
+ name: string | undefined;
454
+ contactPrePassDurationSeconds?: number;
455
+ contactPostPassDurationSeconds?: number;
456
+ minimumViableContactDurationSeconds: number | undefined;
457
+ dataflowEdges: string[][] | undefined;
458
+ trackingConfigArn: string | undefined;
459
+ tags?: Record<string, string>;
460
+ }
461
+ export interface MissionProfileIdResponse {
462
+ missionProfileId?: string;
463
+ }
464
+ export interface DeleteDataflowEndpointGroupRequest {
465
+ dataflowEndpointGroupId: string | undefined;
466
+ }
467
+ export interface GetDataflowEndpointGroupRequest {
468
+ dataflowEndpointGroupId: string | undefined;
469
+ }
470
+ export interface GetDataflowEndpointGroupResponse {
471
+ dataflowEndpointGroupId?: string;
472
+ dataflowEndpointGroupArn?: string;
473
+ endpointsDetails?: EndpointDetails[];
474
+ tags?: Record<string, string>;
475
+ }
476
+ export interface ListDataflowEndpointGroupsRequest {
477
+ maxResults?: number;
478
+ nextToken?: string;
479
+ }
480
+ export interface DataflowEndpointListItem {
481
+ dataflowEndpointGroupId?: string;
482
+ dataflowEndpointGroupArn?: string;
483
+ }
484
+ export interface ListDataflowEndpointGroupsResponse {
485
+ nextToken?: string;
486
+ dataflowEndpointGroupList?: DataflowEndpointListItem[];
487
+ }
488
+ export interface DeleteMissionProfileRequest {
489
+ missionProfileId: string | undefined;
490
+ }
491
+ export interface GetMinuteUsageRequest {
492
+ month: number | undefined;
493
+ year: number | undefined;
494
+ }
495
+ export interface GetMinuteUsageResponse {
496
+ isReservedMinutesCustomer?: boolean;
497
+ totalReservedMinuteAllocation?: number;
498
+ upcomingMinutesScheduled?: number;
499
+ totalScheduledMinutes?: number;
500
+ estimatedMinutesRemaining?: number;
501
+ }
502
+ export interface GetMissionProfileRequest {
503
+ missionProfileId: string | undefined;
504
+ }
505
+ export interface GetMissionProfileResponse {
506
+ missionProfileId?: string;
507
+ missionProfileArn?: string;
508
+ name?: string;
509
+ region?: string;
510
+ contactPrePassDurationSeconds?: number;
511
+ contactPostPassDurationSeconds?: number;
512
+ minimumViableContactDurationSeconds?: number;
513
+ dataflowEdges?: string[][];
514
+ trackingConfigArn?: string;
515
+ tags?: Record<string, string>;
516
+ }
517
+ export interface GetSatelliteRequest {
518
+ satelliteId: string | undefined;
519
+ }
520
+ export interface GetSatelliteResponse {
521
+ satelliteId?: string;
522
+ satelliteArn?: string;
523
+ noradSatelliteID?: number;
524
+ groundStations?: string[];
525
+ }
526
+ export interface ListGroundStationsRequest {
527
+ satelliteId?: string;
528
+ maxResults?: number;
529
+ nextToken?: string;
530
+ }
531
+ export interface GroundStationData {
532
+ groundStationId?: string;
533
+ groundStationName?: string;
534
+ region?: string;
535
+ }
536
+ export interface ListGroundStationsResponse {
537
+ nextToken?: string;
538
+ groundStationList?: GroundStationData[];
539
+ }
540
+ export interface ListTagsForResourceRequest {
541
+ resourceArn: string | undefined;
542
+ }
543
+ export interface ListTagsForResourceResponse {
544
+ tags?: Record<string, string>;
545
+ }
546
+ export interface ListMissionProfilesRequest {
547
+ maxResults?: number;
548
+ nextToken?: string;
549
+ }
550
+ export interface MissionProfileListItem {
551
+ missionProfileId?: string;
552
+ missionProfileArn?: string;
553
+ region?: string;
554
+ name?: string;
555
+ }
556
+ export interface ListMissionProfilesResponse {
557
+ nextToken?: string;
558
+ missionProfileList?: MissionProfileListItem[];
559
+ }
560
+ export interface UpdateMissionProfileRequest {
561
+ missionProfileId: string | undefined;
562
+ name?: string;
563
+ contactPrePassDurationSeconds?: number;
564
+ contactPostPassDurationSeconds?: number;
565
+ minimumViableContactDurationSeconds?: number;
566
+ dataflowEdges?: string[][];
567
+ trackingConfigArn?: string;
568
+ }
569
+ export interface ListSatellitesRequest {
570
+ maxResults?: number;
571
+ nextToken?: string;
572
+ }
573
+ export interface SatelliteListItem {
574
+ satelliteId?: string;
575
+ satelliteArn?: string;
576
+ noradSatelliteID?: number;
577
+ groundStations?: string[];
578
+ }
579
+ export interface ListSatellitesResponse {
580
+ nextToken?: string;
581
+ satellites?: SatelliteListItem[];
582
+ }
583
+ export interface TagResourceRequest {
584
+ resourceArn: string | undefined;
585
+ tags: Record<string, string> | undefined;
586
+ }
587
+ export interface TagResourceResponse {}
588
+ export interface UntagResourceRequest {
589
+ resourceArn: string | undefined;
590
+ tagKeys: string[] | undefined;
591
+ }
592
+ export interface UntagResourceResponse {}
593
+ export declare const AntennaDemodDecodeDetailsFilterSensitiveLog: (
594
+ obj: AntennaDemodDecodeDetails
595
+ ) => any;
596
+ export declare const FrequencyBandwidthFilterSensitiveLog: (
597
+ obj: FrequencyBandwidth
598
+ ) => any;
599
+ export declare const FrequencyFilterSensitiveLog: (obj: Frequency) => any;
600
+ export declare const SpectrumConfigFilterSensitiveLog: (
601
+ obj: SpectrumConfig
602
+ ) => any;
603
+ export declare const AntennaDownlinkConfigFilterSensitiveLog: (
604
+ obj: AntennaDownlinkConfig
605
+ ) => any;
606
+ export declare const DecodeConfigFilterSensitiveLog: (obj: DecodeConfig) => any;
607
+ export declare const DemodulationConfigFilterSensitiveLog: (
608
+ obj: DemodulationConfig
609
+ ) => any;
610
+ export declare const AntennaDownlinkDemodDecodeConfigFilterSensitiveLog: (
611
+ obj: AntennaDownlinkDemodDecodeConfig
612
+ ) => any;
613
+ export declare const UplinkSpectrumConfigFilterSensitiveLog: (
614
+ obj: UplinkSpectrumConfig
615
+ ) => any;
616
+ export declare const EirpFilterSensitiveLog: (obj: Eirp) => any;
617
+ export declare const AntennaUplinkConfigFilterSensitiveLog: (
618
+ obj: AntennaUplinkConfig
619
+ ) => any;
620
+ export declare const CancelContactRequestFilterSensitiveLog: (
621
+ obj: CancelContactRequest
622
+ ) => any;
623
+ export declare const ContactIdResponseFilterSensitiveLog: (
624
+ obj: ContactIdResponse
625
+ ) => any;
626
+ export declare const ConfigIdResponseFilterSensitiveLog: (
627
+ obj: ConfigIdResponse
628
+ ) => any;
629
+ export declare const DataflowEndpointConfigFilterSensitiveLog: (
630
+ obj: DataflowEndpointConfig
631
+ ) => any;
632
+ export declare const S3RecordingConfigFilterSensitiveLog: (
633
+ obj: S3RecordingConfig
634
+ ) => any;
635
+ export declare const TrackingConfigFilterSensitiveLog: (
636
+ obj: TrackingConfig
637
+ ) => any;
638
+ export declare const UplinkEchoConfigFilterSensitiveLog: (
639
+ obj: UplinkEchoConfig
640
+ ) => any;
641
+ export declare const ConfigTypeDataFilterSensitiveLog: (
642
+ obj: ConfigTypeData
643
+ ) => any;
644
+ export declare const CreateConfigRequestFilterSensitiveLog: (
645
+ obj: CreateConfigRequest
646
+ ) => any;
647
+ export declare const DeleteConfigRequestFilterSensitiveLog: (
648
+ obj: DeleteConfigRequest
649
+ ) => any;
650
+ export declare const GetConfigRequestFilterSensitiveLog: (
651
+ obj: GetConfigRequest
652
+ ) => any;
653
+ export declare const GetConfigResponseFilterSensitiveLog: (
654
+ obj: GetConfigResponse
655
+ ) => any;
656
+ export declare const ListConfigsRequestFilterSensitiveLog: (
657
+ obj: ListConfigsRequest
658
+ ) => any;
659
+ export declare const ConfigListItemFilterSensitiveLog: (
660
+ obj: ConfigListItem
661
+ ) => any;
662
+ export declare const ListConfigsResponseFilterSensitiveLog: (
663
+ obj: ListConfigsResponse
664
+ ) => any;
665
+ export declare const UpdateConfigRequestFilterSensitiveLog: (
666
+ obj: UpdateConfigRequest
667
+ ) => any;
668
+ export declare const SocketAddressFilterSensitiveLog: (
669
+ obj: SocketAddress
670
+ ) => any;
671
+ export declare const DataflowEndpointFilterSensitiveLog: (
672
+ obj: DataflowEndpoint
673
+ ) => any;
674
+ export declare const SecurityDetailsFilterSensitiveLog: (
675
+ obj: SecurityDetails
676
+ ) => any;
677
+ export declare const EndpointDetailsFilterSensitiveLog: (
678
+ obj: EndpointDetails
679
+ ) => any;
680
+ export declare const S3RecordingDetailsFilterSensitiveLog: (
681
+ obj: S3RecordingDetails
682
+ ) => any;
683
+ export declare const ConfigDetailsFilterSensitiveLog: (
684
+ obj: ConfigDetails
685
+ ) => any;
686
+ export declare const DescribeContactRequestFilterSensitiveLog: (
687
+ obj: DescribeContactRequest
688
+ ) => any;
689
+ export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
690
+ export declare const SourceFilterSensitiveLog: (obj: Source) => any;
691
+ export declare const DataflowDetailFilterSensitiveLog: (
692
+ obj: DataflowDetail
693
+ ) => any;
694
+ export declare const ElevationFilterSensitiveLog: (obj: Elevation) => any;
695
+ export declare const DescribeContactResponseFilterSensitiveLog: (
696
+ obj: DescribeContactResponse
697
+ ) => any;
698
+ export declare const ListContactsRequestFilterSensitiveLog: (
699
+ obj: ListContactsRequest
700
+ ) => any;
701
+ export declare const ContactDataFilterSensitiveLog: (obj: ContactData) => any;
702
+ export declare const ListContactsResponseFilterSensitiveLog: (
703
+ obj: ListContactsResponse
704
+ ) => any;
705
+ export declare const ReserveContactRequestFilterSensitiveLog: (
706
+ obj: ReserveContactRequest
707
+ ) => any;
708
+ export declare const CreateDataflowEndpointGroupRequestFilterSensitiveLog: (
709
+ obj: CreateDataflowEndpointGroupRequest
710
+ ) => any;
711
+ export declare const DataflowEndpointGroupIdResponseFilterSensitiveLog: (
712
+ obj: DataflowEndpointGroupIdResponse
713
+ ) => any;
714
+ export declare const CreateMissionProfileRequestFilterSensitiveLog: (
715
+ obj: CreateMissionProfileRequest
716
+ ) => any;
717
+ export declare const MissionProfileIdResponseFilterSensitiveLog: (
718
+ obj: MissionProfileIdResponse
719
+ ) => any;
720
+ export declare const DeleteDataflowEndpointGroupRequestFilterSensitiveLog: (
721
+ obj: DeleteDataflowEndpointGroupRequest
722
+ ) => any;
723
+ export declare const GetDataflowEndpointGroupRequestFilterSensitiveLog: (
724
+ obj: GetDataflowEndpointGroupRequest
725
+ ) => any;
726
+ export declare const GetDataflowEndpointGroupResponseFilterSensitiveLog: (
727
+ obj: GetDataflowEndpointGroupResponse
728
+ ) => any;
729
+ export declare const ListDataflowEndpointGroupsRequestFilterSensitiveLog: (
730
+ obj: ListDataflowEndpointGroupsRequest
731
+ ) => any;
732
+ export declare const DataflowEndpointListItemFilterSensitiveLog: (
733
+ obj: DataflowEndpointListItem
734
+ ) => any;
735
+ export declare const ListDataflowEndpointGroupsResponseFilterSensitiveLog: (
736
+ obj: ListDataflowEndpointGroupsResponse
737
+ ) => any;
738
+ export declare const DeleteMissionProfileRequestFilterSensitiveLog: (
739
+ obj: DeleteMissionProfileRequest
740
+ ) => any;
741
+ export declare const GetMinuteUsageRequestFilterSensitiveLog: (
742
+ obj: GetMinuteUsageRequest
743
+ ) => any;
744
+ export declare const GetMinuteUsageResponseFilterSensitiveLog: (
745
+ obj: GetMinuteUsageResponse
746
+ ) => any;
747
+ export declare const GetMissionProfileRequestFilterSensitiveLog: (
748
+ obj: GetMissionProfileRequest
749
+ ) => any;
750
+ export declare const GetMissionProfileResponseFilterSensitiveLog: (
751
+ obj: GetMissionProfileResponse
752
+ ) => any;
753
+ export declare const GetSatelliteRequestFilterSensitiveLog: (
754
+ obj: GetSatelliteRequest
755
+ ) => any;
756
+ export declare const GetSatelliteResponseFilterSensitiveLog: (
757
+ obj: GetSatelliteResponse
758
+ ) => any;
759
+ export declare const ListGroundStationsRequestFilterSensitiveLog: (
760
+ obj: ListGroundStationsRequest
761
+ ) => any;
762
+ export declare const GroundStationDataFilterSensitiveLog: (
763
+ obj: GroundStationData
764
+ ) => any;
765
+ export declare const ListGroundStationsResponseFilterSensitiveLog: (
766
+ obj: ListGroundStationsResponse
767
+ ) => any;
768
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
769
+ obj: ListTagsForResourceRequest
770
+ ) => any;
771
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
772
+ obj: ListTagsForResourceResponse
773
+ ) => any;
774
+ export declare const ListMissionProfilesRequestFilterSensitiveLog: (
775
+ obj: ListMissionProfilesRequest
776
+ ) => any;
777
+ export declare const MissionProfileListItemFilterSensitiveLog: (
778
+ obj: MissionProfileListItem
779
+ ) => any;
780
+ export declare const ListMissionProfilesResponseFilterSensitiveLog: (
781
+ obj: ListMissionProfilesResponse
782
+ ) => any;
783
+ export declare const UpdateMissionProfileRequestFilterSensitiveLog: (
784
+ obj: UpdateMissionProfileRequest
785
+ ) => any;
786
+ export declare const ListSatellitesRequestFilterSensitiveLog: (
787
+ obj: ListSatellitesRequest
788
+ ) => any;
789
+ export declare const SatelliteListItemFilterSensitiveLog: (
790
+ obj: SatelliteListItem
791
+ ) => any;
792
+ export declare const ListSatellitesResponseFilterSensitiveLog: (
793
+ obj: ListSatellitesResponse
794
+ ) => any;
795
+ export declare const TagResourceRequestFilterSensitiveLog: (
796
+ obj: TagResourceRequest
797
+ ) => any;
798
+ export declare const TagResourceResponseFilterSensitiveLog: (
799
+ obj: TagResourceResponse
800
+ ) => any;
801
+ export declare const UntagResourceRequestFilterSensitiveLog: (
802
+ obj: UntagResourceRequest
803
+ ) => any;
804
+ export declare const UntagResourceResponseFilterSensitiveLog: (
805
+ obj: UntagResourceResponse
806
+ ) => any;