@aws-sdk/client-mediaconnect 3.312.0 → 3.313.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 +2045 -140
- 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 +2002 -137
- 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 +1 -1
|
@@ -1,5 +1,134 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { MediaConnectServiceException as __BaseException } from "./MediaConnectServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* @enum
|
|
6
|
+
*/
|
|
7
|
+
export declare const Protocol: {
|
|
8
|
+
readonly cdi: "cdi";
|
|
9
|
+
readonly fujitsu_qos: "fujitsu-qos";
|
|
10
|
+
readonly rist: "rist";
|
|
11
|
+
readonly rtp: "rtp";
|
|
12
|
+
readonly rtp_fec: "rtp-fec";
|
|
13
|
+
readonly srt_caller: "srt-caller";
|
|
14
|
+
readonly srt_listener: "srt-listener";
|
|
15
|
+
readonly st2110_jpegxs: "st2110-jpegxs";
|
|
16
|
+
readonly udp: "udp";
|
|
17
|
+
readonly zixi_pull: "zixi-pull";
|
|
18
|
+
readonly zixi_push: "zixi-push";
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* Add a network output to an existing bridge.
|
|
27
|
+
*/
|
|
28
|
+
export interface AddBridgeNetworkOutputRequest {
|
|
29
|
+
/**
|
|
30
|
+
* The network output IP Address.
|
|
31
|
+
*/
|
|
32
|
+
IpAddress: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* The network output name. This name is used to reference the output and must be unique among outputs in this bridge.
|
|
35
|
+
*/
|
|
36
|
+
Name: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* The network output's gateway network name.
|
|
39
|
+
*/
|
|
40
|
+
NetworkName: string | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* The network output port.
|
|
43
|
+
*/
|
|
44
|
+
Port: number | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* The network output protocol.
|
|
47
|
+
*/
|
|
48
|
+
Protocol: Protocol | string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* The network output TTL.
|
|
51
|
+
*/
|
|
52
|
+
Ttl: number | undefined;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* Add an output to a bridge.
|
|
57
|
+
*/
|
|
58
|
+
export interface AddBridgeOutputRequest {
|
|
59
|
+
/**
|
|
60
|
+
* Add a network output to an existing bridge.
|
|
61
|
+
*/
|
|
62
|
+
NetworkOutput?: AddBridgeNetworkOutputRequest;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
* The settings for attaching a VPC interface to an resource.
|
|
67
|
+
*/
|
|
68
|
+
export interface VpcInterfaceAttachment {
|
|
69
|
+
/**
|
|
70
|
+
* The name of the VPC interface to use for this resource.
|
|
71
|
+
*/
|
|
72
|
+
VpcInterfaceName?: string;
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* Add a flow source to an existing bridge.
|
|
77
|
+
*/
|
|
78
|
+
export interface AddBridgeFlowSourceRequest {
|
|
79
|
+
/**
|
|
80
|
+
* The Amazon Resource Number (ARN) of the cloud flow to use as a source of this bridge.
|
|
81
|
+
*/
|
|
82
|
+
FlowArn: string | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* The name of the VPC interface attachment to use for this source.
|
|
85
|
+
*/
|
|
86
|
+
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
87
|
+
/**
|
|
88
|
+
* The name of the flow source. This name is used to reference the source and must be unique among sources in this bridge.
|
|
89
|
+
*/
|
|
90
|
+
Name: string | undefined;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
* Add a network source to an existing bridge.
|
|
95
|
+
*/
|
|
96
|
+
export interface AddBridgeNetworkSourceRequest {
|
|
97
|
+
/**
|
|
98
|
+
* The network source multicast IP.
|
|
99
|
+
*/
|
|
100
|
+
MulticastIp: string | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* The name of the network source. This name is used to reference the source and must be unique among sources in this bridge.
|
|
103
|
+
*/
|
|
104
|
+
Name: string | undefined;
|
|
105
|
+
/**
|
|
106
|
+
* The network source's gateway network name.
|
|
107
|
+
*/
|
|
108
|
+
NetworkName: string | undefined;
|
|
109
|
+
/**
|
|
110
|
+
* The network source port.
|
|
111
|
+
*/
|
|
112
|
+
Port: number | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* The network source protocol.
|
|
115
|
+
*/
|
|
116
|
+
Protocol: Protocol | string | undefined;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
* Add a source to an existing bridge.
|
|
121
|
+
*/
|
|
122
|
+
export interface AddBridgeSourceRequest {
|
|
123
|
+
/**
|
|
124
|
+
* Add a flow source to an existing bridge.
|
|
125
|
+
*/
|
|
126
|
+
FlowSource?: AddBridgeFlowSourceRequest;
|
|
127
|
+
/**
|
|
128
|
+
* Add a network source to an existing bridge.
|
|
129
|
+
*/
|
|
130
|
+
NetworkSource?: AddBridgeNetworkSourceRequest;
|
|
131
|
+
}
|
|
3
132
|
/**
|
|
4
133
|
* @public
|
|
5
134
|
* @enum
|
|
@@ -315,36 +444,6 @@ export interface MediaStreamOutputConfigurationRequest {
|
|
|
315
444
|
*/
|
|
316
445
|
MediaStreamName: string | undefined;
|
|
317
446
|
}
|
|
318
|
-
/**
|
|
319
|
-
* @public
|
|
320
|
-
* @enum
|
|
321
|
-
*/
|
|
322
|
-
export declare const Protocol: {
|
|
323
|
-
readonly cdi: "cdi";
|
|
324
|
-
readonly fujitsu_qos: "fujitsu-qos";
|
|
325
|
-
readonly rist: "rist";
|
|
326
|
-
readonly rtp: "rtp";
|
|
327
|
-
readonly rtp_fec: "rtp-fec";
|
|
328
|
-
readonly srt_caller: "srt-caller";
|
|
329
|
-
readonly srt_listener: "srt-listener";
|
|
330
|
-
readonly st2110_jpegxs: "st2110-jpegxs";
|
|
331
|
-
readonly zixi_pull: "zixi-pull";
|
|
332
|
-
readonly zixi_push: "zixi-push";
|
|
333
|
-
};
|
|
334
|
-
/**
|
|
335
|
-
* @public
|
|
336
|
-
*/
|
|
337
|
-
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
338
|
-
/**
|
|
339
|
-
* @public
|
|
340
|
-
* The settings for attaching a VPC interface to an output.
|
|
341
|
-
*/
|
|
342
|
-
export interface VpcInterfaceAttachment {
|
|
343
|
-
/**
|
|
344
|
-
* The name of the VPC interface to use for this output.
|
|
345
|
-
*/
|
|
346
|
-
VpcInterfaceName?: string;
|
|
347
|
-
}
|
|
348
447
|
/**
|
|
349
448
|
* @public
|
|
350
449
|
* The output that you want to add to this flow.
|
|
@@ -363,7 +462,7 @@ export interface AddOutputRequest {
|
|
|
363
462
|
*/
|
|
364
463
|
Destination?: string;
|
|
365
464
|
/**
|
|
366
|
-
* The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
|
|
465
|
+
* The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key). Allowable encryption types: static-key.
|
|
367
466
|
*/
|
|
368
467
|
Encryption?: Encryption;
|
|
369
468
|
/**
|
|
@@ -403,7 +502,7 @@ export interface AddOutputRequest {
|
|
|
403
502
|
*/
|
|
404
503
|
SmoothingLatency?: number;
|
|
405
504
|
/**
|
|
406
|
-
* The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams.
|
|
505
|
+
* The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
|
|
407
506
|
*/
|
|
408
507
|
StreamId?: string;
|
|
409
508
|
/**
|
|
@@ -411,6 +510,130 @@ export interface AddOutputRequest {
|
|
|
411
510
|
*/
|
|
412
511
|
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
413
512
|
}
|
|
513
|
+
/**
|
|
514
|
+
* @public
|
|
515
|
+
* The output of the bridge. A flow output is delivered to the AWS cloud.
|
|
516
|
+
*/
|
|
517
|
+
export interface BridgeFlowOutput {
|
|
518
|
+
/**
|
|
519
|
+
* The Amazon Resource Number (ARN) of the cloud flow.
|
|
520
|
+
*/
|
|
521
|
+
FlowArn: string | undefined;
|
|
522
|
+
/**
|
|
523
|
+
* The Amazon Resource Number (ARN) of the flow source.
|
|
524
|
+
*/
|
|
525
|
+
FlowSourceArn: string | undefined;
|
|
526
|
+
/**
|
|
527
|
+
* The name of the bridge's output.
|
|
528
|
+
*/
|
|
529
|
+
Name: string | undefined;
|
|
530
|
+
}
|
|
531
|
+
/**
|
|
532
|
+
* @public
|
|
533
|
+
* The output of the bridge. A network output is delivered to your premises.
|
|
534
|
+
*/
|
|
535
|
+
export interface BridgeNetworkOutput {
|
|
536
|
+
/**
|
|
537
|
+
* The network output IP Address.
|
|
538
|
+
*/
|
|
539
|
+
IpAddress: string | undefined;
|
|
540
|
+
/**
|
|
541
|
+
* The network output name.
|
|
542
|
+
*/
|
|
543
|
+
Name: string | undefined;
|
|
544
|
+
/**
|
|
545
|
+
* The network output's gateway network name.
|
|
546
|
+
*/
|
|
547
|
+
NetworkName: string | undefined;
|
|
548
|
+
/**
|
|
549
|
+
* The network output port.
|
|
550
|
+
*/
|
|
551
|
+
Port: number | undefined;
|
|
552
|
+
/**
|
|
553
|
+
* The network output protocol.
|
|
554
|
+
*/
|
|
555
|
+
Protocol: Protocol | string | undefined;
|
|
556
|
+
/**
|
|
557
|
+
* The network output TTL.
|
|
558
|
+
*/
|
|
559
|
+
Ttl: number | undefined;
|
|
560
|
+
}
|
|
561
|
+
/**
|
|
562
|
+
* @public
|
|
563
|
+
* The output of the bridge.
|
|
564
|
+
*/
|
|
565
|
+
export interface BridgeOutput {
|
|
566
|
+
/**
|
|
567
|
+
* The output of the bridge. A flow output is delivered to the AWS cloud.
|
|
568
|
+
*/
|
|
569
|
+
FlowOutput?: BridgeFlowOutput;
|
|
570
|
+
/**
|
|
571
|
+
* The output of the bridge. A network output is delivered to your premises.
|
|
572
|
+
*/
|
|
573
|
+
NetworkOutput?: BridgeNetworkOutput;
|
|
574
|
+
}
|
|
575
|
+
/**
|
|
576
|
+
* @public
|
|
577
|
+
* The source of the bridge. A flow source originates in MediaConnect as an existing cloud flow.
|
|
578
|
+
*/
|
|
579
|
+
export interface BridgeFlowSource {
|
|
580
|
+
/**
|
|
581
|
+
* The ARN of the cloud flow used as a source of this bridge.
|
|
582
|
+
*/
|
|
583
|
+
FlowArn: string | undefined;
|
|
584
|
+
/**
|
|
585
|
+
* The name of the VPC interface attachment to use for this source.
|
|
586
|
+
*/
|
|
587
|
+
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
588
|
+
/**
|
|
589
|
+
* The name of the flow source.
|
|
590
|
+
*/
|
|
591
|
+
Name: string | undefined;
|
|
592
|
+
/**
|
|
593
|
+
* The Amazon Resource Number (ARN) of the output.
|
|
594
|
+
*/
|
|
595
|
+
OutputArn?: string;
|
|
596
|
+
}
|
|
597
|
+
/**
|
|
598
|
+
* @public
|
|
599
|
+
* The source of the bridge. A network source originates at your premises.
|
|
600
|
+
*/
|
|
601
|
+
export interface BridgeNetworkSource {
|
|
602
|
+
/**
|
|
603
|
+
* The network source multicast IP.
|
|
604
|
+
*/
|
|
605
|
+
MulticastIp: string | undefined;
|
|
606
|
+
/**
|
|
607
|
+
* The name of the network source.
|
|
608
|
+
*/
|
|
609
|
+
Name: string | undefined;
|
|
610
|
+
/**
|
|
611
|
+
* The network source's gateway network name.
|
|
612
|
+
*/
|
|
613
|
+
NetworkName: string | undefined;
|
|
614
|
+
/**
|
|
615
|
+
* The network source port.
|
|
616
|
+
*/
|
|
617
|
+
Port: number | undefined;
|
|
618
|
+
/**
|
|
619
|
+
* The network source protocol.
|
|
620
|
+
*/
|
|
621
|
+
Protocol: Protocol | string | undefined;
|
|
622
|
+
}
|
|
623
|
+
/**
|
|
624
|
+
* @public
|
|
625
|
+
* The bridge's source.
|
|
626
|
+
*/
|
|
627
|
+
export interface BridgeSource {
|
|
628
|
+
/**
|
|
629
|
+
* The source of the bridge. A flow source originates in MediaConnect as an existing cloud flow.
|
|
630
|
+
*/
|
|
631
|
+
FlowSource?: BridgeFlowSource;
|
|
632
|
+
/**
|
|
633
|
+
* The source of the bridge. A network source originates at your premises.
|
|
634
|
+
*/
|
|
635
|
+
NetworkSource?: BridgeNetworkSource;
|
|
636
|
+
}
|
|
414
637
|
/**
|
|
415
638
|
* @public
|
|
416
639
|
* The VPC interface that is used for the media stream associated with the source or output.
|
|
@@ -489,6 +712,20 @@ export interface Entitlement {
|
|
|
489
712
|
*/
|
|
490
713
|
Subscribers: string[] | undefined;
|
|
491
714
|
}
|
|
715
|
+
/**
|
|
716
|
+
* @public
|
|
717
|
+
* The network settings for a gateway.
|
|
718
|
+
*/
|
|
719
|
+
export interface GatewayNetwork {
|
|
720
|
+
/**
|
|
721
|
+
* A unique IP address range to use for this network. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
722
|
+
*/
|
|
723
|
+
CidrBlock: string | undefined;
|
|
724
|
+
/**
|
|
725
|
+
* The name of the network. This name is used to reference the network and must be unique among networks in this gateway.
|
|
726
|
+
*/
|
|
727
|
+
Name: string | undefined;
|
|
728
|
+
}
|
|
492
729
|
/**
|
|
493
730
|
* @public
|
|
494
731
|
* The entitlements that you want to grant on a flow.
|
|
@@ -503,7 +740,7 @@ export interface GrantEntitlementRequest {
|
|
|
503
740
|
*/
|
|
504
741
|
Description?: string;
|
|
505
742
|
/**
|
|
506
|
-
* The type of encryption that will be used on the output that is associated with this entitlement.
|
|
743
|
+
* The type of encryption that will be used on the output that is associated with this entitlement. Allowable encryption types: static-key, speke.
|
|
507
744
|
*/
|
|
508
745
|
Encryption?: Encryption;
|
|
509
746
|
/**
|
|
@@ -551,6 +788,51 @@ export interface InputConfigurationRequest {
|
|
|
551
788
|
*/
|
|
552
789
|
Interface: InterfaceRequest | undefined;
|
|
553
790
|
}
|
|
791
|
+
/**
|
|
792
|
+
* @public
|
|
793
|
+
* @enum
|
|
794
|
+
*/
|
|
795
|
+
export declare const BridgeState: {
|
|
796
|
+
readonly ACTIVE: "ACTIVE";
|
|
797
|
+
readonly CREATING: "CREATING";
|
|
798
|
+
readonly DELETED: "DELETED";
|
|
799
|
+
readonly DELETING: "DELETING";
|
|
800
|
+
readonly DEPLOYING: "DEPLOYING";
|
|
801
|
+
readonly STANDBY: "STANDBY";
|
|
802
|
+
readonly STARTING: "STARTING";
|
|
803
|
+
readonly START_FAILED: "START_FAILED";
|
|
804
|
+
readonly START_PENDING: "START_PENDING";
|
|
805
|
+
readonly STOPPING: "STOPPING";
|
|
806
|
+
readonly STOP_FAILED: "STOP_FAILED";
|
|
807
|
+
readonly UPDATING: "UPDATING";
|
|
808
|
+
};
|
|
809
|
+
/**
|
|
810
|
+
* @public
|
|
811
|
+
*/
|
|
812
|
+
export type BridgeState = (typeof BridgeState)[keyof typeof BridgeState];
|
|
813
|
+
/**
|
|
814
|
+
* @public
|
|
815
|
+
* Displays details of the selected bridge.
|
|
816
|
+
*/
|
|
817
|
+
export interface ListedBridge {
|
|
818
|
+
/**
|
|
819
|
+
* The ARN of the bridge.
|
|
820
|
+
*/
|
|
821
|
+
BridgeArn: string | undefined;
|
|
822
|
+
BridgeState: BridgeState | string | undefined;
|
|
823
|
+
/**
|
|
824
|
+
* The type of the bridge.
|
|
825
|
+
*/
|
|
826
|
+
BridgeType: string | undefined;
|
|
827
|
+
/**
|
|
828
|
+
* The name of the bridge.
|
|
829
|
+
*/
|
|
830
|
+
Name: string | undefined;
|
|
831
|
+
/**
|
|
832
|
+
* The ARN of the gateway associated with the bridge.
|
|
833
|
+
*/
|
|
834
|
+
PlacementArn: string | undefined;
|
|
835
|
+
}
|
|
554
836
|
/**
|
|
555
837
|
* @public
|
|
556
838
|
* An entitlement that has been granted to you from other AWS accounts.
|
|
@@ -673,23 +955,92 @@ export interface ListedFlow {
|
|
|
673
955
|
}
|
|
674
956
|
/**
|
|
675
957
|
* @public
|
|
676
|
-
*
|
|
958
|
+
* @enum
|
|
677
959
|
*/
|
|
678
|
-
export
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
960
|
+
export declare const GatewayState: {
|
|
961
|
+
readonly ACTIVE: "ACTIVE";
|
|
962
|
+
readonly CREATING: "CREATING";
|
|
963
|
+
readonly DELETED: "DELETED";
|
|
964
|
+
readonly DELETING: "DELETING";
|
|
965
|
+
readonly ERROR: "ERROR";
|
|
966
|
+
readonly UPDATING: "UPDATING";
|
|
967
|
+
};
|
|
968
|
+
/**
|
|
969
|
+
* @public
|
|
970
|
+
*/
|
|
971
|
+
export type GatewayState = (typeof GatewayState)[keyof typeof GatewayState];
|
|
972
|
+
/**
|
|
973
|
+
* @public
|
|
974
|
+
* Provides a summary of a gateway, including its name, ARN, and status.
|
|
975
|
+
*/
|
|
976
|
+
export interface ListedGateway {
|
|
687
977
|
/**
|
|
688
|
-
* The
|
|
978
|
+
* The Amazon Resource Name (ARN) of the gateway.
|
|
689
979
|
*/
|
|
690
|
-
|
|
980
|
+
GatewayArn: string | undefined;
|
|
981
|
+
GatewayState: GatewayState | string | undefined;
|
|
691
982
|
/**
|
|
692
|
-
* The
|
|
983
|
+
* The name of the gateway.
|
|
984
|
+
*/
|
|
985
|
+
Name: string | undefined;
|
|
986
|
+
}
|
|
987
|
+
/**
|
|
988
|
+
* @public
|
|
989
|
+
* @enum
|
|
990
|
+
*/
|
|
991
|
+
export declare const InstanceState: {
|
|
992
|
+
readonly ACTIVE: "ACTIVE";
|
|
993
|
+
readonly DEREGISTERED: "DEREGISTERED";
|
|
994
|
+
readonly DEREGISTERING: "DEREGISTERING";
|
|
995
|
+
readonly DEREGISTRATION_ERROR: "DEREGISTRATION_ERROR";
|
|
996
|
+
readonly REGISTERING: "REGISTERING";
|
|
997
|
+
readonly REGISTRATION_ERROR: "REGISTRATION_ERROR";
|
|
998
|
+
};
|
|
999
|
+
/**
|
|
1000
|
+
* @public
|
|
1001
|
+
*/
|
|
1002
|
+
export type InstanceState = (typeof InstanceState)[keyof typeof InstanceState];
|
|
1003
|
+
/**
|
|
1004
|
+
* @public
|
|
1005
|
+
* Provides a summary of an instance.
|
|
1006
|
+
*/
|
|
1007
|
+
export interface ListedGatewayInstance {
|
|
1008
|
+
/**
|
|
1009
|
+
* The Amazon Resource Name (ARN) of the gateway.
|
|
1010
|
+
*/
|
|
1011
|
+
GatewayArn: string | undefined;
|
|
1012
|
+
/**
|
|
1013
|
+
* The Amazon Resource Name (ARN) of the instance.
|
|
1014
|
+
*/
|
|
1015
|
+
GatewayInstanceArn: string | undefined;
|
|
1016
|
+
/**
|
|
1017
|
+
* The managed instance ID generated by the SSM install. This will begin with "mi-".
|
|
1018
|
+
*/
|
|
1019
|
+
InstanceId: string | undefined;
|
|
1020
|
+
/**
|
|
1021
|
+
* The status of the instance.
|
|
1022
|
+
*/
|
|
1023
|
+
InstanceState?: InstanceState | string;
|
|
1024
|
+
}
|
|
1025
|
+
/**
|
|
1026
|
+
* @public
|
|
1027
|
+
* FMTP
|
|
1028
|
+
*/
|
|
1029
|
+
export interface Fmtp {
|
|
1030
|
+
/**
|
|
1031
|
+
* The format of the audio channel.
|
|
1032
|
+
*/
|
|
1033
|
+
ChannelOrder?: string;
|
|
1034
|
+
/**
|
|
1035
|
+
* The format that is used for the representation of color.
|
|
1036
|
+
*/
|
|
1037
|
+
Colorimetry?: Colorimetry | string;
|
|
1038
|
+
/**
|
|
1039
|
+
* The frame rate for the video stream, in frames/second. For example: 60000/1001. If you specify a whole number, MediaConnect uses a ratio of N/1. For example, if you specify 60, MediaConnect uses 60/1 as the exactFramerate.
|
|
1040
|
+
*/
|
|
1041
|
+
ExactFramerate?: string;
|
|
1042
|
+
/**
|
|
1043
|
+
* The pixel aspect ratio (PAR) of the video.
|
|
693
1044
|
*/
|
|
694
1045
|
Par?: string;
|
|
695
1046
|
/**
|
|
@@ -829,6 +1180,23 @@ export interface MediaStreamSourceConfigurationRequest {
|
|
|
829
1180
|
*/
|
|
830
1181
|
MediaStreamName: string | undefined;
|
|
831
1182
|
}
|
|
1183
|
+
/**
|
|
1184
|
+
* @public
|
|
1185
|
+
*/
|
|
1186
|
+
export interface MessageDetail {
|
|
1187
|
+
/**
|
|
1188
|
+
* The error code.
|
|
1189
|
+
*/
|
|
1190
|
+
Code: string | undefined;
|
|
1191
|
+
/**
|
|
1192
|
+
* The specific error message that MediaConnect returns to help you understand the reason that the request did not succeed.
|
|
1193
|
+
*/
|
|
1194
|
+
Message: string | undefined;
|
|
1195
|
+
/**
|
|
1196
|
+
* The name of the resource.
|
|
1197
|
+
*/
|
|
1198
|
+
ResourceName?: string;
|
|
1199
|
+
}
|
|
832
1200
|
/**
|
|
833
1201
|
* @public
|
|
834
1202
|
* @enum
|
|
@@ -924,7 +1292,7 @@ export interface Transport {
|
|
|
924
1292
|
*/
|
|
925
1293
|
CidrAllowList?: string[];
|
|
926
1294
|
/**
|
|
927
|
-
* The smoothing max bitrate for RIST, RTP, and RTP-FEC streams.
|
|
1295
|
+
* The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
|
|
928
1296
|
*/
|
|
929
1297
|
MaxBitrate?: number;
|
|
930
1298
|
/**
|
|
@@ -968,7 +1336,7 @@ export interface Transport {
|
|
|
968
1336
|
*/
|
|
969
1337
|
SourceListenerPort?: number;
|
|
970
1338
|
/**
|
|
971
|
-
* The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams.
|
|
1339
|
+
* The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
|
|
972
1340
|
*/
|
|
973
1341
|
StreamId?: string;
|
|
974
1342
|
}
|
|
@@ -1029,6 +1397,14 @@ export interface Output {
|
|
|
1029
1397
|
* The name of the VPC interface attachment to use for this output.
|
|
1030
1398
|
*/
|
|
1031
1399
|
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
1400
|
+
/**
|
|
1401
|
+
* The ARN of the bridge that added this output.
|
|
1402
|
+
*/
|
|
1403
|
+
BridgeArn?: string;
|
|
1404
|
+
/**
|
|
1405
|
+
* The bridge output ports currently in use.
|
|
1406
|
+
*/
|
|
1407
|
+
BridgePorts?: number[];
|
|
1032
1408
|
}
|
|
1033
1409
|
/**
|
|
1034
1410
|
* @public
|
|
@@ -1102,13 +1478,27 @@ export interface Reservation {
|
|
|
1102
1478
|
*/
|
|
1103
1479
|
Start: string | undefined;
|
|
1104
1480
|
}
|
|
1481
|
+
/**
|
|
1482
|
+
* @public
|
|
1483
|
+
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
1484
|
+
*/
|
|
1485
|
+
export interface SetGatewayBridgeSourceRequest {
|
|
1486
|
+
/**
|
|
1487
|
+
* The ARN of the bridge feeding this flow.
|
|
1488
|
+
*/
|
|
1489
|
+
BridgeArn: string | undefined;
|
|
1490
|
+
/**
|
|
1491
|
+
* The name of the VPC interface attachment to use for this bridge source.
|
|
1492
|
+
*/
|
|
1493
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
1494
|
+
}
|
|
1105
1495
|
/**
|
|
1106
1496
|
* @public
|
|
1107
1497
|
* The settings for the source of the flow.
|
|
1108
1498
|
*/
|
|
1109
1499
|
export interface SetSourceRequest {
|
|
1110
1500
|
/**
|
|
1111
|
-
* The type of encryption that is used on the content ingested from this source.
|
|
1501
|
+
* The type of encryption that is used on the content ingested from this source. Allowable encryption types: static-key.
|
|
1112
1502
|
*/
|
|
1113
1503
|
Decryption?: Encryption;
|
|
1114
1504
|
/**
|
|
@@ -1124,7 +1514,7 @@ export interface SetSourceRequest {
|
|
|
1124
1514
|
*/
|
|
1125
1515
|
IngestPort?: number;
|
|
1126
1516
|
/**
|
|
1127
|
-
* The smoothing max bitrate for RIST, RTP, and RTP-FEC streams.
|
|
1517
|
+
* The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
|
|
1128
1518
|
*/
|
|
1129
1519
|
MaxBitrate?: number;
|
|
1130
1520
|
/**
|
|
@@ -1168,7 +1558,7 @@ export interface SetSourceRequest {
|
|
|
1168
1558
|
*/
|
|
1169
1559
|
SourceListenerPort?: number;
|
|
1170
1560
|
/**
|
|
1171
|
-
* The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams.
|
|
1561
|
+
* The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
|
|
1172
1562
|
*/
|
|
1173
1563
|
StreamId?: string;
|
|
1174
1564
|
/**
|
|
@@ -1179,6 +1569,24 @@ export interface SetSourceRequest {
|
|
|
1179
1569
|
* The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
1180
1570
|
*/
|
|
1181
1571
|
WhitelistCidr?: string;
|
|
1572
|
+
/**
|
|
1573
|
+
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
1574
|
+
*/
|
|
1575
|
+
GatewayBridgeSource?: SetGatewayBridgeSourceRequest;
|
|
1576
|
+
}
|
|
1577
|
+
/**
|
|
1578
|
+
* @public
|
|
1579
|
+
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
1580
|
+
*/
|
|
1581
|
+
export interface GatewayBridgeSource {
|
|
1582
|
+
/**
|
|
1583
|
+
* The ARN of the bridge feeding this flow.
|
|
1584
|
+
*/
|
|
1585
|
+
BridgeArn: string | undefined;
|
|
1586
|
+
/**
|
|
1587
|
+
* The name of the VPC interface attachment to use for this bridge source.
|
|
1588
|
+
*/
|
|
1589
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
1182
1590
|
}
|
|
1183
1591
|
/**
|
|
1184
1592
|
* @public
|
|
@@ -1241,6 +1649,10 @@ export interface Source {
|
|
|
1241
1649
|
* The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
1242
1650
|
*/
|
|
1243
1651
|
WhitelistCidr?: string;
|
|
1652
|
+
/**
|
|
1653
|
+
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
1654
|
+
*/
|
|
1655
|
+
GatewayBridgeSource?: GatewayBridgeSource;
|
|
1244
1656
|
}
|
|
1245
1657
|
/**
|
|
1246
1658
|
* @public
|
|
@@ -1312,30 +1724,30 @@ export interface VpcInterfaceRequest {
|
|
|
1312
1724
|
}
|
|
1313
1725
|
/**
|
|
1314
1726
|
* @public
|
|
1315
|
-
* A request to add
|
|
1727
|
+
* A request to add outputs to the specified bridge.
|
|
1316
1728
|
*/
|
|
1317
|
-
export interface
|
|
1729
|
+
export interface AddBridgeOutputsRequest {
|
|
1318
1730
|
/**
|
|
1319
|
-
* The
|
|
1731
|
+
* The ARN of the bridge that you want to update.
|
|
1320
1732
|
*/
|
|
1321
|
-
|
|
1733
|
+
BridgeArn: string | undefined;
|
|
1322
1734
|
/**
|
|
1323
|
-
* The
|
|
1735
|
+
* The outputs that you want to add to this bridge.
|
|
1324
1736
|
*/
|
|
1325
|
-
|
|
1737
|
+
Outputs: AddBridgeOutputRequest[] | undefined;
|
|
1326
1738
|
}
|
|
1327
1739
|
/**
|
|
1328
1740
|
* @public
|
|
1329
1741
|
*/
|
|
1330
|
-
export interface
|
|
1742
|
+
export interface AddBridgeOutputsResponse {
|
|
1331
1743
|
/**
|
|
1332
|
-
* The ARN of the
|
|
1744
|
+
* The Amazon Resource Number (ARN) of the bridge.
|
|
1333
1745
|
*/
|
|
1334
|
-
|
|
1746
|
+
BridgeArn?: string;
|
|
1335
1747
|
/**
|
|
1336
|
-
* The
|
|
1748
|
+
* The outputs that you added to this bridge.
|
|
1337
1749
|
*/
|
|
1338
|
-
|
|
1750
|
+
Outputs?: BridgeOutput[];
|
|
1339
1751
|
}
|
|
1340
1752
|
/**
|
|
1341
1753
|
* @public
|
|
@@ -1353,6 +1765,22 @@ export declare class BadRequestException extends __BaseException {
|
|
|
1353
1765
|
*/
|
|
1354
1766
|
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
1355
1767
|
}
|
|
1768
|
+
/**
|
|
1769
|
+
* @public
|
|
1770
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
1771
|
+
*/
|
|
1772
|
+
export declare class ConflictException extends __BaseException {
|
|
1773
|
+
readonly name: "ConflictException";
|
|
1774
|
+
readonly $fault: "client";
|
|
1775
|
+
/**
|
|
1776
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
1777
|
+
*/
|
|
1778
|
+
Message: string | undefined;
|
|
1779
|
+
/**
|
|
1780
|
+
* @internal
|
|
1781
|
+
*/
|
|
1782
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1783
|
+
}
|
|
1356
1784
|
/**
|
|
1357
1785
|
* @public
|
|
1358
1786
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
@@ -1433,6 +1861,69 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
1433
1861
|
*/
|
|
1434
1862
|
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
1435
1863
|
}
|
|
1864
|
+
/**
|
|
1865
|
+
* @public
|
|
1866
|
+
* A request to add sources to the specified bridge.
|
|
1867
|
+
*/
|
|
1868
|
+
export interface AddBridgeSourcesRequest {
|
|
1869
|
+
/**
|
|
1870
|
+
* The ARN of the bridge that you want to update.
|
|
1871
|
+
*/
|
|
1872
|
+
BridgeArn: string | undefined;
|
|
1873
|
+
/**
|
|
1874
|
+
* The sources that you want to add to this bridge.
|
|
1875
|
+
*/
|
|
1876
|
+
Sources: AddBridgeSourceRequest[] | undefined;
|
|
1877
|
+
}
|
|
1878
|
+
/**
|
|
1879
|
+
* @public
|
|
1880
|
+
*/
|
|
1881
|
+
export interface AddBridgeSourcesResponse {
|
|
1882
|
+
/**
|
|
1883
|
+
* The Amazon Resource Number (ARN) of the bridge.
|
|
1884
|
+
*/
|
|
1885
|
+
BridgeArn?: string;
|
|
1886
|
+
/**
|
|
1887
|
+
* The sources that you added to this bridge.
|
|
1888
|
+
*/
|
|
1889
|
+
Sources?: BridgeSource[];
|
|
1890
|
+
}
|
|
1891
|
+
/**
|
|
1892
|
+
* @public
|
|
1893
|
+
*/
|
|
1894
|
+
export interface AddEgressGatewayBridgeRequest {
|
|
1895
|
+
/**
|
|
1896
|
+
* The maximum expected bitrate (in bps).
|
|
1897
|
+
*/
|
|
1898
|
+
MaxBitrate: number | undefined;
|
|
1899
|
+
}
|
|
1900
|
+
/**
|
|
1901
|
+
* @public
|
|
1902
|
+
* A request to add media streams to the flow.
|
|
1903
|
+
*/
|
|
1904
|
+
export interface AddFlowMediaStreamsRequest {
|
|
1905
|
+
/**
|
|
1906
|
+
* The Amazon Resource Name (ARN) of the flow.
|
|
1907
|
+
*/
|
|
1908
|
+
FlowArn: string | undefined;
|
|
1909
|
+
/**
|
|
1910
|
+
* The media streams that you want to add to the flow.
|
|
1911
|
+
*/
|
|
1912
|
+
MediaStreams: AddMediaStreamRequest[] | undefined;
|
|
1913
|
+
}
|
|
1914
|
+
/**
|
|
1915
|
+
* @public
|
|
1916
|
+
*/
|
|
1917
|
+
export interface AddFlowMediaStreamsResponse {
|
|
1918
|
+
/**
|
|
1919
|
+
* The ARN of the flow that you added media streams to.
|
|
1920
|
+
*/
|
|
1921
|
+
FlowArn?: string;
|
|
1922
|
+
/**
|
|
1923
|
+
* The media streams that you added to the flow.
|
|
1924
|
+
*/
|
|
1925
|
+
MediaStreams?: MediaStream[];
|
|
1926
|
+
}
|
|
1436
1927
|
/**
|
|
1437
1928
|
* @public
|
|
1438
1929
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
@@ -1530,6 +2021,19 @@ export interface AddFlowVpcInterfacesResponse {
|
|
|
1530
2021
|
*/
|
|
1531
2022
|
VpcInterfaces?: VpcInterface[];
|
|
1532
2023
|
}
|
|
2024
|
+
/**
|
|
2025
|
+
* @public
|
|
2026
|
+
*/
|
|
2027
|
+
export interface AddIngressGatewayBridgeRequest {
|
|
2028
|
+
/**
|
|
2029
|
+
* The maximum expected bitrate (in bps).
|
|
2030
|
+
*/
|
|
2031
|
+
MaxBitrate: number | undefined;
|
|
2032
|
+
/**
|
|
2033
|
+
* The maximum number of expected outputs.
|
|
2034
|
+
*/
|
|
2035
|
+
MaxOutputs: number | undefined;
|
|
2036
|
+
}
|
|
1533
2037
|
/**
|
|
1534
2038
|
* @public
|
|
1535
2039
|
* Create maintenance setting for a flow
|
|
@@ -1546,19 +2050,33 @@ export interface AddMaintenance {
|
|
|
1546
2050
|
}
|
|
1547
2051
|
/**
|
|
1548
2052
|
* @public
|
|
1549
|
-
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
1550
2053
|
*/
|
|
1551
|
-
export
|
|
1552
|
-
readonly name: "CreateFlow420Exception";
|
|
1553
|
-
readonly $fault: "client";
|
|
2054
|
+
export interface EgressGatewayBridge {
|
|
1554
2055
|
/**
|
|
1555
|
-
* The
|
|
2056
|
+
* The ID of the instance running this bridge.
|
|
1556
2057
|
*/
|
|
1557
|
-
|
|
2058
|
+
InstanceId?: string;
|
|
1558
2059
|
/**
|
|
1559
|
-
*
|
|
2060
|
+
* The maximum expected bitrate (in bps) of the egress bridge.
|
|
1560
2061
|
*/
|
|
1561
|
-
|
|
2062
|
+
MaxBitrate: number | undefined;
|
|
2063
|
+
}
|
|
2064
|
+
/**
|
|
2065
|
+
* @public
|
|
2066
|
+
*/
|
|
2067
|
+
export interface IngressGatewayBridge {
|
|
2068
|
+
/**
|
|
2069
|
+
* The ID of the instance running this bridge.
|
|
2070
|
+
*/
|
|
2071
|
+
InstanceId?: string;
|
|
2072
|
+
/**
|
|
2073
|
+
* The maximum expected bitrate (in bps) of the ingress bridge.
|
|
2074
|
+
*/
|
|
2075
|
+
MaxBitrate: number | undefined;
|
|
2076
|
+
/**
|
|
2077
|
+
* The maximum number of outputs on the ingress bridge.
|
|
2078
|
+
*/
|
|
2079
|
+
MaxOutputs: number | undefined;
|
|
1562
2080
|
}
|
|
1563
2081
|
/**
|
|
1564
2082
|
* @public
|
|
@@ -1613,6 +2131,139 @@ export interface FailoverConfig {
|
|
|
1613
2131
|
SourcePriority?: SourcePriority;
|
|
1614
2132
|
State?: State | string;
|
|
1615
2133
|
}
|
|
2134
|
+
/**
|
|
2135
|
+
* @public
|
|
2136
|
+
* A Bridge is the connection between your datacenter's Instances and the AWS cloud. A bridge can be used to send video from the AWS cloud to your datacenter or from your datacenter to the AWS cloud.
|
|
2137
|
+
*/
|
|
2138
|
+
export interface Bridge {
|
|
2139
|
+
/**
|
|
2140
|
+
* The Amazon Resource Number (ARN) of the bridge.
|
|
2141
|
+
*/
|
|
2142
|
+
BridgeArn: string | undefined;
|
|
2143
|
+
BridgeMessages?: MessageDetail[];
|
|
2144
|
+
BridgeState: BridgeState | string | undefined;
|
|
2145
|
+
EgressGatewayBridge?: EgressGatewayBridge;
|
|
2146
|
+
IngressGatewayBridge?: IngressGatewayBridge;
|
|
2147
|
+
/**
|
|
2148
|
+
* The name of the bridge.
|
|
2149
|
+
*/
|
|
2150
|
+
Name: string | undefined;
|
|
2151
|
+
/**
|
|
2152
|
+
* The outputs on this bridge.
|
|
2153
|
+
*/
|
|
2154
|
+
Outputs?: BridgeOutput[];
|
|
2155
|
+
/**
|
|
2156
|
+
* The placement Amazon Resource Number (ARN) of the bridge.
|
|
2157
|
+
*/
|
|
2158
|
+
PlacementArn: string | undefined;
|
|
2159
|
+
/**
|
|
2160
|
+
* The settings for source failover.
|
|
2161
|
+
*/
|
|
2162
|
+
SourceFailoverConfig?: FailoverConfig;
|
|
2163
|
+
/**
|
|
2164
|
+
* The sources on this bridge.
|
|
2165
|
+
*/
|
|
2166
|
+
Sources?: BridgeSource[];
|
|
2167
|
+
}
|
|
2168
|
+
/**
|
|
2169
|
+
* @public
|
|
2170
|
+
* @enum
|
|
2171
|
+
*/
|
|
2172
|
+
export declare const BridgePlacement: {
|
|
2173
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
2174
|
+
readonly LOCKED: "LOCKED";
|
|
2175
|
+
};
|
|
2176
|
+
/**
|
|
2177
|
+
* @public
|
|
2178
|
+
*/
|
|
2179
|
+
export type BridgePlacement = (typeof BridgePlacement)[keyof typeof BridgePlacement];
|
|
2180
|
+
/**
|
|
2181
|
+
* @public
|
|
2182
|
+
* @enum
|
|
2183
|
+
*/
|
|
2184
|
+
export declare const ConnectionStatus: {
|
|
2185
|
+
readonly CONNECTED: "CONNECTED";
|
|
2186
|
+
readonly DISCONNECTED: "DISCONNECTED";
|
|
2187
|
+
};
|
|
2188
|
+
/**
|
|
2189
|
+
* @public
|
|
2190
|
+
*/
|
|
2191
|
+
export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
2192
|
+
/**
|
|
2193
|
+
* @public
|
|
2194
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
2195
|
+
*/
|
|
2196
|
+
export declare class CreateBridge420Exception extends __BaseException {
|
|
2197
|
+
readonly name: "CreateBridge420Exception";
|
|
2198
|
+
readonly $fault: "client";
|
|
2199
|
+
/**
|
|
2200
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
2201
|
+
*/
|
|
2202
|
+
Message: string | undefined;
|
|
2203
|
+
/**
|
|
2204
|
+
* @internal
|
|
2205
|
+
*/
|
|
2206
|
+
constructor(opts: __ExceptionOptionType<CreateBridge420Exception, __BaseException>);
|
|
2207
|
+
}
|
|
2208
|
+
/**
|
|
2209
|
+
* @public
|
|
2210
|
+
* Creates a new bridge. The request must include one source.
|
|
2211
|
+
*/
|
|
2212
|
+
export interface CreateBridgeRequest {
|
|
2213
|
+
/**
|
|
2214
|
+
* Create a bridge with the egress bridge type. An egress bridge is a cloud-to-ground bridge. The content comes from an existing MediaConnect flow and is delivered to your premises.
|
|
2215
|
+
*/
|
|
2216
|
+
EgressGatewayBridge?: AddEgressGatewayBridgeRequest;
|
|
2217
|
+
/**
|
|
2218
|
+
* Create a bridge with the ingress bridge type. An ingress bridge is a ground-to-cloud bridge. The content originates at your premises and is delivered to the cloud.
|
|
2219
|
+
*/
|
|
2220
|
+
IngressGatewayBridge?: AddIngressGatewayBridgeRequest;
|
|
2221
|
+
/**
|
|
2222
|
+
* The name of the bridge. This name can not be modified after the bridge is created.
|
|
2223
|
+
*/
|
|
2224
|
+
Name: string | undefined;
|
|
2225
|
+
/**
|
|
2226
|
+
* The outputs that you want to add to this bridge.
|
|
2227
|
+
*/
|
|
2228
|
+
Outputs?: AddBridgeOutputRequest[];
|
|
2229
|
+
/**
|
|
2230
|
+
* The bridge placement Amazon Resource Number (ARN).
|
|
2231
|
+
*/
|
|
2232
|
+
PlacementArn: string | undefined;
|
|
2233
|
+
/**
|
|
2234
|
+
* The settings for source failover.
|
|
2235
|
+
*/
|
|
2236
|
+
SourceFailoverConfig?: FailoverConfig;
|
|
2237
|
+
/**
|
|
2238
|
+
* The sources that you want to add to this bridge.
|
|
2239
|
+
*/
|
|
2240
|
+
Sources: AddBridgeSourceRequest[] | undefined;
|
|
2241
|
+
}
|
|
2242
|
+
/**
|
|
2243
|
+
* @public
|
|
2244
|
+
*/
|
|
2245
|
+
export interface CreateBridgeResponse {
|
|
2246
|
+
/**
|
|
2247
|
+
* A Bridge is the connection between your datacenter's Instances and the AWS cloud. A bridge can be used to send video from the AWS cloud to your datacenter or from your datacenter to the AWS cloud.
|
|
2248
|
+
*/
|
|
2249
|
+
Bridge?: Bridge;
|
|
2250
|
+
}
|
|
2251
|
+
/**
|
|
2252
|
+
* @public
|
|
2253
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
2254
|
+
*/
|
|
2255
|
+
export declare class CreateFlow420Exception extends __BaseException {
|
|
2256
|
+
readonly name: "CreateFlow420Exception";
|
|
2257
|
+
readonly $fault: "client";
|
|
2258
|
+
/**
|
|
2259
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
2260
|
+
*/
|
|
2261
|
+
Message: string | undefined;
|
|
2262
|
+
/**
|
|
2263
|
+
* @internal
|
|
2264
|
+
*/
|
|
2265
|
+
constructor(opts: __ExceptionOptionType<CreateFlow420Exception, __BaseException>);
|
|
2266
|
+
}
|
|
1616
2267
|
/**
|
|
1617
2268
|
* @public
|
|
1618
2269
|
* Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50).
|
|
@@ -1678,7 +2329,7 @@ export interface Flow {
|
|
|
1678
2329
|
*/
|
|
1679
2330
|
Entitlements: Entitlement[] | undefined;
|
|
1680
2331
|
/**
|
|
1681
|
-
* The Amazon Resource Name (ARN)
|
|
2332
|
+
* The Amazon Resource Name (ARN) of the flow.
|
|
1682
2333
|
*/
|
|
1683
2334
|
FlowArn: string | undefined;
|
|
1684
2335
|
/**
|
|
@@ -1724,6 +2375,94 @@ export interface CreateFlowResponse {
|
|
|
1724
2375
|
*/
|
|
1725
2376
|
Flow?: Flow;
|
|
1726
2377
|
}
|
|
2378
|
+
/**
|
|
2379
|
+
* @public
|
|
2380
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
2381
|
+
*/
|
|
2382
|
+
export declare class CreateGateway420Exception extends __BaseException {
|
|
2383
|
+
readonly name: "CreateGateway420Exception";
|
|
2384
|
+
readonly $fault: "client";
|
|
2385
|
+
/**
|
|
2386
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
2387
|
+
*/
|
|
2388
|
+
Message: string | undefined;
|
|
2389
|
+
/**
|
|
2390
|
+
* @internal
|
|
2391
|
+
*/
|
|
2392
|
+
constructor(opts: __ExceptionOptionType<CreateGateway420Exception, __BaseException>);
|
|
2393
|
+
}
|
|
2394
|
+
/**
|
|
2395
|
+
* @public
|
|
2396
|
+
* Creates a new gateway. The request must include at least one network (up to 4).
|
|
2397
|
+
*/
|
|
2398
|
+
export interface CreateGatewayRequest {
|
|
2399
|
+
/**
|
|
2400
|
+
* The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
2401
|
+
*/
|
|
2402
|
+
EgressCidrBlocks: string[] | undefined;
|
|
2403
|
+
/**
|
|
2404
|
+
* The name of the gateway. This name can not be modified after the gateway is created.
|
|
2405
|
+
*/
|
|
2406
|
+
Name: string | undefined;
|
|
2407
|
+
/**
|
|
2408
|
+
* The list of networks that you want to add.
|
|
2409
|
+
*/
|
|
2410
|
+
Networks: GatewayNetwork[] | undefined;
|
|
2411
|
+
}
|
|
2412
|
+
/**
|
|
2413
|
+
* @public
|
|
2414
|
+
* The settings for a gateway, including its networks.
|
|
2415
|
+
*/
|
|
2416
|
+
export interface Gateway {
|
|
2417
|
+
/**
|
|
2418
|
+
* The range of IP addresses that contribute content or initiate output requests for flows communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
2419
|
+
*/
|
|
2420
|
+
EgressCidrBlocks: string[] | undefined;
|
|
2421
|
+
/**
|
|
2422
|
+
* The Amazon Resource Name (ARN) of the gateway.
|
|
2423
|
+
*/
|
|
2424
|
+
GatewayArn: string | undefined;
|
|
2425
|
+
GatewayMessages?: MessageDetail[];
|
|
2426
|
+
/**
|
|
2427
|
+
* The current status of the gateway.
|
|
2428
|
+
*/
|
|
2429
|
+
GatewayState?: GatewayState | string;
|
|
2430
|
+
/**
|
|
2431
|
+
* The name of the gateway. This name can not be modified after the gateway is created.
|
|
2432
|
+
*/
|
|
2433
|
+
Name: string | undefined;
|
|
2434
|
+
/**
|
|
2435
|
+
* The list of networks in the gateway.
|
|
2436
|
+
*/
|
|
2437
|
+
Networks: GatewayNetwork[] | undefined;
|
|
2438
|
+
}
|
|
2439
|
+
/**
|
|
2440
|
+
* @public
|
|
2441
|
+
*/
|
|
2442
|
+
export interface CreateGatewayResponse {
|
|
2443
|
+
/**
|
|
2444
|
+
* The settings for a gateway, including its networks.
|
|
2445
|
+
*/
|
|
2446
|
+
Gateway?: Gateway;
|
|
2447
|
+
}
|
|
2448
|
+
/**
|
|
2449
|
+
* @public
|
|
2450
|
+
*/
|
|
2451
|
+
export interface DeleteBridgeRequest {
|
|
2452
|
+
/**
|
|
2453
|
+
* The ARN of the bridge that you want to delete.
|
|
2454
|
+
*/
|
|
2455
|
+
BridgeArn: string | undefined;
|
|
2456
|
+
}
|
|
2457
|
+
/**
|
|
2458
|
+
* @public
|
|
2459
|
+
*/
|
|
2460
|
+
export interface DeleteBridgeResponse {
|
|
2461
|
+
/**
|
|
2462
|
+
* The Amazon Resource Number (ARN) of the deleted bridge.
|
|
2463
|
+
*/
|
|
2464
|
+
BridgeArn?: string;
|
|
2465
|
+
}
|
|
1727
2466
|
/**
|
|
1728
2467
|
* @public
|
|
1729
2468
|
*/
|
|
@@ -1746,6 +2485,68 @@ export interface DeleteFlowResponse {
|
|
|
1746
2485
|
*/
|
|
1747
2486
|
Status?: Status | string;
|
|
1748
2487
|
}
|
|
2488
|
+
/**
|
|
2489
|
+
* @public
|
|
2490
|
+
*/
|
|
2491
|
+
export interface DeleteGatewayRequest {
|
|
2492
|
+
/**
|
|
2493
|
+
* The ARN of the gateway that you want to delete.
|
|
2494
|
+
*/
|
|
2495
|
+
GatewayArn: string | undefined;
|
|
2496
|
+
}
|
|
2497
|
+
/**
|
|
2498
|
+
* @public
|
|
2499
|
+
*/
|
|
2500
|
+
export interface DeleteGatewayResponse {
|
|
2501
|
+
/**
|
|
2502
|
+
* The Amazon Resource Name (ARN) of the gateway that was deleted.
|
|
2503
|
+
*/
|
|
2504
|
+
GatewayArn?: string;
|
|
2505
|
+
}
|
|
2506
|
+
/**
|
|
2507
|
+
* @public
|
|
2508
|
+
*/
|
|
2509
|
+
export interface DeregisterGatewayInstanceRequest {
|
|
2510
|
+
/**
|
|
2511
|
+
* Force the deregistration of an instance. Force will deregister an instance, even if there are bridges running on it.
|
|
2512
|
+
*/
|
|
2513
|
+
Force?: boolean;
|
|
2514
|
+
/**
|
|
2515
|
+
* The Amazon Resource Name (ARN) of the gateway that contains the instance that you want to deregister.
|
|
2516
|
+
*/
|
|
2517
|
+
GatewayInstanceArn: string | undefined;
|
|
2518
|
+
}
|
|
2519
|
+
/**
|
|
2520
|
+
* @public
|
|
2521
|
+
*/
|
|
2522
|
+
export interface DeregisterGatewayInstanceResponse {
|
|
2523
|
+
/**
|
|
2524
|
+
* The Amazon Resource Name (ARN) of the instance.
|
|
2525
|
+
*/
|
|
2526
|
+
GatewayInstanceArn?: string;
|
|
2527
|
+
/**
|
|
2528
|
+
* The status of the instance.
|
|
2529
|
+
*/
|
|
2530
|
+
InstanceState?: InstanceState | string;
|
|
2531
|
+
}
|
|
2532
|
+
/**
|
|
2533
|
+
* @public
|
|
2534
|
+
*/
|
|
2535
|
+
export interface DescribeBridgeRequest {
|
|
2536
|
+
/**
|
|
2537
|
+
* The ARN of the bridge that you want to describe.
|
|
2538
|
+
*/
|
|
2539
|
+
BridgeArn: string | undefined;
|
|
2540
|
+
}
|
|
2541
|
+
/**
|
|
2542
|
+
* @public
|
|
2543
|
+
*/
|
|
2544
|
+
export interface DescribeBridgeResponse {
|
|
2545
|
+
/**
|
|
2546
|
+
* A Bridge is the connection between your datacenter's Instances and the AWS cloud. A bridge can be used to send video from the AWS cloud to your datacenter or from your datacenter to the AWS cloud.
|
|
2547
|
+
*/
|
|
2548
|
+
Bridge?: Bridge;
|
|
2549
|
+
}
|
|
1749
2550
|
/**
|
|
1750
2551
|
* @public
|
|
1751
2552
|
*/
|
|
@@ -1778,6 +2579,77 @@ export interface DescribeFlowResponse {
|
|
|
1778
2579
|
*/
|
|
1779
2580
|
Messages?: Messages;
|
|
1780
2581
|
}
|
|
2582
|
+
/**
|
|
2583
|
+
* @public
|
|
2584
|
+
*/
|
|
2585
|
+
export interface DescribeGatewayRequest {
|
|
2586
|
+
/**
|
|
2587
|
+
* The Amazon Resource Name (ARN) of the gateway that you want to describe.
|
|
2588
|
+
*/
|
|
2589
|
+
GatewayArn: string | undefined;
|
|
2590
|
+
}
|
|
2591
|
+
/**
|
|
2592
|
+
* @public
|
|
2593
|
+
*/
|
|
2594
|
+
export interface DescribeGatewayResponse {
|
|
2595
|
+
/**
|
|
2596
|
+
* The settings for a gateway, including its networks.
|
|
2597
|
+
*/
|
|
2598
|
+
Gateway?: Gateway;
|
|
2599
|
+
}
|
|
2600
|
+
/**
|
|
2601
|
+
* @public
|
|
2602
|
+
*/
|
|
2603
|
+
export interface DescribeGatewayInstanceRequest {
|
|
2604
|
+
/**
|
|
2605
|
+
* The Amazon Resource Name (ARN) of the gateway instance that you want to describe.
|
|
2606
|
+
*/
|
|
2607
|
+
GatewayInstanceArn: string | undefined;
|
|
2608
|
+
}
|
|
2609
|
+
/**
|
|
2610
|
+
* @public
|
|
2611
|
+
* The settings for an instance in a gateway.
|
|
2612
|
+
*/
|
|
2613
|
+
export interface GatewayInstance {
|
|
2614
|
+
/**
|
|
2615
|
+
* The availability of the instance to host new bridges. The bridgePlacement property can be LOCKED or AVAILABLE. If it is LOCKED, no new bridges can be deployed to this instance. If it is AVAILABLE, new bridges can be added to this instance.
|
|
2616
|
+
*/
|
|
2617
|
+
BridgePlacement: BridgePlacement | string | undefined;
|
|
2618
|
+
/**
|
|
2619
|
+
* The connection state of the instance.
|
|
2620
|
+
*/
|
|
2621
|
+
ConnectionStatus: ConnectionStatus | string | undefined;
|
|
2622
|
+
/**
|
|
2623
|
+
* The Amazon Resource Name (ARN) of the instance.
|
|
2624
|
+
*/
|
|
2625
|
+
GatewayArn: string | undefined;
|
|
2626
|
+
/**
|
|
2627
|
+
* The Amazon Resource Name (ARN) of the gateway.
|
|
2628
|
+
*/
|
|
2629
|
+
GatewayInstanceArn: string | undefined;
|
|
2630
|
+
/**
|
|
2631
|
+
* The managed instance ID generated by the SSM install. This will begin with "mi-".
|
|
2632
|
+
*/
|
|
2633
|
+
InstanceId: string | undefined;
|
|
2634
|
+
InstanceMessages?: MessageDetail[];
|
|
2635
|
+
/**
|
|
2636
|
+
* The status of the instance.
|
|
2637
|
+
*/
|
|
2638
|
+
InstanceState: InstanceState | string | undefined;
|
|
2639
|
+
/**
|
|
2640
|
+
* The running bridge count.
|
|
2641
|
+
*/
|
|
2642
|
+
RunningBridgeCount: number | undefined;
|
|
2643
|
+
}
|
|
2644
|
+
/**
|
|
2645
|
+
* @public
|
|
2646
|
+
*/
|
|
2647
|
+
export interface DescribeGatewayInstanceResponse {
|
|
2648
|
+
/**
|
|
2649
|
+
* The settings for an instance in a gateway.
|
|
2650
|
+
*/
|
|
2651
|
+
GatewayInstance?: GatewayInstance;
|
|
2652
|
+
}
|
|
1781
2653
|
/**
|
|
1782
2654
|
* @public
|
|
1783
2655
|
*/
|
|
@@ -1814,6 +2686,19 @@ export interface DescribeReservationResponse {
|
|
|
1814
2686
|
*/
|
|
1815
2687
|
Reservation?: Reservation;
|
|
1816
2688
|
}
|
|
2689
|
+
/**
|
|
2690
|
+
* @public
|
|
2691
|
+
* @enum
|
|
2692
|
+
*/
|
|
2693
|
+
export declare const DesiredState: {
|
|
2694
|
+
readonly ACTIVE: "ACTIVE";
|
|
2695
|
+
readonly DELETED: "DELETED";
|
|
2696
|
+
readonly STANDBY: "STANDBY";
|
|
2697
|
+
};
|
|
2698
|
+
/**
|
|
2699
|
+
* @public
|
|
2700
|
+
*/
|
|
2701
|
+
export type DesiredState = (typeof DesiredState)[keyof typeof DesiredState];
|
|
1817
2702
|
/**
|
|
1818
2703
|
* @public
|
|
1819
2704
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
@@ -1857,6 +2742,36 @@ export interface GrantFlowEntitlementsResponse {
|
|
|
1857
2742
|
*/
|
|
1858
2743
|
FlowArn?: string;
|
|
1859
2744
|
}
|
|
2745
|
+
/**
|
|
2746
|
+
* @public
|
|
2747
|
+
*/
|
|
2748
|
+
export interface ListBridgesRequest {
|
|
2749
|
+
/**
|
|
2750
|
+
* Filter the list results to display only the bridges associated with the selected Amazon Resource Name (ARN).
|
|
2751
|
+
*/
|
|
2752
|
+
FilterArn?: string;
|
|
2753
|
+
/**
|
|
2754
|
+
* The maximum number of results to return per API request. For example, you submit a ListBridges request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
|
|
2755
|
+
*/
|
|
2756
|
+
MaxResults?: number;
|
|
2757
|
+
/**
|
|
2758
|
+
* The token that identifies which batch of results that you want to see. For example, you submit a ListBridges request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListBridges request a second time and specify the NextToken value.
|
|
2759
|
+
*/
|
|
2760
|
+
NextToken?: string;
|
|
2761
|
+
}
|
|
2762
|
+
/**
|
|
2763
|
+
* @public
|
|
2764
|
+
*/
|
|
2765
|
+
export interface ListBridgesResponse {
|
|
2766
|
+
/**
|
|
2767
|
+
* A list of bridge summaries.
|
|
2768
|
+
*/
|
|
2769
|
+
Bridges?: ListedBridge[];
|
|
2770
|
+
/**
|
|
2771
|
+
* The token that identifies which batch of results that you want to see. For example, you submit a ListBridges request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListBridges request a second time and specify the NextToken value.
|
|
2772
|
+
*/
|
|
2773
|
+
NextToken?: string;
|
|
2774
|
+
}
|
|
1860
2775
|
/**
|
|
1861
2776
|
* @public
|
|
1862
2777
|
*/
|
|
@@ -1909,6 +2824,62 @@ export interface ListFlowsResponse {
|
|
|
1909
2824
|
*/
|
|
1910
2825
|
NextToken?: string;
|
|
1911
2826
|
}
|
|
2827
|
+
/**
|
|
2828
|
+
* @public
|
|
2829
|
+
*/
|
|
2830
|
+
export interface ListGatewayInstancesRequest {
|
|
2831
|
+
/**
|
|
2832
|
+
* Filter the list results to display only the instances associated with the selected Gateway Amazon Resource Name (ARN).
|
|
2833
|
+
*/
|
|
2834
|
+
FilterArn?: string;
|
|
2835
|
+
/**
|
|
2836
|
+
* The maximum number of results to return per API request. For example, you submit a ListInstances request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
|
|
2837
|
+
*/
|
|
2838
|
+
MaxResults?: number;
|
|
2839
|
+
/**
|
|
2840
|
+
* The token that identifies which batch of results that you want to see. For example, you submit a ListInstances request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListInstances request a second time and specify the NextToken value.
|
|
2841
|
+
*/
|
|
2842
|
+
NextToken?: string;
|
|
2843
|
+
}
|
|
2844
|
+
/**
|
|
2845
|
+
* @public
|
|
2846
|
+
*/
|
|
2847
|
+
export interface ListGatewayInstancesResponse {
|
|
2848
|
+
/**
|
|
2849
|
+
* A list of instance summaries.
|
|
2850
|
+
*/
|
|
2851
|
+
Instances?: ListedGatewayInstance[];
|
|
2852
|
+
/**
|
|
2853
|
+
* The token that identifies which batch of results that you want to see. For example, you submit a ListInstances request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListInstances request a second time and specify the NextToken value.
|
|
2854
|
+
*/
|
|
2855
|
+
NextToken?: string;
|
|
2856
|
+
}
|
|
2857
|
+
/**
|
|
2858
|
+
* @public
|
|
2859
|
+
*/
|
|
2860
|
+
export interface ListGatewaysRequest {
|
|
2861
|
+
/**
|
|
2862
|
+
* The maximum number of results to return per API request. For example, you submit a ListGateways request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
|
|
2863
|
+
*/
|
|
2864
|
+
MaxResults?: number;
|
|
2865
|
+
/**
|
|
2866
|
+
* The token that identifies which batch of results that you want to see. For example, you submit a ListGateways request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListGateways request a second time and specify the NextToken value.
|
|
2867
|
+
*/
|
|
2868
|
+
NextToken?: string;
|
|
2869
|
+
}
|
|
2870
|
+
/**
|
|
2871
|
+
* @public
|
|
2872
|
+
*/
|
|
2873
|
+
export interface ListGatewaysResponse {
|
|
2874
|
+
/**
|
|
2875
|
+
* A list of gateway summaries.
|
|
2876
|
+
*/
|
|
2877
|
+
Gateways?: ListedGateway[];
|
|
2878
|
+
/**
|
|
2879
|
+
* The token that identifies which batch of results that you want to see. For example, you submit a ListGateways request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListGateways request a second time and specify the NextToken value.
|
|
2880
|
+
*/
|
|
2881
|
+
NextToken?: string;
|
|
2882
|
+
}
|
|
1912
2883
|
/**
|
|
1913
2884
|
* @public
|
|
1914
2885
|
*/
|
|
@@ -2006,6 +2977,46 @@ export interface PurchaseOfferingResponse {
|
|
|
2006
2977
|
*/
|
|
2007
2978
|
Reservation?: Reservation;
|
|
2008
2979
|
}
|
|
2980
|
+
/**
|
|
2981
|
+
* @public
|
|
2982
|
+
*/
|
|
2983
|
+
export interface RemoveBridgeOutputRequest {
|
|
2984
|
+
/**
|
|
2985
|
+
* The ARN of the bridge that you want to update.
|
|
2986
|
+
*/
|
|
2987
|
+
BridgeArn: string | undefined;
|
|
2988
|
+
/**
|
|
2989
|
+
* The name of the bridge output that you want to remove.
|
|
2990
|
+
*/
|
|
2991
|
+
OutputName: string | undefined;
|
|
2992
|
+
}
|
|
2993
|
+
/**
|
|
2994
|
+
* @public
|
|
2995
|
+
*/
|
|
2996
|
+
export interface RemoveBridgeOutputResponse {
|
|
2997
|
+
BridgeArn?: string;
|
|
2998
|
+
OutputName?: string;
|
|
2999
|
+
}
|
|
3000
|
+
/**
|
|
3001
|
+
* @public
|
|
3002
|
+
*/
|
|
3003
|
+
export interface RemoveBridgeSourceRequest {
|
|
3004
|
+
/**
|
|
3005
|
+
* The ARN of the bridge that you want to update.
|
|
3006
|
+
*/
|
|
3007
|
+
BridgeArn: string | undefined;
|
|
3008
|
+
/**
|
|
3009
|
+
* The name of the bridge source that you want to remove.
|
|
3010
|
+
*/
|
|
3011
|
+
SourceName: string | undefined;
|
|
3012
|
+
}
|
|
3013
|
+
/**
|
|
3014
|
+
* @public
|
|
3015
|
+
*/
|
|
3016
|
+
export interface RemoveBridgeSourceResponse {
|
|
3017
|
+
BridgeArn?: string;
|
|
3018
|
+
SourceName?: string;
|
|
3019
|
+
}
|
|
2009
3020
|
/**
|
|
2010
3021
|
* @public
|
|
2011
3022
|
*/
|
|
@@ -2213,21 +3224,25 @@ export interface UntagResourceRequest {
|
|
|
2213
3224
|
}
|
|
2214
3225
|
/**
|
|
2215
3226
|
* @public
|
|
2216
|
-
* Update maintenance setting for a flow
|
|
2217
3227
|
*/
|
|
2218
|
-
export interface
|
|
3228
|
+
export interface UpdateEgressGatewayBridgeRequest {
|
|
2219
3229
|
/**
|
|
2220
|
-
*
|
|
3230
|
+
* Update an existing egress-type bridge.
|
|
2221
3231
|
*/
|
|
2222
|
-
|
|
3232
|
+
MaxBitrate?: number;
|
|
3233
|
+
}
|
|
3234
|
+
/**
|
|
3235
|
+
* @public
|
|
3236
|
+
*/
|
|
3237
|
+
export interface UpdateIngressGatewayBridgeRequest {
|
|
2223
3238
|
/**
|
|
2224
|
-
*
|
|
3239
|
+
* The maximum expected bitrate (in bps).
|
|
2225
3240
|
*/
|
|
2226
|
-
|
|
3241
|
+
MaxBitrate?: number;
|
|
2227
3242
|
/**
|
|
2228
|
-
*
|
|
3243
|
+
* The maximum number of expected outputs.
|
|
2229
3244
|
*/
|
|
2230
|
-
|
|
3245
|
+
MaxOutputs?: number;
|
|
2231
3246
|
}
|
|
2232
3247
|
/**
|
|
2233
3248
|
* @public
|
|
@@ -2248,6 +3263,201 @@ export interface UpdateFailoverConfig {
|
|
|
2248
3263
|
SourcePriority?: SourcePriority;
|
|
2249
3264
|
State?: State | string;
|
|
2250
3265
|
}
|
|
3266
|
+
/**
|
|
3267
|
+
* @public
|
|
3268
|
+
* A request to update the bridge.
|
|
3269
|
+
*/
|
|
3270
|
+
export interface UpdateBridgeRequest {
|
|
3271
|
+
/**
|
|
3272
|
+
* The Amazon Resource Number (ARN) of the bridge that you want to update.
|
|
3273
|
+
*/
|
|
3274
|
+
BridgeArn: string | undefined;
|
|
3275
|
+
EgressGatewayBridge?: UpdateEgressGatewayBridgeRequest;
|
|
3276
|
+
IngressGatewayBridge?: UpdateIngressGatewayBridgeRequest;
|
|
3277
|
+
/**
|
|
3278
|
+
* The settings for source failover.
|
|
3279
|
+
*/
|
|
3280
|
+
SourceFailoverConfig?: UpdateFailoverConfig;
|
|
3281
|
+
}
|
|
3282
|
+
/**
|
|
3283
|
+
* @public
|
|
3284
|
+
*/
|
|
3285
|
+
export interface UpdateBridgeResponse {
|
|
3286
|
+
/**
|
|
3287
|
+
* A Bridge is the connection between your datacenter's Instances and the AWS cloud. A bridge can be used to send video from the AWS cloud to your datacenter or from your datacenter to the AWS cloud.
|
|
3288
|
+
*/
|
|
3289
|
+
Bridge?: Bridge;
|
|
3290
|
+
}
|
|
3291
|
+
/**
|
|
3292
|
+
* @public
|
|
3293
|
+
* Update an existing network output.
|
|
3294
|
+
*/
|
|
3295
|
+
export interface UpdateBridgeNetworkOutputRequest {
|
|
3296
|
+
/**
|
|
3297
|
+
* The network output IP Address.
|
|
3298
|
+
*/
|
|
3299
|
+
IpAddress?: string;
|
|
3300
|
+
/**
|
|
3301
|
+
* The network output's gateway network name.
|
|
3302
|
+
*/
|
|
3303
|
+
NetworkName?: string;
|
|
3304
|
+
/**
|
|
3305
|
+
* The network output port.
|
|
3306
|
+
*/
|
|
3307
|
+
Port?: number;
|
|
3308
|
+
/**
|
|
3309
|
+
* The network output protocol.
|
|
3310
|
+
*/
|
|
3311
|
+
Protocol?: Protocol | string;
|
|
3312
|
+
/**
|
|
3313
|
+
* The network output TTL.
|
|
3314
|
+
*/
|
|
3315
|
+
Ttl?: number;
|
|
3316
|
+
}
|
|
3317
|
+
/**
|
|
3318
|
+
* @public
|
|
3319
|
+
* The fields that you want to update in the bridge output.
|
|
3320
|
+
*/
|
|
3321
|
+
export interface UpdateBridgeOutputRequest {
|
|
3322
|
+
/**
|
|
3323
|
+
* The ARN of the bridge that you want to update.
|
|
3324
|
+
*/
|
|
3325
|
+
BridgeArn: string | undefined;
|
|
3326
|
+
/**
|
|
3327
|
+
* Update an existing network output.
|
|
3328
|
+
*/
|
|
3329
|
+
NetworkOutput?: UpdateBridgeNetworkOutputRequest;
|
|
3330
|
+
/**
|
|
3331
|
+
* The name of the bridge output that you want to update.
|
|
3332
|
+
*/
|
|
3333
|
+
OutputName: string | undefined;
|
|
3334
|
+
}
|
|
3335
|
+
/**
|
|
3336
|
+
* @public
|
|
3337
|
+
*/
|
|
3338
|
+
export interface UpdateBridgeOutputResponse {
|
|
3339
|
+
/**
|
|
3340
|
+
* The Amazon Resource Number (ARN) of the bridge.
|
|
3341
|
+
*/
|
|
3342
|
+
BridgeArn?: string;
|
|
3343
|
+
/**
|
|
3344
|
+
* The output that you updated.
|
|
3345
|
+
*/
|
|
3346
|
+
Output?: BridgeOutput;
|
|
3347
|
+
}
|
|
3348
|
+
/**
|
|
3349
|
+
* @public
|
|
3350
|
+
* Update the flow source of the bridge.
|
|
3351
|
+
*/
|
|
3352
|
+
export interface UpdateBridgeFlowSourceRequest {
|
|
3353
|
+
/**
|
|
3354
|
+
* The ARN of the cloud flow to use as a source of this bridge.
|
|
3355
|
+
*/
|
|
3356
|
+
FlowArn?: string;
|
|
3357
|
+
/**
|
|
3358
|
+
* The name of the VPC interface attachment to use for this source.
|
|
3359
|
+
*/
|
|
3360
|
+
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
3361
|
+
}
|
|
3362
|
+
/**
|
|
3363
|
+
* @public
|
|
3364
|
+
* Update the network source of the bridge.
|
|
3365
|
+
*/
|
|
3366
|
+
export interface UpdateBridgeNetworkSourceRequest {
|
|
3367
|
+
/**
|
|
3368
|
+
* The network source multicast IP.
|
|
3369
|
+
*/
|
|
3370
|
+
MulticastIp?: string;
|
|
3371
|
+
/**
|
|
3372
|
+
* The network source's gateway network name.
|
|
3373
|
+
*/
|
|
3374
|
+
NetworkName?: string;
|
|
3375
|
+
/**
|
|
3376
|
+
* The network source port.
|
|
3377
|
+
*/
|
|
3378
|
+
Port?: number;
|
|
3379
|
+
/**
|
|
3380
|
+
* The network source protocol.
|
|
3381
|
+
*/
|
|
3382
|
+
Protocol?: Protocol | string;
|
|
3383
|
+
}
|
|
3384
|
+
/**
|
|
3385
|
+
* @public
|
|
3386
|
+
* The fields that you want to update in the bridge source.
|
|
3387
|
+
*/
|
|
3388
|
+
export interface UpdateBridgeSourceRequest {
|
|
3389
|
+
/**
|
|
3390
|
+
* The ARN of the bridge that you want to update.
|
|
3391
|
+
*/
|
|
3392
|
+
BridgeArn: string | undefined;
|
|
3393
|
+
/**
|
|
3394
|
+
* Update the flow source of the bridge.
|
|
3395
|
+
*/
|
|
3396
|
+
FlowSource?: UpdateBridgeFlowSourceRequest;
|
|
3397
|
+
/**
|
|
3398
|
+
* Update the network source of the bridge.
|
|
3399
|
+
*/
|
|
3400
|
+
NetworkSource?: UpdateBridgeNetworkSourceRequest;
|
|
3401
|
+
/**
|
|
3402
|
+
* The name of the source that you want to update.
|
|
3403
|
+
*/
|
|
3404
|
+
SourceName: string | undefined;
|
|
3405
|
+
}
|
|
3406
|
+
/**
|
|
3407
|
+
* @public
|
|
3408
|
+
*/
|
|
3409
|
+
export interface UpdateBridgeSourceResponse {
|
|
3410
|
+
/**
|
|
3411
|
+
* The Amazon Resource Number (ARN) of the bridge.
|
|
3412
|
+
*/
|
|
3413
|
+
BridgeArn?: string;
|
|
3414
|
+
/**
|
|
3415
|
+
* The bridge's source.
|
|
3416
|
+
*/
|
|
3417
|
+
Source?: BridgeSource;
|
|
3418
|
+
}
|
|
3419
|
+
/**
|
|
3420
|
+
* @public
|
|
3421
|
+
* A request to update the bridge state.
|
|
3422
|
+
*/
|
|
3423
|
+
export interface UpdateBridgeStateRequest {
|
|
3424
|
+
/**
|
|
3425
|
+
* The ARN of the bridge that you want to update.
|
|
3426
|
+
*/
|
|
3427
|
+
BridgeArn: string | undefined;
|
|
3428
|
+
DesiredState: DesiredState | string | undefined;
|
|
3429
|
+
}
|
|
3430
|
+
/**
|
|
3431
|
+
* @public
|
|
3432
|
+
*/
|
|
3433
|
+
export interface UpdateBridgeStateResponse {
|
|
3434
|
+
/**
|
|
3435
|
+
* The Amazon Resource Number (ARN) of the bridge.
|
|
3436
|
+
*/
|
|
3437
|
+
BridgeArn?: string;
|
|
3438
|
+
/**
|
|
3439
|
+
* The state of the bridge. ACTIVE or STANDBY.
|
|
3440
|
+
*/
|
|
3441
|
+
DesiredState?: DesiredState | string;
|
|
3442
|
+
}
|
|
3443
|
+
/**
|
|
3444
|
+
* @public
|
|
3445
|
+
* Update maintenance setting for a flow
|
|
3446
|
+
*/
|
|
3447
|
+
export interface UpdateMaintenance {
|
|
3448
|
+
/**
|
|
3449
|
+
* A day of a week when the maintenance will happen. use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
|
3450
|
+
*/
|
|
3451
|
+
MaintenanceDay?: MaintenanceDay | string;
|
|
3452
|
+
/**
|
|
3453
|
+
* A scheduled date in ISO UTC format when the maintenance will happen. Use YYYY-MM-DD format. Example: 2021-01-30.
|
|
3454
|
+
*/
|
|
3455
|
+
MaintenanceScheduledDate?: string;
|
|
3456
|
+
/**
|
|
3457
|
+
* UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes must be 00. Example: 13:00. The default value is 02:00.
|
|
3458
|
+
*/
|
|
3459
|
+
MaintenanceStartHour?: string;
|
|
3460
|
+
}
|
|
2251
3461
|
/**
|
|
2252
3462
|
* @public
|
|
2253
3463
|
* A request to update flow.
|
|
@@ -2327,7 +3537,7 @@ export interface UpdateFlowEntitlementRequest {
|
|
|
2327
3537
|
*/
|
|
2328
3538
|
Description?: string;
|
|
2329
3539
|
/**
|
|
2330
|
-
* The type of encryption that will be used on the output associated with this entitlement.
|
|
3540
|
+
* The type of encryption that will be used on the output associated with this entitlement. Allowable encryption types: static-key, speke.
|
|
2331
3541
|
*/
|
|
2332
3542
|
Encryption?: UpdateEncryption;
|
|
2333
3543
|
/**
|
|
@@ -2425,7 +3635,7 @@ export interface UpdateFlowOutputRequest {
|
|
|
2425
3635
|
*/
|
|
2426
3636
|
Destination?: string;
|
|
2427
3637
|
/**
|
|
2428
|
-
* The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
|
|
3638
|
+
* The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key). Allowable encryption types: static-key.
|
|
2429
3639
|
*/
|
|
2430
3640
|
Encryption?: UpdateEncryption;
|
|
2431
3641
|
/**
|
|
@@ -2473,7 +3683,7 @@ export interface UpdateFlowOutputRequest {
|
|
|
2473
3683
|
*/
|
|
2474
3684
|
SmoothingLatency?: number;
|
|
2475
3685
|
/**
|
|
2476
|
-
* The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams.
|
|
3686
|
+
* The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
|
|
2477
3687
|
*/
|
|
2478
3688
|
StreamId?: string;
|
|
2479
3689
|
/**
|
|
@@ -2494,13 +3704,27 @@ export interface UpdateFlowOutputResponse {
|
|
|
2494
3704
|
*/
|
|
2495
3705
|
Output?: Output;
|
|
2496
3706
|
}
|
|
3707
|
+
/**
|
|
3708
|
+
* @public
|
|
3709
|
+
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
3710
|
+
*/
|
|
3711
|
+
export interface UpdateGatewayBridgeSourceRequest {
|
|
3712
|
+
/**
|
|
3713
|
+
* The ARN of the bridge feeding this flow.
|
|
3714
|
+
*/
|
|
3715
|
+
BridgeArn?: string;
|
|
3716
|
+
/**
|
|
3717
|
+
* The name of the VPC interface attachment to use for this bridge source.
|
|
3718
|
+
*/
|
|
3719
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
3720
|
+
}
|
|
2497
3721
|
/**
|
|
2498
3722
|
* @public
|
|
2499
3723
|
* A request to update the source of a flow.
|
|
2500
3724
|
*/
|
|
2501
3725
|
export interface UpdateFlowSourceRequest {
|
|
2502
3726
|
/**
|
|
2503
|
-
* The type of encryption used on the content ingested from this source.
|
|
3727
|
+
* The type of encryption used on the content ingested from this source. Allowable encryption types: static-key.
|
|
2504
3728
|
*/
|
|
2505
3729
|
Decryption?: UpdateEncryption;
|
|
2506
3730
|
/**
|
|
@@ -2520,7 +3744,7 @@ export interface UpdateFlowSourceRequest {
|
|
|
2520
3744
|
*/
|
|
2521
3745
|
IngestPort?: number;
|
|
2522
3746
|
/**
|
|
2523
|
-
* The smoothing max bitrate for RIST, RTP, and RTP-FEC streams.
|
|
3747
|
+
* The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
|
|
2524
3748
|
*/
|
|
2525
3749
|
MaxBitrate?: number;
|
|
2526
3750
|
/**
|
|
@@ -2564,7 +3788,7 @@ export interface UpdateFlowSourceRequest {
|
|
|
2564
3788
|
*/
|
|
2565
3789
|
SourceListenerPort?: number;
|
|
2566
3790
|
/**
|
|
2567
|
-
* The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams.
|
|
3791
|
+
* The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
|
|
2568
3792
|
*/
|
|
2569
3793
|
StreamId?: string;
|
|
2570
3794
|
/**
|
|
@@ -2575,6 +3799,10 @@ export interface UpdateFlowSourceRequest {
|
|
|
2575
3799
|
* The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
2576
3800
|
*/
|
|
2577
3801
|
WhitelistCidr?: string;
|
|
3802
|
+
/**
|
|
3803
|
+
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
3804
|
+
*/
|
|
3805
|
+
GatewayBridgeSource?: UpdateGatewayBridgeSourceRequest;
|
|
2578
3806
|
}
|
|
2579
3807
|
/**
|
|
2580
3808
|
* @public
|
|
@@ -2589,3 +3817,30 @@ export interface UpdateFlowSourceResponse {
|
|
|
2589
3817
|
*/
|
|
2590
3818
|
Source?: Source;
|
|
2591
3819
|
}
|
|
3820
|
+
/**
|
|
3821
|
+
* @public
|
|
3822
|
+
* A request to update gateway instance state.
|
|
3823
|
+
*/
|
|
3824
|
+
export interface UpdateGatewayInstanceRequest {
|
|
3825
|
+
/**
|
|
3826
|
+
* The availability of the instance to host new bridges. The bridgePlacement property can be LOCKED or AVAILABLE. If it is LOCKED, no new bridges can be deployed to this instance. If it is AVAILABLE, new bridges can be added to this instance.
|
|
3827
|
+
*/
|
|
3828
|
+
BridgePlacement?: BridgePlacement | string;
|
|
3829
|
+
/**
|
|
3830
|
+
* The Amazon Resource Name (ARN) of the instance that you want to update.
|
|
3831
|
+
*/
|
|
3832
|
+
GatewayInstanceArn: string | undefined;
|
|
3833
|
+
}
|
|
3834
|
+
/**
|
|
3835
|
+
* @public
|
|
3836
|
+
*/
|
|
3837
|
+
export interface UpdateGatewayInstanceResponse {
|
|
3838
|
+
/**
|
|
3839
|
+
* The availability of the instance to host new bridges. The bridgePlacement property can be LOCKED or AVAILABLE. If it is LOCKED, no new bridges can be deployed to this instance. If it is AVAILABLE, new bridges can be added to this instance.
|
|
3840
|
+
*/
|
|
3841
|
+
BridgePlacement?: BridgePlacement | string;
|
|
3842
|
+
/**
|
|
3843
|
+
* The Amazon Resource Name (ARN) of the instance.
|
|
3844
|
+
*/
|
|
3845
|
+
GatewayInstanceArn?: string;
|
|
3846
|
+
}
|