@aws-sdk/client-mediaconnect 3.312.0 → 3.315.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/README.md +167 -7
- package/dist-cjs/MediaConnect.js +300 -0
- package/dist-cjs/commands/AddBridgeOutputsCommand.js +45 -0
- package/dist-cjs/commands/AddBridgeSourcesCommand.js +45 -0
- package/dist-cjs/commands/CreateBridgeCommand.js +45 -0
- package/dist-cjs/commands/CreateGatewayCommand.js +45 -0
- package/dist-cjs/commands/DeleteBridgeCommand.js +45 -0
- package/dist-cjs/commands/DeleteGatewayCommand.js +45 -0
- package/dist-cjs/commands/DeregisterGatewayInstanceCommand.js +45 -0
- package/dist-cjs/commands/DescribeBridgeCommand.js +45 -0
- package/dist-cjs/commands/DescribeGatewayCommand.js +45 -0
- package/dist-cjs/commands/DescribeGatewayInstanceCommand.js +45 -0
- package/dist-cjs/commands/ListBridgesCommand.js +45 -0
- package/dist-cjs/commands/ListGatewayInstancesCommand.js +45 -0
- package/dist-cjs/commands/ListGatewaysCommand.js +45 -0
- package/dist-cjs/commands/RemoveBridgeOutputCommand.js +45 -0
- package/dist-cjs/commands/RemoveBridgeSourceCommand.js +45 -0
- package/dist-cjs/commands/UpdateBridgeCommand.js +45 -0
- package/dist-cjs/commands/UpdateBridgeOutputCommand.js +45 -0
- package/dist-cjs/commands/UpdateBridgeSourceCommand.js +45 -0
- package/dist-cjs/commands/UpdateBridgeStateCommand.js +45 -0
- package/dist-cjs/commands/UpdateGatewayInstanceCommand.js +45 -0
- package/dist-cjs/commands/index.js +20 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +106 -20
- package/dist-cjs/pagination/ListBridgesPaginator.js +29 -0
- package/dist-cjs/pagination/ListGatewayInstancesPaginator.js +29 -0
- package/dist-cjs/pagination/ListGatewaysPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2740 -1056
- package/dist-es/MediaConnect.js +300 -0
- package/dist-es/commands/AddBridgeOutputsCommand.js +41 -0
- package/dist-es/commands/AddBridgeSourcesCommand.js +41 -0
- package/dist-es/commands/CreateBridgeCommand.js +41 -0
- package/dist-es/commands/CreateGatewayCommand.js +41 -0
- package/dist-es/commands/DeleteBridgeCommand.js +41 -0
- package/dist-es/commands/DeleteGatewayCommand.js +41 -0
- package/dist-es/commands/DeregisterGatewayInstanceCommand.js +41 -0
- package/dist-es/commands/DescribeBridgeCommand.js +41 -0
- package/dist-es/commands/DescribeGatewayCommand.js +41 -0
- package/dist-es/commands/DescribeGatewayInstanceCommand.js +41 -0
- package/dist-es/commands/ListBridgesCommand.js +41 -0
- package/dist-es/commands/ListGatewayInstancesCommand.js +41 -0
- package/dist-es/commands/ListGatewaysCommand.js +41 -0
- package/dist-es/commands/RemoveBridgeOutputCommand.js +41 -0
- package/dist-es/commands/RemoveBridgeSourceCommand.js +41 -0
- package/dist-es/commands/UpdateBridgeCommand.js +41 -0
- package/dist-es/commands/UpdateBridgeOutputCommand.js +41 -0
- package/dist-es/commands/UpdateBridgeSourceCommand.js +41 -0
- package/dist-es/commands/UpdateBridgeStateCommand.js +41 -0
- package/dist-es/commands/UpdateGatewayInstanceCommand.js +41 -0
- package/dist-es/commands/index.js +20 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +102 -19
- package/dist-es/pagination/ListBridgesPaginator.js +25 -0
- package/dist-es/pagination/ListGatewayInstancesPaginator.js +25 -0
- package/dist-es/pagination/ListGatewaysPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +2627 -983
- package/dist-types/MediaConnect.d.ts +160 -0
- package/dist-types/MediaConnectClient.d.ts +22 -2
- package/dist-types/commands/AddBridgeOutputsCommand.d.ts +96 -0
- package/dist-types/commands/AddBridgeSourcesCommand.d.ts +102 -0
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +1 -1
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +7 -1
- package/dist-types/commands/CreateBridgeCommand.d.ts +130 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +15 -3
- package/dist-types/commands/CreateGatewayCommand.d.ts +93 -0
- package/dist-types/commands/DeleteBridgeCommand.d.ts +84 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +84 -0
- package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +85 -0
- package/dist-types/commands/DescribeBridgeCommand.d.ts +84 -0
- package/dist-types/commands/DescribeGatewayCommand.d.ts +84 -0
- package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +84 -0
- package/dist-types/commands/ListBridgesCommand.d.ts +80 -0
- package/dist-types/commands/ListGatewayInstancesCommand.d.ts +80 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +79 -0
- package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +85 -0
- package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +85 -0
- package/dist-types/commands/UpdateBridgeCommand.d.ts +99 -0
- package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +92 -0
- package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +97 -0
- package/dist-types/commands/UpdateBridgeStateCommand.d.ts +85 -0
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +7 -1
- package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +85 -0
- package/dist-types/commands/index.d.ts +20 -0
- package/dist-types/models/models_0.d.ts +1340 -85
- package/dist-types/pagination/ListBridgesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayInstancesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewaysPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +180 -0
- package/dist-types/ts3.4/MediaConnect.d.ts +340 -0
- package/dist-types/ts3.4/MediaConnectClient.d.ts +122 -2
- package/dist-types/ts3.4/commands/AddBridgeOutputsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/AddBridgeSourcesCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateBridgeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteBridgeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeregisterGatewayInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeBridgeCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DescribeGatewayCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DescribeGatewayInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListBridgesCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListGatewayInstancesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/RemoveBridgeOutputCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/RemoveBridgeSourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateBridgeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateBridgeOutputCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateBridgeSourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateBridgeStateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateGatewayInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +20 -0
- package/dist-types/ts3.4/models/models_0.d.ts +442 -33
- package/dist-types/ts3.4/pagination/ListBridgesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +240 -0
- package/package.json +6 -6
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { MediaConnectServiceException as __BaseException } from "./MediaConnectServiceException";
|
|
3
|
+
export declare const Protocol: {
|
|
4
|
+
readonly cdi: "cdi";
|
|
5
|
+
readonly fujitsu_qos: "fujitsu-qos";
|
|
6
|
+
readonly rist: "rist";
|
|
7
|
+
readonly rtp: "rtp";
|
|
8
|
+
readonly rtp_fec: "rtp-fec";
|
|
9
|
+
readonly srt_caller: "srt-caller";
|
|
10
|
+
readonly srt_listener: "srt-listener";
|
|
11
|
+
readonly st2110_jpegxs: "st2110-jpegxs";
|
|
12
|
+
readonly udp: "udp";
|
|
13
|
+
readonly zixi_pull: "zixi-pull";
|
|
14
|
+
readonly zixi_push: "zixi-push";
|
|
15
|
+
};
|
|
16
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
17
|
+
export interface AddBridgeNetworkOutputRequest {
|
|
18
|
+
IpAddress: string | undefined;
|
|
19
|
+
Name: string | undefined;
|
|
20
|
+
NetworkName: string | undefined;
|
|
21
|
+
Port: number | undefined;
|
|
22
|
+
Protocol: Protocol | string | undefined;
|
|
23
|
+
Ttl: number | undefined;
|
|
24
|
+
}
|
|
25
|
+
export interface AddBridgeOutputRequest {
|
|
26
|
+
NetworkOutput?: AddBridgeNetworkOutputRequest;
|
|
27
|
+
}
|
|
28
|
+
export interface VpcInterfaceAttachment {
|
|
29
|
+
VpcInterfaceName?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface AddBridgeFlowSourceRequest {
|
|
32
|
+
FlowArn: string | undefined;
|
|
33
|
+
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
34
|
+
Name: string | undefined;
|
|
35
|
+
}
|
|
36
|
+
export interface AddBridgeNetworkSourceRequest {
|
|
37
|
+
MulticastIp: string | undefined;
|
|
38
|
+
Name: string | undefined;
|
|
39
|
+
NetworkName: string | undefined;
|
|
40
|
+
Port: number | undefined;
|
|
41
|
+
Protocol: Protocol | string | undefined;
|
|
42
|
+
}
|
|
43
|
+
export interface AddBridgeSourceRequest {
|
|
44
|
+
FlowSource?: AddBridgeFlowSourceRequest;
|
|
45
|
+
NetworkSource?: AddBridgeNetworkSourceRequest;
|
|
46
|
+
}
|
|
3
47
|
export declare const Colorimetry: {
|
|
4
48
|
readonly BT2020: "BT2020";
|
|
5
49
|
readonly BT2100: "BT2100";
|
|
@@ -117,22 +161,6 @@ export interface MediaStreamOutputConfigurationRequest {
|
|
|
117
161
|
EncodingParameters?: EncodingParametersRequest;
|
|
118
162
|
MediaStreamName: string | undefined;
|
|
119
163
|
}
|
|
120
|
-
export declare const Protocol: {
|
|
121
|
-
readonly cdi: "cdi";
|
|
122
|
-
readonly fujitsu_qos: "fujitsu-qos";
|
|
123
|
-
readonly rist: "rist";
|
|
124
|
-
readonly rtp: "rtp";
|
|
125
|
-
readonly rtp_fec: "rtp-fec";
|
|
126
|
-
readonly srt_caller: "srt-caller";
|
|
127
|
-
readonly srt_listener: "srt-listener";
|
|
128
|
-
readonly st2110_jpegxs: "st2110-jpegxs";
|
|
129
|
-
readonly zixi_pull: "zixi-pull";
|
|
130
|
-
readonly zixi_push: "zixi-push";
|
|
131
|
-
};
|
|
132
|
-
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
133
|
-
export interface VpcInterfaceAttachment {
|
|
134
|
-
VpcInterfaceName?: string;
|
|
135
|
-
}
|
|
136
164
|
export interface AddOutputRequest {
|
|
137
165
|
CidrAllowList?: string[];
|
|
138
166
|
Description?: string;
|
|
@@ -150,6 +178,40 @@ export interface AddOutputRequest {
|
|
|
150
178
|
StreamId?: string;
|
|
151
179
|
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
152
180
|
}
|
|
181
|
+
export interface BridgeFlowOutput {
|
|
182
|
+
FlowArn: string | undefined;
|
|
183
|
+
FlowSourceArn: string | undefined;
|
|
184
|
+
Name: string | undefined;
|
|
185
|
+
}
|
|
186
|
+
export interface BridgeNetworkOutput {
|
|
187
|
+
IpAddress: string | undefined;
|
|
188
|
+
Name: string | undefined;
|
|
189
|
+
NetworkName: string | undefined;
|
|
190
|
+
Port: number | undefined;
|
|
191
|
+
Protocol: Protocol | string | undefined;
|
|
192
|
+
Ttl: number | undefined;
|
|
193
|
+
}
|
|
194
|
+
export interface BridgeOutput {
|
|
195
|
+
FlowOutput?: BridgeFlowOutput;
|
|
196
|
+
NetworkOutput?: BridgeNetworkOutput;
|
|
197
|
+
}
|
|
198
|
+
export interface BridgeFlowSource {
|
|
199
|
+
FlowArn: string | undefined;
|
|
200
|
+
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
201
|
+
Name: string | undefined;
|
|
202
|
+
OutputArn?: string;
|
|
203
|
+
}
|
|
204
|
+
export interface BridgeNetworkSource {
|
|
205
|
+
MulticastIp: string | undefined;
|
|
206
|
+
Name: string | undefined;
|
|
207
|
+
NetworkName: string | undefined;
|
|
208
|
+
Port: number | undefined;
|
|
209
|
+
Protocol: Protocol | string | undefined;
|
|
210
|
+
}
|
|
211
|
+
export interface BridgeSource {
|
|
212
|
+
FlowSource?: BridgeFlowSource;
|
|
213
|
+
NetworkSource?: BridgeNetworkSource;
|
|
214
|
+
}
|
|
153
215
|
export interface Interface {
|
|
154
216
|
Name: string | undefined;
|
|
155
217
|
}
|
|
@@ -174,6 +236,10 @@ export interface Entitlement {
|
|
|
174
236
|
Name: string | undefined;
|
|
175
237
|
Subscribers: string[] | undefined;
|
|
176
238
|
}
|
|
239
|
+
export interface GatewayNetwork {
|
|
240
|
+
CidrBlock: string | undefined;
|
|
241
|
+
Name: string | undefined;
|
|
242
|
+
}
|
|
177
243
|
export interface GrantEntitlementRequest {
|
|
178
244
|
DataTransferSubscriberFeePercent?: number;
|
|
179
245
|
Description?: string;
|
|
@@ -191,6 +257,28 @@ export interface InputConfigurationRequest {
|
|
|
191
257
|
InputPort: number | undefined;
|
|
192
258
|
Interface: InterfaceRequest | undefined;
|
|
193
259
|
}
|
|
260
|
+
export declare const BridgeState: {
|
|
261
|
+
readonly ACTIVE: "ACTIVE";
|
|
262
|
+
readonly CREATING: "CREATING";
|
|
263
|
+
readonly DELETED: "DELETED";
|
|
264
|
+
readonly DELETING: "DELETING";
|
|
265
|
+
readonly DEPLOYING: "DEPLOYING";
|
|
266
|
+
readonly STANDBY: "STANDBY";
|
|
267
|
+
readonly STARTING: "STARTING";
|
|
268
|
+
readonly START_FAILED: "START_FAILED";
|
|
269
|
+
readonly START_PENDING: "START_PENDING";
|
|
270
|
+
readonly STOPPING: "STOPPING";
|
|
271
|
+
readonly STOP_FAILED: "STOP_FAILED";
|
|
272
|
+
readonly UPDATING: "UPDATING";
|
|
273
|
+
};
|
|
274
|
+
export type BridgeState = (typeof BridgeState)[keyof typeof BridgeState];
|
|
275
|
+
export interface ListedBridge {
|
|
276
|
+
BridgeArn: string | undefined;
|
|
277
|
+
BridgeState: BridgeState | string | undefined;
|
|
278
|
+
BridgeType: string | undefined;
|
|
279
|
+
Name: string | undefined;
|
|
280
|
+
PlacementArn: string | undefined;
|
|
281
|
+
}
|
|
194
282
|
export interface ListedEntitlement {
|
|
195
283
|
DataTransferSubscriberFeePercent?: number;
|
|
196
284
|
EntitlementArn: string | undefined;
|
|
@@ -237,6 +325,35 @@ export interface ListedFlow {
|
|
|
237
325
|
Status: Status | string | undefined;
|
|
238
326
|
Maintenance?: Maintenance;
|
|
239
327
|
}
|
|
328
|
+
export declare const GatewayState: {
|
|
329
|
+
readonly ACTIVE: "ACTIVE";
|
|
330
|
+
readonly CREATING: "CREATING";
|
|
331
|
+
readonly DELETED: "DELETED";
|
|
332
|
+
readonly DELETING: "DELETING";
|
|
333
|
+
readonly ERROR: "ERROR";
|
|
334
|
+
readonly UPDATING: "UPDATING";
|
|
335
|
+
};
|
|
336
|
+
export type GatewayState = (typeof GatewayState)[keyof typeof GatewayState];
|
|
337
|
+
export interface ListedGateway {
|
|
338
|
+
GatewayArn: string | undefined;
|
|
339
|
+
GatewayState: GatewayState | string | undefined;
|
|
340
|
+
Name: string | undefined;
|
|
341
|
+
}
|
|
342
|
+
export declare const InstanceState: {
|
|
343
|
+
readonly ACTIVE: "ACTIVE";
|
|
344
|
+
readonly DEREGISTERED: "DEREGISTERED";
|
|
345
|
+
readonly DEREGISTERING: "DEREGISTERING";
|
|
346
|
+
readonly DEREGISTRATION_ERROR: "DEREGISTRATION_ERROR";
|
|
347
|
+
readonly REGISTERING: "REGISTERING";
|
|
348
|
+
readonly REGISTRATION_ERROR: "REGISTRATION_ERROR";
|
|
349
|
+
};
|
|
350
|
+
export type InstanceState = (typeof InstanceState)[keyof typeof InstanceState];
|
|
351
|
+
export interface ListedGatewayInstance {
|
|
352
|
+
GatewayArn: string | undefined;
|
|
353
|
+
GatewayInstanceArn: string | undefined;
|
|
354
|
+
InstanceId: string | undefined;
|
|
355
|
+
InstanceState?: InstanceState | string;
|
|
356
|
+
}
|
|
240
357
|
export interface Fmtp {
|
|
241
358
|
ChannelOrder?: string;
|
|
242
359
|
Colorimetry?: Colorimetry | string;
|
|
@@ -280,6 +397,11 @@ export interface MediaStreamSourceConfigurationRequest {
|
|
|
280
397
|
InputConfigurations?: InputConfigurationRequest[];
|
|
281
398
|
MediaStreamName: string | undefined;
|
|
282
399
|
}
|
|
400
|
+
export interface MessageDetail {
|
|
401
|
+
Code: string | undefined;
|
|
402
|
+
Message: string | undefined;
|
|
403
|
+
ResourceName?: string;
|
|
404
|
+
}
|
|
283
405
|
export declare const DurationUnits: {
|
|
284
406
|
readonly MONTHS: "MONTHS";
|
|
285
407
|
};
|
|
@@ -335,6 +457,8 @@ export interface Output {
|
|
|
335
457
|
Port?: number;
|
|
336
458
|
Transport?: Transport;
|
|
337
459
|
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
460
|
+
BridgeArn?: string;
|
|
461
|
+
BridgePorts?: number[];
|
|
338
462
|
}
|
|
339
463
|
export declare const ReservationState: {
|
|
340
464
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -359,6 +483,10 @@ export interface Reservation {
|
|
|
359
483
|
ResourceSpecification: ResourceSpecification | undefined;
|
|
360
484
|
Start: string | undefined;
|
|
361
485
|
}
|
|
486
|
+
export interface SetGatewayBridgeSourceRequest {
|
|
487
|
+
BridgeArn: string | undefined;
|
|
488
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
489
|
+
}
|
|
362
490
|
export interface SetSourceRequest {
|
|
363
491
|
Decryption?: Encryption;
|
|
364
492
|
Description?: string;
|
|
@@ -378,6 +506,11 @@ export interface SetSourceRequest {
|
|
|
378
506
|
StreamId?: string;
|
|
379
507
|
VpcInterfaceName?: string;
|
|
380
508
|
WhitelistCidr?: string;
|
|
509
|
+
GatewayBridgeSource?: SetGatewayBridgeSourceRequest;
|
|
510
|
+
}
|
|
511
|
+
export interface GatewayBridgeSource {
|
|
512
|
+
BridgeArn: string | undefined;
|
|
513
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
381
514
|
}
|
|
382
515
|
export interface Source {
|
|
383
516
|
DataTransferSubscriberFeePercent?: number;
|
|
@@ -394,6 +527,7 @@ export interface Source {
|
|
|
394
527
|
Transport?: Transport;
|
|
395
528
|
VpcInterfaceName?: string;
|
|
396
529
|
WhitelistCidr?: string;
|
|
530
|
+
GatewayBridgeSource?: GatewayBridgeSource;
|
|
397
531
|
}
|
|
398
532
|
export declare const NetworkInterfaceType: {
|
|
399
533
|
readonly efa: "efa";
|
|
@@ -416,13 +550,13 @@ export interface VpcInterfaceRequest {
|
|
|
416
550
|
SecurityGroupIds: string[] | undefined;
|
|
417
551
|
SubnetId: string | undefined;
|
|
418
552
|
}
|
|
419
|
-
export interface
|
|
420
|
-
|
|
421
|
-
|
|
553
|
+
export interface AddBridgeOutputsRequest {
|
|
554
|
+
BridgeArn: string | undefined;
|
|
555
|
+
Outputs: AddBridgeOutputRequest[] | undefined;
|
|
422
556
|
}
|
|
423
|
-
export interface
|
|
424
|
-
|
|
425
|
-
|
|
557
|
+
export interface AddBridgeOutputsResponse {
|
|
558
|
+
BridgeArn?: string;
|
|
559
|
+
Outputs?: BridgeOutput[];
|
|
426
560
|
}
|
|
427
561
|
export declare class BadRequestException extends __BaseException {
|
|
428
562
|
readonly name: "BadRequestException";
|
|
@@ -432,6 +566,12 @@ export declare class BadRequestException extends __BaseException {
|
|
|
432
566
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
433
567
|
);
|
|
434
568
|
}
|
|
569
|
+
export declare class ConflictException extends __BaseException {
|
|
570
|
+
readonly name: "ConflictException";
|
|
571
|
+
readonly $fault: "client";
|
|
572
|
+
Message: string | undefined;
|
|
573
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
574
|
+
}
|
|
435
575
|
export declare class ForbiddenException extends __BaseException {
|
|
436
576
|
readonly name: "ForbiddenException";
|
|
437
577
|
readonly $fault: "client";
|
|
@@ -468,6 +608,25 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
468
608
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
469
609
|
);
|
|
470
610
|
}
|
|
611
|
+
export interface AddBridgeSourcesRequest {
|
|
612
|
+
BridgeArn: string | undefined;
|
|
613
|
+
Sources: AddBridgeSourceRequest[] | undefined;
|
|
614
|
+
}
|
|
615
|
+
export interface AddBridgeSourcesResponse {
|
|
616
|
+
BridgeArn?: string;
|
|
617
|
+
Sources?: BridgeSource[];
|
|
618
|
+
}
|
|
619
|
+
export interface AddEgressGatewayBridgeRequest {
|
|
620
|
+
MaxBitrate: number | undefined;
|
|
621
|
+
}
|
|
622
|
+
export interface AddFlowMediaStreamsRequest {
|
|
623
|
+
FlowArn: string | undefined;
|
|
624
|
+
MediaStreams: AddMediaStreamRequest[] | undefined;
|
|
625
|
+
}
|
|
626
|
+
export interface AddFlowMediaStreamsResponse {
|
|
627
|
+
FlowArn?: string;
|
|
628
|
+
MediaStreams?: MediaStream[];
|
|
629
|
+
}
|
|
471
630
|
export declare class AddFlowOutputs420Exception extends __BaseException {
|
|
472
631
|
readonly name: "AddFlowOutputs420Exception";
|
|
473
632
|
readonly $fault: "client";
|
|
@@ -500,17 +659,22 @@ export interface AddFlowVpcInterfacesResponse {
|
|
|
500
659
|
FlowArn?: string;
|
|
501
660
|
VpcInterfaces?: VpcInterface[];
|
|
502
661
|
}
|
|
662
|
+
export interface AddIngressGatewayBridgeRequest {
|
|
663
|
+
MaxBitrate: number | undefined;
|
|
664
|
+
MaxOutputs: number | undefined;
|
|
665
|
+
}
|
|
503
666
|
export interface AddMaintenance {
|
|
504
667
|
MaintenanceDay: MaintenanceDay | string | undefined;
|
|
505
668
|
MaintenanceStartHour: string | undefined;
|
|
506
669
|
}
|
|
507
|
-
export
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
670
|
+
export interface EgressGatewayBridge {
|
|
671
|
+
InstanceId?: string;
|
|
672
|
+
MaxBitrate: number | undefined;
|
|
673
|
+
}
|
|
674
|
+
export interface IngressGatewayBridge {
|
|
675
|
+
InstanceId?: string;
|
|
676
|
+
MaxBitrate: number | undefined;
|
|
677
|
+
MaxOutputs: number | undefined;
|
|
514
678
|
}
|
|
515
679
|
export declare const FailoverMode: {
|
|
516
680
|
readonly FAILOVER: "FAILOVER";
|
|
@@ -531,6 +695,58 @@ export interface FailoverConfig {
|
|
|
531
695
|
SourcePriority?: SourcePriority;
|
|
532
696
|
State?: State | string;
|
|
533
697
|
}
|
|
698
|
+
export interface Bridge {
|
|
699
|
+
BridgeArn: string | undefined;
|
|
700
|
+
BridgeMessages?: MessageDetail[];
|
|
701
|
+
BridgeState: BridgeState | string | undefined;
|
|
702
|
+
EgressGatewayBridge?: EgressGatewayBridge;
|
|
703
|
+
IngressGatewayBridge?: IngressGatewayBridge;
|
|
704
|
+
Name: string | undefined;
|
|
705
|
+
Outputs?: BridgeOutput[];
|
|
706
|
+
PlacementArn: string | undefined;
|
|
707
|
+
SourceFailoverConfig?: FailoverConfig;
|
|
708
|
+
Sources?: BridgeSource[];
|
|
709
|
+
}
|
|
710
|
+
export declare const BridgePlacement: {
|
|
711
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
712
|
+
readonly LOCKED: "LOCKED";
|
|
713
|
+
};
|
|
714
|
+
export type BridgePlacement =
|
|
715
|
+
(typeof BridgePlacement)[keyof typeof BridgePlacement];
|
|
716
|
+
export declare const ConnectionStatus: {
|
|
717
|
+
readonly CONNECTED: "CONNECTED";
|
|
718
|
+
readonly DISCONNECTED: "DISCONNECTED";
|
|
719
|
+
};
|
|
720
|
+
export type ConnectionStatus =
|
|
721
|
+
(typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
722
|
+
export declare class CreateBridge420Exception extends __BaseException {
|
|
723
|
+
readonly name: "CreateBridge420Exception";
|
|
724
|
+
readonly $fault: "client";
|
|
725
|
+
Message: string | undefined;
|
|
726
|
+
constructor(
|
|
727
|
+
opts: __ExceptionOptionType<CreateBridge420Exception, __BaseException>
|
|
728
|
+
);
|
|
729
|
+
}
|
|
730
|
+
export interface CreateBridgeRequest {
|
|
731
|
+
EgressGatewayBridge?: AddEgressGatewayBridgeRequest;
|
|
732
|
+
IngressGatewayBridge?: AddIngressGatewayBridgeRequest;
|
|
733
|
+
Name: string | undefined;
|
|
734
|
+
Outputs?: AddBridgeOutputRequest[];
|
|
735
|
+
PlacementArn: string | undefined;
|
|
736
|
+
SourceFailoverConfig?: FailoverConfig;
|
|
737
|
+
Sources: AddBridgeSourceRequest[] | undefined;
|
|
738
|
+
}
|
|
739
|
+
export interface CreateBridgeResponse {
|
|
740
|
+
Bridge?: Bridge;
|
|
741
|
+
}
|
|
742
|
+
export declare class CreateFlow420Exception extends __BaseException {
|
|
743
|
+
readonly name: "CreateFlow420Exception";
|
|
744
|
+
readonly $fault: "client";
|
|
745
|
+
Message: string | undefined;
|
|
746
|
+
constructor(
|
|
747
|
+
opts: __ExceptionOptionType<CreateFlow420Exception, __BaseException>
|
|
748
|
+
);
|
|
749
|
+
}
|
|
534
750
|
export interface CreateFlowRequest {
|
|
535
751
|
AvailabilityZone?: string;
|
|
536
752
|
Entitlements?: GrantEntitlementRequest[];
|
|
@@ -562,6 +778,36 @@ export interface Flow {
|
|
|
562
778
|
export interface CreateFlowResponse {
|
|
563
779
|
Flow?: Flow;
|
|
564
780
|
}
|
|
781
|
+
export declare class CreateGateway420Exception extends __BaseException {
|
|
782
|
+
readonly name: "CreateGateway420Exception";
|
|
783
|
+
readonly $fault: "client";
|
|
784
|
+
Message: string | undefined;
|
|
785
|
+
constructor(
|
|
786
|
+
opts: __ExceptionOptionType<CreateGateway420Exception, __BaseException>
|
|
787
|
+
);
|
|
788
|
+
}
|
|
789
|
+
export interface CreateGatewayRequest {
|
|
790
|
+
EgressCidrBlocks: string[] | undefined;
|
|
791
|
+
Name: string | undefined;
|
|
792
|
+
Networks: GatewayNetwork[] | undefined;
|
|
793
|
+
}
|
|
794
|
+
export interface Gateway {
|
|
795
|
+
EgressCidrBlocks: string[] | undefined;
|
|
796
|
+
GatewayArn: string | undefined;
|
|
797
|
+
GatewayMessages?: MessageDetail[];
|
|
798
|
+
GatewayState?: GatewayState | string;
|
|
799
|
+
Name: string | undefined;
|
|
800
|
+
Networks: GatewayNetwork[] | undefined;
|
|
801
|
+
}
|
|
802
|
+
export interface CreateGatewayResponse {
|
|
803
|
+
Gateway?: Gateway;
|
|
804
|
+
}
|
|
805
|
+
export interface DeleteBridgeRequest {
|
|
806
|
+
BridgeArn: string | undefined;
|
|
807
|
+
}
|
|
808
|
+
export interface DeleteBridgeResponse {
|
|
809
|
+
BridgeArn?: string;
|
|
810
|
+
}
|
|
565
811
|
export interface DeleteFlowRequest {
|
|
566
812
|
FlowArn: string | undefined;
|
|
567
813
|
}
|
|
@@ -569,6 +815,26 @@ export interface DeleteFlowResponse {
|
|
|
569
815
|
FlowArn?: string;
|
|
570
816
|
Status?: Status | string;
|
|
571
817
|
}
|
|
818
|
+
export interface DeleteGatewayRequest {
|
|
819
|
+
GatewayArn: string | undefined;
|
|
820
|
+
}
|
|
821
|
+
export interface DeleteGatewayResponse {
|
|
822
|
+
GatewayArn?: string;
|
|
823
|
+
}
|
|
824
|
+
export interface DeregisterGatewayInstanceRequest {
|
|
825
|
+
Force?: boolean;
|
|
826
|
+
GatewayInstanceArn: string | undefined;
|
|
827
|
+
}
|
|
828
|
+
export interface DeregisterGatewayInstanceResponse {
|
|
829
|
+
GatewayInstanceArn?: string;
|
|
830
|
+
InstanceState?: InstanceState | string;
|
|
831
|
+
}
|
|
832
|
+
export interface DescribeBridgeRequest {
|
|
833
|
+
BridgeArn: string | undefined;
|
|
834
|
+
}
|
|
835
|
+
export interface DescribeBridgeResponse {
|
|
836
|
+
Bridge?: Bridge;
|
|
837
|
+
}
|
|
572
838
|
export interface DescribeFlowRequest {
|
|
573
839
|
FlowArn: string | undefined;
|
|
574
840
|
}
|
|
@@ -579,6 +845,28 @@ export interface DescribeFlowResponse {
|
|
|
579
845
|
Flow?: Flow;
|
|
580
846
|
Messages?: Messages;
|
|
581
847
|
}
|
|
848
|
+
export interface DescribeGatewayRequest {
|
|
849
|
+
GatewayArn: string | undefined;
|
|
850
|
+
}
|
|
851
|
+
export interface DescribeGatewayResponse {
|
|
852
|
+
Gateway?: Gateway;
|
|
853
|
+
}
|
|
854
|
+
export interface DescribeGatewayInstanceRequest {
|
|
855
|
+
GatewayInstanceArn: string | undefined;
|
|
856
|
+
}
|
|
857
|
+
export interface GatewayInstance {
|
|
858
|
+
BridgePlacement: BridgePlacement | string | undefined;
|
|
859
|
+
ConnectionStatus: ConnectionStatus | string | undefined;
|
|
860
|
+
GatewayArn: string | undefined;
|
|
861
|
+
GatewayInstanceArn: string | undefined;
|
|
862
|
+
InstanceId: string | undefined;
|
|
863
|
+
InstanceMessages?: MessageDetail[];
|
|
864
|
+
InstanceState: InstanceState | string | undefined;
|
|
865
|
+
RunningBridgeCount: number | undefined;
|
|
866
|
+
}
|
|
867
|
+
export interface DescribeGatewayInstanceResponse {
|
|
868
|
+
GatewayInstance?: GatewayInstance;
|
|
869
|
+
}
|
|
582
870
|
export interface DescribeOfferingRequest {
|
|
583
871
|
OfferingArn: string | undefined;
|
|
584
872
|
}
|
|
@@ -591,6 +879,12 @@ export interface DescribeReservationRequest {
|
|
|
591
879
|
export interface DescribeReservationResponse {
|
|
592
880
|
Reservation?: Reservation;
|
|
593
881
|
}
|
|
882
|
+
export declare const DesiredState: {
|
|
883
|
+
readonly ACTIVE: "ACTIVE";
|
|
884
|
+
readonly DELETED: "DELETED";
|
|
885
|
+
readonly STANDBY: "STANDBY";
|
|
886
|
+
};
|
|
887
|
+
export type DesiredState = (typeof DesiredState)[keyof typeof DesiredState];
|
|
594
888
|
export declare class GrantFlowEntitlements420Exception extends __BaseException {
|
|
595
889
|
readonly name: "GrantFlowEntitlements420Exception";
|
|
596
890
|
readonly $fault: "client";
|
|
@@ -610,6 +904,15 @@ export interface GrantFlowEntitlementsResponse {
|
|
|
610
904
|
Entitlements?: Entitlement[];
|
|
611
905
|
FlowArn?: string;
|
|
612
906
|
}
|
|
907
|
+
export interface ListBridgesRequest {
|
|
908
|
+
FilterArn?: string;
|
|
909
|
+
MaxResults?: number;
|
|
910
|
+
NextToken?: string;
|
|
911
|
+
}
|
|
912
|
+
export interface ListBridgesResponse {
|
|
913
|
+
Bridges?: ListedBridge[];
|
|
914
|
+
NextToken?: string;
|
|
915
|
+
}
|
|
613
916
|
export interface ListEntitlementsRequest {
|
|
614
917
|
MaxResults?: number;
|
|
615
918
|
NextToken?: string;
|
|
@@ -626,6 +929,23 @@ export interface ListFlowsResponse {
|
|
|
626
929
|
Flows?: ListedFlow[];
|
|
627
930
|
NextToken?: string;
|
|
628
931
|
}
|
|
932
|
+
export interface ListGatewayInstancesRequest {
|
|
933
|
+
FilterArn?: string;
|
|
934
|
+
MaxResults?: number;
|
|
935
|
+
NextToken?: string;
|
|
936
|
+
}
|
|
937
|
+
export interface ListGatewayInstancesResponse {
|
|
938
|
+
Instances?: ListedGatewayInstance[];
|
|
939
|
+
NextToken?: string;
|
|
940
|
+
}
|
|
941
|
+
export interface ListGatewaysRequest {
|
|
942
|
+
MaxResults?: number;
|
|
943
|
+
NextToken?: string;
|
|
944
|
+
}
|
|
945
|
+
export interface ListGatewaysResponse {
|
|
946
|
+
Gateways?: ListedGateway[];
|
|
947
|
+
NextToken?: string;
|
|
948
|
+
}
|
|
629
949
|
export interface ListOfferingsRequest {
|
|
630
950
|
MaxResults?: number;
|
|
631
951
|
NextToken?: string;
|
|
@@ -656,6 +976,22 @@ export interface PurchaseOfferingRequest {
|
|
|
656
976
|
export interface PurchaseOfferingResponse {
|
|
657
977
|
Reservation?: Reservation;
|
|
658
978
|
}
|
|
979
|
+
export interface RemoveBridgeOutputRequest {
|
|
980
|
+
BridgeArn: string | undefined;
|
|
981
|
+
OutputName: string | undefined;
|
|
982
|
+
}
|
|
983
|
+
export interface RemoveBridgeOutputResponse {
|
|
984
|
+
BridgeArn?: string;
|
|
985
|
+
OutputName?: string;
|
|
986
|
+
}
|
|
987
|
+
export interface RemoveBridgeSourceRequest {
|
|
988
|
+
BridgeArn: string | undefined;
|
|
989
|
+
SourceName: string | undefined;
|
|
990
|
+
}
|
|
991
|
+
export interface RemoveBridgeSourceResponse {
|
|
992
|
+
BridgeArn?: string;
|
|
993
|
+
SourceName?: string;
|
|
994
|
+
}
|
|
659
995
|
export interface RemoveFlowMediaStreamRequest {
|
|
660
996
|
FlowArn: string | undefined;
|
|
661
997
|
MediaStreamName: string | undefined;
|
|
@@ -719,10 +1055,12 @@ export interface UntagResourceRequest {
|
|
|
719
1055
|
ResourceArn: string | undefined;
|
|
720
1056
|
TagKeys: string[] | undefined;
|
|
721
1057
|
}
|
|
722
|
-
export interface
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
1058
|
+
export interface UpdateEgressGatewayBridgeRequest {
|
|
1059
|
+
MaxBitrate?: number;
|
|
1060
|
+
}
|
|
1061
|
+
export interface UpdateIngressGatewayBridgeRequest {
|
|
1062
|
+
MaxBitrate?: number;
|
|
1063
|
+
MaxOutputs?: number;
|
|
726
1064
|
}
|
|
727
1065
|
export interface UpdateFailoverConfig {
|
|
728
1066
|
FailoverMode?: FailoverMode | string;
|
|
@@ -730,6 +1068,64 @@ export interface UpdateFailoverConfig {
|
|
|
730
1068
|
SourcePriority?: SourcePriority;
|
|
731
1069
|
State?: State | string;
|
|
732
1070
|
}
|
|
1071
|
+
export interface UpdateBridgeRequest {
|
|
1072
|
+
BridgeArn: string | undefined;
|
|
1073
|
+
EgressGatewayBridge?: UpdateEgressGatewayBridgeRequest;
|
|
1074
|
+
IngressGatewayBridge?: UpdateIngressGatewayBridgeRequest;
|
|
1075
|
+
SourceFailoverConfig?: UpdateFailoverConfig;
|
|
1076
|
+
}
|
|
1077
|
+
export interface UpdateBridgeResponse {
|
|
1078
|
+
Bridge?: Bridge;
|
|
1079
|
+
}
|
|
1080
|
+
export interface UpdateBridgeNetworkOutputRequest {
|
|
1081
|
+
IpAddress?: string;
|
|
1082
|
+
NetworkName?: string;
|
|
1083
|
+
Port?: number;
|
|
1084
|
+
Protocol?: Protocol | string;
|
|
1085
|
+
Ttl?: number;
|
|
1086
|
+
}
|
|
1087
|
+
export interface UpdateBridgeOutputRequest {
|
|
1088
|
+
BridgeArn: string | undefined;
|
|
1089
|
+
NetworkOutput?: UpdateBridgeNetworkOutputRequest;
|
|
1090
|
+
OutputName: string | undefined;
|
|
1091
|
+
}
|
|
1092
|
+
export interface UpdateBridgeOutputResponse {
|
|
1093
|
+
BridgeArn?: string;
|
|
1094
|
+
Output?: BridgeOutput;
|
|
1095
|
+
}
|
|
1096
|
+
export interface UpdateBridgeFlowSourceRequest {
|
|
1097
|
+
FlowArn?: string;
|
|
1098
|
+
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
1099
|
+
}
|
|
1100
|
+
export interface UpdateBridgeNetworkSourceRequest {
|
|
1101
|
+
MulticastIp?: string;
|
|
1102
|
+
NetworkName?: string;
|
|
1103
|
+
Port?: number;
|
|
1104
|
+
Protocol?: Protocol | string;
|
|
1105
|
+
}
|
|
1106
|
+
export interface UpdateBridgeSourceRequest {
|
|
1107
|
+
BridgeArn: string | undefined;
|
|
1108
|
+
FlowSource?: UpdateBridgeFlowSourceRequest;
|
|
1109
|
+
NetworkSource?: UpdateBridgeNetworkSourceRequest;
|
|
1110
|
+
SourceName: string | undefined;
|
|
1111
|
+
}
|
|
1112
|
+
export interface UpdateBridgeSourceResponse {
|
|
1113
|
+
BridgeArn?: string;
|
|
1114
|
+
Source?: BridgeSource;
|
|
1115
|
+
}
|
|
1116
|
+
export interface UpdateBridgeStateRequest {
|
|
1117
|
+
BridgeArn: string | undefined;
|
|
1118
|
+
DesiredState: DesiredState | string | undefined;
|
|
1119
|
+
}
|
|
1120
|
+
export interface UpdateBridgeStateResponse {
|
|
1121
|
+
BridgeArn?: string;
|
|
1122
|
+
DesiredState?: DesiredState | string;
|
|
1123
|
+
}
|
|
1124
|
+
export interface UpdateMaintenance {
|
|
1125
|
+
MaintenanceDay?: MaintenanceDay | string;
|
|
1126
|
+
MaintenanceScheduledDate?: string;
|
|
1127
|
+
MaintenanceStartHour?: string;
|
|
1128
|
+
}
|
|
733
1129
|
export interface UpdateFlowRequest {
|
|
734
1130
|
FlowArn: string | undefined;
|
|
735
1131
|
SourceFailoverConfig?: UpdateFailoverConfig;
|
|
@@ -797,6 +1193,10 @@ export interface UpdateFlowOutputResponse {
|
|
|
797
1193
|
FlowArn?: string;
|
|
798
1194
|
Output?: Output;
|
|
799
1195
|
}
|
|
1196
|
+
export interface UpdateGatewayBridgeSourceRequest {
|
|
1197
|
+
BridgeArn?: string;
|
|
1198
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
1199
|
+
}
|
|
800
1200
|
export interface UpdateFlowSourceRequest {
|
|
801
1201
|
Decryption?: UpdateEncryption;
|
|
802
1202
|
Description?: string;
|
|
@@ -817,8 +1217,17 @@ export interface UpdateFlowSourceRequest {
|
|
|
817
1217
|
StreamId?: string;
|
|
818
1218
|
VpcInterfaceName?: string;
|
|
819
1219
|
WhitelistCidr?: string;
|
|
1220
|
+
GatewayBridgeSource?: UpdateGatewayBridgeSourceRequest;
|
|
820
1221
|
}
|
|
821
1222
|
export interface UpdateFlowSourceResponse {
|
|
822
1223
|
FlowArn?: string;
|
|
823
1224
|
Source?: Source;
|
|
824
1225
|
}
|
|
1226
|
+
export interface UpdateGatewayInstanceRequest {
|
|
1227
|
+
BridgePlacement?: BridgePlacement | string;
|
|
1228
|
+
GatewayInstanceArn: string | undefined;
|
|
1229
|
+
}
|
|
1230
|
+
export interface UpdateGatewayInstanceResponse {
|
|
1231
|
+
BridgePlacement?: BridgePlacement | string;
|
|
1232
|
+
GatewayInstanceArn?: string;
|
|
1233
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBridgesCommandInput,
|
|
4
|
+
ListBridgesCommandOutput,
|
|
5
|
+
} from "../commands/ListBridgesCommand";
|
|
6
|
+
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListBridges(
|
|
8
|
+
config: MediaConnectPaginationConfiguration,
|
|
9
|
+
input: ListBridgesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListBridgesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGatewayInstancesCommandInput,
|
|
4
|
+
ListGatewayInstancesCommandOutput,
|
|
5
|
+
} from "../commands/ListGatewayInstancesCommand";
|
|
6
|
+
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListGatewayInstances(
|
|
8
|
+
config: MediaConnectPaginationConfiguration,
|
|
9
|
+
input: ListGatewayInstancesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListGatewayInstancesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGatewaysCommandInput,
|
|
4
|
+
ListGatewaysCommandOutput,
|
|
5
|
+
} from "../commands/ListGatewaysCommand";
|
|
6
|
+
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListGateways(
|
|
8
|
+
config: MediaConnectPaginationConfiguration,
|
|
9
|
+
input: ListGatewaysCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListGatewaysCommandOutput>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListBridgesPaginator";
|
|
2
3
|
export * from "./ListEntitlementsPaginator";
|
|
3
4
|
export * from "./ListFlowsPaginator";
|
|
5
|
+
export * from "./ListGatewayInstancesPaginator";
|
|
6
|
+
export * from "./ListGatewaysPaginator";
|
|
4
7
|
export * from "./ListOfferingsPaginator";
|
|
5
8
|
export * from "./ListReservationsPaginator";
|