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