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