@aws-sdk/client-groundstation 3.261.0 → 3.264.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 (31) hide show
  1. package/dist-cjs/GroundStation.js +45 -0
  2. package/dist-cjs/commands/GetAgentConfigurationCommand.js +46 -0
  3. package/dist-cjs/commands/RegisterAgentCommand.js +46 -0
  4. package/dist-cjs/commands/UpdateAgentStatusCommand.js +46 -0
  5. package/dist-cjs/commands/index.js +3 -0
  6. package/dist-cjs/models/models_0.js +138 -34
  7. package/dist-cjs/protocols/Aws_restJson1.js +410 -2
  8. package/dist-es/GroundStation.js +45 -0
  9. package/dist-es/commands/GetAgentConfigurationCommand.js +42 -0
  10. package/dist-es/commands/RegisterAgentCommand.js +42 -0
  11. package/dist-es/commands/UpdateAgentStatusCommand.js +42 -0
  12. package/dist-es/commands/index.js +3 -0
  13. package/dist-es/models/models_0.js +117 -30
  14. package/dist-es/protocols/Aws_restJson1.js +403 -1
  15. package/dist-types/GroundStation.d.ts +21 -0
  16. package/dist-types/GroundStationClient.d.ts +5 -2
  17. package/dist-types/commands/GetAgentConfigurationCommand.d.ts +37 -0
  18. package/dist-types/commands/RegisterAgentCommand.d.ts +37 -0
  19. package/dist-types/commands/UpdateAgentStatusCommand.d.ts +37 -0
  20. package/dist-types/commands/index.d.ts +3 -0
  21. package/dist-types/models/models_0.d.ts +425 -47
  22. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  23. package/dist-types/ts3.4/GroundStation.d.ts +51 -0
  24. package/dist-types/ts3.4/GroundStationClient.d.ts +18 -0
  25. package/dist-types/ts3.4/commands/GetAgentConfigurationCommand.d.ts +41 -0
  26. package/dist-types/ts3.4/commands/RegisterAgentCommand.d.ts +37 -0
  27. package/dist-types/ts3.4/commands/UpdateAgentStatusCommand.d.ts +38 -0
  28. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  29. package/dist-types/ts3.4/models/models_0.d.ts +199 -30
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  31. package/package.json +4 -4
@@ -43,6 +43,10 @@ import {
43
43
  DescribeEphemerisCommandInput,
44
44
  DescribeEphemerisCommandOutput,
45
45
  } from "./commands/DescribeEphemerisCommand";
46
+ import {
47
+ GetAgentConfigurationCommandInput,
48
+ GetAgentConfigurationCommandOutput,
49
+ } from "./commands/GetAgentConfigurationCommand";
46
50
  import {
47
51
  GetConfigCommandInput,
48
52
  GetConfigCommandOutput,
@@ -95,6 +99,10 @@ import {
95
99
  ListTagsForResourceCommandInput,
96
100
  ListTagsForResourceCommandOutput,
97
101
  } from "./commands/ListTagsForResourceCommand";
102
+ import {
103
+ RegisterAgentCommandInput,
104
+ RegisterAgentCommandOutput,
105
+ } from "./commands/RegisterAgentCommand";
98
106
  import {
99
107
  ReserveContactCommandInput,
100
108
  ReserveContactCommandOutput,
@@ -107,6 +115,10 @@ import {
107
115
  UntagResourceCommandInput,
108
116
  UntagResourceCommandOutput,
109
117
  } from "./commands/UntagResourceCommand";
118
+ import {
119
+ UpdateAgentStatusCommandInput,
120
+ UpdateAgentStatusCommandOutput,
121
+ } from "./commands/UpdateAgentStatusCommand";
110
122
  import {
111
123
  UpdateConfigCommandInput,
112
124
  UpdateConfigCommandOutput,
@@ -264,6 +276,19 @@ export declare class GroundStation extends GroundStationClient {
264
276
  options: __HttpHandlerOptions,
265
277
  cb: (err: any, data?: DescribeEphemerisCommandOutput) => void
266
278
  ): void;
279
+ getAgentConfiguration(
280
+ args: GetAgentConfigurationCommandInput,
281
+ options?: __HttpHandlerOptions
282
+ ): Promise<GetAgentConfigurationCommandOutput>;
283
+ getAgentConfiguration(
284
+ args: GetAgentConfigurationCommandInput,
285
+ cb: (err: any, data?: GetAgentConfigurationCommandOutput) => void
286
+ ): void;
287
+ getAgentConfiguration(
288
+ args: GetAgentConfigurationCommandInput,
289
+ options: __HttpHandlerOptions,
290
+ cb: (err: any, data?: GetAgentConfigurationCommandOutput) => void
291
+ ): void;
267
292
  getConfig(
268
293
  args: GetConfigCommandInput,
269
294
  options?: __HttpHandlerOptions
@@ -433,6 +458,19 @@ export declare class GroundStation extends GroundStationClient {
433
458
  options: __HttpHandlerOptions,
434
459
  cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
435
460
  ): void;
461
+ registerAgent(
462
+ args: RegisterAgentCommandInput,
463
+ options?: __HttpHandlerOptions
464
+ ): Promise<RegisterAgentCommandOutput>;
465
+ registerAgent(
466
+ args: RegisterAgentCommandInput,
467
+ cb: (err: any, data?: RegisterAgentCommandOutput) => void
468
+ ): void;
469
+ registerAgent(
470
+ args: RegisterAgentCommandInput,
471
+ options: __HttpHandlerOptions,
472
+ cb: (err: any, data?: RegisterAgentCommandOutput) => void
473
+ ): void;
436
474
  reserveContact(
437
475
  args: ReserveContactCommandInput,
438
476
  options?: __HttpHandlerOptions
@@ -472,6 +510,19 @@ export declare class GroundStation extends GroundStationClient {
472
510
  options: __HttpHandlerOptions,
473
511
  cb: (err: any, data?: UntagResourceCommandOutput) => void
474
512
  ): void;
513
+ updateAgentStatus(
514
+ args: UpdateAgentStatusCommandInput,
515
+ options?: __HttpHandlerOptions
516
+ ): Promise<UpdateAgentStatusCommandOutput>;
517
+ updateAgentStatus(
518
+ args: UpdateAgentStatusCommandInput,
519
+ cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void
520
+ ): void;
521
+ updateAgentStatus(
522
+ args: UpdateAgentStatusCommandInput,
523
+ options: __HttpHandlerOptions,
524
+ cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void
525
+ ): void;
475
526
  updateConfig(
476
527
  args: UpdateConfigCommandInput,
477
528
  options?: __HttpHandlerOptions
@@ -88,6 +88,10 @@ import {
88
88
  DescribeEphemerisCommandInput,
89
89
  DescribeEphemerisCommandOutput,
90
90
  } from "./commands/DescribeEphemerisCommand";
91
+ import {
92
+ GetAgentConfigurationCommandInput,
93
+ GetAgentConfigurationCommandOutput,
94
+ } from "./commands/GetAgentConfigurationCommand";
91
95
  import {
92
96
  GetConfigCommandInput,
93
97
  GetConfigCommandOutput,
@@ -140,6 +144,10 @@ import {
140
144
  ListTagsForResourceCommandInput,
141
145
  ListTagsForResourceCommandOutput,
142
146
  } from "./commands/ListTagsForResourceCommand";
147
+ import {
148
+ RegisterAgentCommandInput,
149
+ RegisterAgentCommandOutput,
150
+ } from "./commands/RegisterAgentCommand";
143
151
  import {
144
152
  ReserveContactCommandInput,
145
153
  ReserveContactCommandOutput,
@@ -152,6 +160,10 @@ import {
152
160
  UntagResourceCommandInput,
153
161
  UntagResourceCommandOutput,
154
162
  } from "./commands/UntagResourceCommand";
163
+ import {
164
+ UpdateAgentStatusCommandInput,
165
+ UpdateAgentStatusCommandOutput,
166
+ } from "./commands/UpdateAgentStatusCommand";
155
167
  import {
156
168
  UpdateConfigCommandInput,
157
169
  UpdateConfigCommandOutput,
@@ -181,6 +193,7 @@ export declare type ServiceInputTypes =
181
193
  | DeleteMissionProfileCommandInput
182
194
  | DescribeContactCommandInput
183
195
  | DescribeEphemerisCommandInput
196
+ | GetAgentConfigurationCommandInput
184
197
  | GetConfigCommandInput
185
198
  | GetDataflowEndpointGroupCommandInput
186
199
  | GetMinuteUsageCommandInput
@@ -194,9 +207,11 @@ export declare type ServiceInputTypes =
194
207
  | ListMissionProfilesCommandInput
195
208
  | ListSatellitesCommandInput
196
209
  | ListTagsForResourceCommandInput
210
+ | RegisterAgentCommandInput
197
211
  | ReserveContactCommandInput
198
212
  | TagResourceCommandInput
199
213
  | UntagResourceCommandInput
214
+ | UpdateAgentStatusCommandInput
200
215
  | UpdateConfigCommandInput
201
216
  | UpdateEphemerisCommandInput
202
217
  | UpdateMissionProfileCommandInput;
@@ -212,6 +227,7 @@ export declare type ServiceOutputTypes =
212
227
  | DeleteMissionProfileCommandOutput
213
228
  | DescribeContactCommandOutput
214
229
  | DescribeEphemerisCommandOutput
230
+ | GetAgentConfigurationCommandOutput
215
231
  | GetConfigCommandOutput
216
232
  | GetDataflowEndpointGroupCommandOutput
217
233
  | GetMinuteUsageCommandOutput
@@ -225,9 +241,11 @@ export declare type ServiceOutputTypes =
225
241
  | ListMissionProfilesCommandOutput
226
242
  | ListSatellitesCommandOutput
227
243
  | ListTagsForResourceCommandOutput
244
+ | RegisterAgentCommandOutput
228
245
  | ReserveContactCommandOutput
229
246
  | TagResourceCommandOutput
230
247
  | UntagResourceCommandOutput
248
+ | UpdateAgentStatusCommandOutput
231
249
  | UpdateConfigCommandOutput
232
250
  | UpdateEphemerisCommandOutput
233
251
  | UpdateMissionProfileCommandOutput;
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ GroundStationClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../GroundStationClient";
14
+ import {
15
+ GetAgentConfigurationRequest,
16
+ GetAgentConfigurationResponse,
17
+ } from "../models/models_0";
18
+ export interface GetAgentConfigurationCommandInput
19
+ extends GetAgentConfigurationRequest {}
20
+ export interface GetAgentConfigurationCommandOutput
21
+ extends GetAgentConfigurationResponse,
22
+ __MetadataBearer {}
23
+ export declare class GetAgentConfigurationCommand extends $Command<
24
+ GetAgentConfigurationCommandInput,
25
+ GetAgentConfigurationCommandOutput,
26
+ GroundStationClientResolvedConfig
27
+ > {
28
+ readonly input: GetAgentConfigurationCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: GetAgentConfigurationCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: GroundStationClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetAgentConfigurationCommandInput,
37
+ GetAgentConfigurationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ GroundStationClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../GroundStationClient";
14
+ import {
15
+ RegisterAgentRequest,
16
+ RegisterAgentResponse,
17
+ } from "../models/models_0";
18
+ export interface RegisterAgentCommandInput extends RegisterAgentRequest {}
19
+ export interface RegisterAgentCommandOutput
20
+ extends RegisterAgentResponse,
21
+ __MetadataBearer {}
22
+ export declare class RegisterAgentCommand extends $Command<
23
+ RegisterAgentCommandInput,
24
+ RegisterAgentCommandOutput,
25
+ GroundStationClientResolvedConfig
26
+ > {
27
+ readonly input: RegisterAgentCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: RegisterAgentCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: GroundStationClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<RegisterAgentCommandInput, RegisterAgentCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ GroundStationClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../GroundStationClient";
14
+ import {
15
+ UpdateAgentStatusRequest,
16
+ UpdateAgentStatusResponse,
17
+ } from "../models/models_0";
18
+ export interface UpdateAgentStatusCommandInput
19
+ extends UpdateAgentStatusRequest {}
20
+ export interface UpdateAgentStatusCommandOutput
21
+ extends UpdateAgentStatusResponse,
22
+ __MetadataBearer {}
23
+ export declare class UpdateAgentStatusCommand extends $Command<
24
+ UpdateAgentStatusCommandInput,
25
+ UpdateAgentStatusCommandOutput,
26
+ GroundStationClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateAgentStatusCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: UpdateAgentStatusCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: GroundStationClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -9,6 +9,7 @@ export * from "./DeleteEphemerisCommand";
9
9
  export * from "./DeleteMissionProfileCommand";
10
10
  export * from "./DescribeContactCommand";
11
11
  export * from "./DescribeEphemerisCommand";
12
+ export * from "./GetAgentConfigurationCommand";
12
13
  export * from "./GetConfigCommand";
13
14
  export * from "./GetDataflowEndpointGroupCommand";
14
15
  export * from "./GetMinuteUsageCommand";
@@ -22,9 +23,11 @@ export * from "./ListGroundStationsCommand";
22
23
  export * from "./ListMissionProfilesCommand";
23
24
  export * from "./ListSatellitesCommand";
24
25
  export * from "./ListTagsForResourceCommand";
26
+ export * from "./RegisterAgentCommand";
25
27
  export * from "./ReserveContactCommand";
26
28
  export * from "./TagResourceCommand";
27
29
  export * from "./UntagResourceCommand";
30
+ export * from "./UpdateAgentStatusCommand";
28
31
  export * from "./UpdateConfigCommand";
29
32
  export * from "./UpdateEphemerisCommand";
30
33
  export * from "./UpdateMissionProfileCommand";
@@ -1,5 +1,91 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
3
+ export declare class DependencyException extends __BaseException {
4
+ readonly name: "DependencyException";
5
+ readonly $fault: "server";
6
+ parameterName?: string;
7
+ constructor(
8
+ opts: __ExceptionOptionType<DependencyException, __BaseException>
9
+ );
10
+ }
11
+ export interface GetAgentConfigurationRequest {
12
+ agentId: string | undefined;
13
+ }
14
+ export interface GetAgentConfigurationResponse {
15
+ agentId?: string;
16
+ taskingDocument?: string;
17
+ }
18
+ export declare class InvalidParameterException extends __BaseException {
19
+ readonly name: "InvalidParameterException";
20
+ readonly $fault: "client";
21
+ parameterName?: string;
22
+ constructor(
23
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
24
+ );
25
+ }
26
+ export declare class ResourceNotFoundException extends __BaseException {
27
+ readonly name: "ResourceNotFoundException";
28
+ readonly $fault: "client";
29
+ constructor(
30
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
31
+ );
32
+ }
33
+ export declare enum ComponentType {
34
+ DIGITIZER = "DIGITIZER",
35
+ LAMINAR_FLOW = "LAMINAR_FLOW",
36
+ PRISM = "PRISM",
37
+ }
38
+ export interface ComponentVersion {
39
+ componentType: ComponentType | string | undefined;
40
+ versions: string[] | undefined;
41
+ }
42
+ export interface AgentDetails {
43
+ agentVersion: string | undefined;
44
+ instanceId: string | undefined;
45
+ instanceType: string | undefined;
46
+ reservedCpuCores: number[] | undefined;
47
+ componentVersions: ComponentVersion[] | undefined;
48
+ }
49
+ export interface DiscoveryData {
50
+ publicIpAddresses: string[] | undefined;
51
+ privateIpAddresses: string[] | undefined;
52
+ capabilityArns: string[] | undefined;
53
+ }
54
+ export interface RegisterAgentRequest {
55
+ discoveryData: DiscoveryData | undefined;
56
+ agentDetails: AgentDetails | undefined;
57
+ }
58
+ export interface RegisterAgentResponse {
59
+ agentId?: string;
60
+ }
61
+ export declare enum AgentStatus {
62
+ ACTIVE = "ACTIVE",
63
+ FAILED = "FAILED",
64
+ INACTIVE = "INACTIVE",
65
+ SUCCESS = "SUCCESS",
66
+ }
67
+ export interface AggregateStatus {
68
+ status: AgentStatus | string | undefined;
69
+ signatureMap?: Record<string, boolean>;
70
+ }
71
+ export interface ComponentStatusData {
72
+ componentType: ComponentType | string | undefined;
73
+ capabilityArn: string | undefined;
74
+ status: AgentStatus | string | undefined;
75
+ bytesSent?: number;
76
+ bytesReceived?: number;
77
+ packetsDropped?: number;
78
+ dataflowId: string | undefined;
79
+ }
80
+ export interface UpdateAgentStatusRequest {
81
+ agentId: string | undefined;
82
+ taskId: string | undefined;
83
+ aggregateStatus: AggregateStatus | undefined;
84
+ componentStatuses: ComponentStatusData[] | undefined;
85
+ }
86
+ export interface UpdateAgentStatusResponse {
87
+ agentId: string | undefined;
88
+ }
3
89
  export declare enum AngleUnits {
4
90
  DEGREE_ANGLE = "DEGREE_ANGLE",
5
91
  RADIAN = "RADIAN",
@@ -65,35 +151,43 @@ export interface AntennaUplinkConfig {
65
151
  spectrumConfig: UplinkSpectrumConfig | undefined;
66
152
  targetEirp: Eirp | undefined;
67
153
  }
154
+ export declare enum AuditResults {
155
+ HEALTHY = "HEALTHY",
156
+ UNHEALTHY = "UNHEALTHY",
157
+ }
158
+ export interface SocketAddress {
159
+ name: string | undefined;
160
+ port: number | undefined;
161
+ }
162
+ export interface ConnectionDetails {
163
+ socketAddress: SocketAddress | undefined;
164
+ mtu?: number;
165
+ }
166
+ export interface IntegerRange {
167
+ minimum: number | undefined;
168
+ maximum: number | undefined;
169
+ }
170
+ export interface RangedSocketAddress {
171
+ name: string | undefined;
172
+ portRange: IntegerRange | undefined;
173
+ }
174
+ export interface RangedConnectionDetails {
175
+ socketAddress: RangedSocketAddress | undefined;
176
+ mtu?: number;
177
+ }
178
+ export interface AwsGroundStationAgentEndpoint {
179
+ name: string | undefined;
180
+ egressAddress: ConnectionDetails | undefined;
181
+ ingressAddress: RangedConnectionDetails | undefined;
182
+ agentStatus?: AgentStatus | string;
183
+ auditResults?: AuditResults | string;
184
+ }
68
185
  export interface CancelContactRequest {
69
186
  contactId: string | undefined;
70
187
  }
71
188
  export interface ContactIdResponse {
72
189
  contactId?: string;
73
190
  }
74
- export declare class DependencyException extends __BaseException {
75
- readonly name: "DependencyException";
76
- readonly $fault: "server";
77
- parameterName?: string;
78
- constructor(
79
- opts: __ExceptionOptionType<DependencyException, __BaseException>
80
- );
81
- }
82
- export declare class InvalidParameterException extends __BaseException {
83
- readonly name: "InvalidParameterException";
84
- readonly $fault: "client";
85
- parameterName?: string;
86
- constructor(
87
- opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
88
- );
89
- }
90
- export declare class ResourceNotFoundException extends __BaseException {
91
- readonly name: "ResourceNotFoundException";
92
- readonly $fault: "client";
93
- constructor(
94
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
95
- );
96
- }
97
191
  export declare enum ConfigCapabilityType {
98
192
  ANTENNA_DOWNLINK = "antenna-downlink",
99
193
  ANTENNA_DOWNLINK_DEMOD_DECODE = "antenna-downlink-demod-decode",
@@ -282,10 +376,6 @@ export interface UpdateConfigRequest {
282
376
  configType: ConfigCapabilityType | string | undefined;
283
377
  configData: ConfigTypeData | undefined;
284
378
  }
285
- export interface SocketAddress {
286
- name: string | undefined;
287
- port: number | undefined;
288
- }
289
379
  export declare enum EndpointStatus {
290
380
  created = "created",
291
381
  creating = "creating",
@@ -307,6 +397,7 @@ export interface SecurityDetails {
307
397
  export interface EndpointDetails {
308
398
  securityDetails?: SecurityDetails;
309
399
  endpoint?: DataflowEndpoint;
400
+ awsGroundStationAgentEndpoint?: AwsGroundStationAgentEndpoint;
310
401
  }
311
402
  export interface S3RecordingDetails {
312
403
  bucketArn?: string;
@@ -513,6 +604,33 @@ export interface CreateEphemerisRequest {
513
604
  export interface EphemerisIdResponse {
514
605
  ephemerisId?: string;
515
606
  }
607
+ export declare type KmsKey =
608
+ | KmsKey.KmsAliasArnMember
609
+ | KmsKey.KmsKeyArnMember
610
+ | KmsKey.$UnknownMember;
611
+ export declare namespace KmsKey {
612
+ interface KmsKeyArnMember {
613
+ kmsKeyArn: string;
614
+ kmsAliasArn?: never;
615
+ $unknown?: never;
616
+ }
617
+ interface KmsAliasArnMember {
618
+ kmsKeyArn?: never;
619
+ kmsAliasArn: string;
620
+ $unknown?: never;
621
+ }
622
+ interface $UnknownMember {
623
+ kmsKeyArn?: never;
624
+ kmsAliasArn?: never;
625
+ $unknown: [string, any];
626
+ }
627
+ interface Visitor<T> {
628
+ kmsKeyArn: (value: string) => T;
629
+ kmsAliasArn: (value: string) => T;
630
+ _: (name: string, value: any) => T;
631
+ }
632
+ const visit: <T>(value: KmsKey, visitor: Visitor<T>) => T;
633
+ }
516
634
  export interface CreateMissionProfileRequest {
517
635
  name: string | undefined;
518
636
  contactPrePassDurationSeconds?: number;
@@ -521,6 +639,8 @@ export interface CreateMissionProfileRequest {
521
639
  dataflowEdges: string[][] | undefined;
522
640
  trackingConfigArn: string | undefined;
523
641
  tags?: Record<string, string>;
642
+ streamsKmsKey?: KmsKey;
643
+ streamsKmsRole?: string;
524
644
  }
525
645
  export interface MissionProfileIdResponse {
526
646
  missionProfileId?: string;
@@ -680,6 +800,8 @@ export interface GetMissionProfileResponse {
680
800
  dataflowEdges?: string[][];
681
801
  trackingConfigArn?: string;
682
802
  tags?: Record<string, string>;
803
+ streamsKmsKey?: KmsKey;
804
+ streamsKmsRole?: string;
683
805
  }
684
806
  export interface GetSatelliteRequest {
685
807
  satelliteId: string | undefined;
@@ -733,6 +855,8 @@ export interface UpdateMissionProfileRequest {
733
855
  minimumViableContactDurationSeconds?: number;
734
856
  dataflowEdges?: string[][];
735
857
  trackingConfigArn?: string;
858
+ streamsKmsKey?: KmsKey;
859
+ streamsKmsRole?: string;
736
860
  }
737
861
  export interface ListSatellitesRequest {
738
862
  maxResults?: number;
@@ -759,6 +883,37 @@ export interface UntagResourceRequest {
759
883
  tagKeys: string[] | undefined;
760
884
  }
761
885
  export interface UntagResourceResponse {}
886
+ export declare const GetAgentConfigurationRequestFilterSensitiveLog: (
887
+ obj: GetAgentConfigurationRequest
888
+ ) => any;
889
+ export declare const GetAgentConfigurationResponseFilterSensitiveLog: (
890
+ obj: GetAgentConfigurationResponse
891
+ ) => any;
892
+ export declare const ComponentVersionFilterSensitiveLog: (
893
+ obj: ComponentVersion
894
+ ) => any;
895
+ export declare const AgentDetailsFilterSensitiveLog: (obj: AgentDetails) => any;
896
+ export declare const DiscoveryDataFilterSensitiveLog: (
897
+ obj: DiscoveryData
898
+ ) => any;
899
+ export declare const RegisterAgentRequestFilterSensitiveLog: (
900
+ obj: RegisterAgentRequest
901
+ ) => any;
902
+ export declare const RegisterAgentResponseFilterSensitiveLog: (
903
+ obj: RegisterAgentResponse
904
+ ) => any;
905
+ export declare const AggregateStatusFilterSensitiveLog: (
906
+ obj: AggregateStatus
907
+ ) => any;
908
+ export declare const ComponentStatusDataFilterSensitiveLog: (
909
+ obj: ComponentStatusData
910
+ ) => any;
911
+ export declare const UpdateAgentStatusRequestFilterSensitiveLog: (
912
+ obj: UpdateAgentStatusRequest
913
+ ) => any;
914
+ export declare const UpdateAgentStatusResponseFilterSensitiveLog: (
915
+ obj: UpdateAgentStatusResponse
916
+ ) => any;
762
917
  export declare const AntennaDemodDecodeDetailsFilterSensitiveLog: (
763
918
  obj: AntennaDemodDecodeDetails
764
919
  ) => any;
@@ -786,6 +941,22 @@ export declare const EirpFilterSensitiveLog: (obj: Eirp) => any;
786
941
  export declare const AntennaUplinkConfigFilterSensitiveLog: (
787
942
  obj: AntennaUplinkConfig
788
943
  ) => any;
944
+ export declare const SocketAddressFilterSensitiveLog: (
945
+ obj: SocketAddress
946
+ ) => any;
947
+ export declare const ConnectionDetailsFilterSensitiveLog: (
948
+ obj: ConnectionDetails
949
+ ) => any;
950
+ export declare const IntegerRangeFilterSensitiveLog: (obj: IntegerRange) => any;
951
+ export declare const RangedSocketAddressFilterSensitiveLog: (
952
+ obj: RangedSocketAddress
953
+ ) => any;
954
+ export declare const RangedConnectionDetailsFilterSensitiveLog: (
955
+ obj: RangedConnectionDetails
956
+ ) => any;
957
+ export declare const AwsGroundStationAgentEndpointFilterSensitiveLog: (
958
+ obj: AwsGroundStationAgentEndpoint
959
+ ) => any;
789
960
  export declare const CancelContactRequestFilterSensitiveLog: (
790
961
  obj: CancelContactRequest
791
962
  ) => any;
@@ -834,9 +1005,6 @@ export declare const ListConfigsResponseFilterSensitiveLog: (
834
1005
  export declare const UpdateConfigRequestFilterSensitiveLog: (
835
1006
  obj: UpdateConfigRequest
836
1007
  ) => any;
837
- export declare const SocketAddressFilterSensitiveLog: (
838
- obj: SocketAddress
839
- ) => any;
840
1008
  export declare const DataflowEndpointFilterSensitiveLog: (
841
1009
  obj: DataflowEndpoint
842
1010
  ) => any;
@@ -894,6 +1062,7 @@ export declare const CreateEphemerisRequestFilterSensitiveLog: (
894
1062
  export declare const EphemerisIdResponseFilterSensitiveLog: (
895
1063
  obj: EphemerisIdResponse
896
1064
  ) => any;
1065
+ export declare const KmsKeyFilterSensitiveLog: (obj: KmsKey) => any;
897
1066
  export declare const CreateMissionProfileRequestFilterSensitiveLog: (
898
1067
  obj: CreateMissionProfileRequest
899
1068
  ) => any;