@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
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
|
+
import { CreateBridgeRequest, CreateBridgeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
9
|
+
* The input for {@link CreateBridgeCommand}.
|
|
10
|
+
*/
|
|
11
|
+
export interface CreateBridgeCommandInput extends CreateBridgeRequest {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
16
|
+
* The output of {@link CreateBridgeCommand}.
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateBridgeCommandOutput extends CreateBridgeResponse, __MetadataBearer {
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* Creates a new bridge. The request must include one source.
|
|
23
|
+
* @example
|
|
24
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
25
|
+
* ```javascript
|
|
26
|
+
* import { MediaConnectClient, CreateBridgeCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
|
+
* // const { MediaConnectClient, CreateBridgeCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
|
+
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = { // CreateBridgeRequest
|
|
30
|
+
* EgressGatewayBridge: { // AddEgressGatewayBridgeRequest
|
|
31
|
+
* MaxBitrate: Number("int"), // required
|
|
32
|
+
* },
|
|
33
|
+
* IngressGatewayBridge: { // AddIngressGatewayBridgeRequest
|
|
34
|
+
* MaxBitrate: Number("int"), // required
|
|
35
|
+
* MaxOutputs: Number("int"), // required
|
|
36
|
+
* },
|
|
37
|
+
* Name: "STRING_VALUE", // required
|
|
38
|
+
* Outputs: [ // __listOfAddBridgeOutputRequest
|
|
39
|
+
* { // AddBridgeOutputRequest
|
|
40
|
+
* NetworkOutput: { // AddBridgeNetworkOutputRequest
|
|
41
|
+
* IpAddress: "STRING_VALUE", // required
|
|
42
|
+
* Name: "STRING_VALUE", // required
|
|
43
|
+
* NetworkName: "STRING_VALUE", // required
|
|
44
|
+
* Port: Number("int"), // required
|
|
45
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
46
|
+
* Ttl: Number("int"), // required
|
|
47
|
+
* },
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* PlacementArn: "STRING_VALUE", // required
|
|
51
|
+
* SourceFailoverConfig: { // FailoverConfig
|
|
52
|
+
* FailoverMode: "MERGE" || "FAILOVER",
|
|
53
|
+
* RecoveryWindow: Number("int"),
|
|
54
|
+
* SourcePriority: { // SourcePriority
|
|
55
|
+
* PrimarySource: "STRING_VALUE",
|
|
56
|
+
* },
|
|
57
|
+
* State: "ENABLED" || "DISABLED",
|
|
58
|
+
* },
|
|
59
|
+
* Sources: [ // __listOfAddBridgeSourceRequest // required
|
|
60
|
+
* { // AddBridgeSourceRequest
|
|
61
|
+
* FlowSource: { // AddBridgeFlowSourceRequest
|
|
62
|
+
* FlowArn: "STRING_VALUE", // required
|
|
63
|
+
* FlowVpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
64
|
+
* VpcInterfaceName: "STRING_VALUE",
|
|
65
|
+
* },
|
|
66
|
+
* Name: "STRING_VALUE", // required
|
|
67
|
+
* },
|
|
68
|
+
* NetworkSource: { // AddBridgeNetworkSourceRequest
|
|
69
|
+
* MulticastIp: "STRING_VALUE", // required
|
|
70
|
+
* Name: "STRING_VALUE", // required
|
|
71
|
+
* NetworkName: "STRING_VALUE", // required
|
|
72
|
+
* Port: Number("int"), // required
|
|
73
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* ],
|
|
77
|
+
* };
|
|
78
|
+
* const command = new CreateBridgeCommand(input);
|
|
79
|
+
* const response = await client.send(command);
|
|
80
|
+
* ```
|
|
81
|
+
*
|
|
82
|
+
* @param CreateBridgeCommandInput - {@link CreateBridgeCommandInput}
|
|
83
|
+
* @returns {@link CreateBridgeCommandOutput}
|
|
84
|
+
* @see {@link CreateBridgeCommandInput} for command's `input` shape.
|
|
85
|
+
* @see {@link CreateBridgeCommandOutput} for command's `response` shape.
|
|
86
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link BadRequestException} (client fault)
|
|
89
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ConflictException} (client fault)
|
|
92
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link CreateBridge420Exception} (client fault)
|
|
95
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
98
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
101
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
104
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
107
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
108
|
+
*
|
|
109
|
+
*
|
|
110
|
+
*/
|
|
111
|
+
export declare class CreateBridgeCommand extends $Command<CreateBridgeCommandInput, CreateBridgeCommandOutput, MediaConnectClientResolvedConfig> {
|
|
112
|
+
readonly input: CreateBridgeCommandInput;
|
|
113
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
constructor(input: CreateBridgeCommandInput);
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBridgeCommandInput, CreateBridgeCommandOutput>;
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
125
|
+
private serialize;
|
|
126
|
+
/**
|
|
127
|
+
* @internal
|
|
128
|
+
*/
|
|
129
|
+
private deserialize;
|
|
130
|
+
}
|
|
@@ -114,7 +114,7 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
114
114
|
* MinLatency: Number("int"),
|
|
115
115
|
* Name: "STRING_VALUE",
|
|
116
116
|
* Port: Number("int"),
|
|
117
|
-
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos", // required
|
|
117
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
118
118
|
* RemoteId: "STRING_VALUE",
|
|
119
119
|
* SenderControlPort: Number("int"),
|
|
120
120
|
* SmoothingLatency: Number("int"),
|
|
@@ -158,7 +158,7 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
158
158
|
* ],
|
|
159
159
|
* MinLatency: Number("int"),
|
|
160
160
|
* Name: "STRING_VALUE",
|
|
161
|
-
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos",
|
|
161
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp",
|
|
162
162
|
* SenderControlPort: Number("int"),
|
|
163
163
|
* SenderIpAddress: "STRING_VALUE",
|
|
164
164
|
* SourceListenerAddress: "STRING_VALUE",
|
|
@@ -166,6 +166,12 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
166
166
|
* StreamId: "STRING_VALUE",
|
|
167
167
|
* VpcInterfaceName: "STRING_VALUE",
|
|
168
168
|
* WhitelistCidr: "STRING_VALUE",
|
|
169
|
+
* GatewayBridgeSource: { // SetGatewayBridgeSourceRequest
|
|
170
|
+
* BridgeArn: "STRING_VALUE", // required
|
|
171
|
+
* VpcInterfaceAttachment: {
|
|
172
|
+
* VpcInterfaceName: "STRING_VALUE",
|
|
173
|
+
* },
|
|
174
|
+
* },
|
|
169
175
|
* },
|
|
170
176
|
* SourceFailoverConfig: { // FailoverConfig
|
|
171
177
|
* FailoverMode: "MERGE" || "FAILOVER",
|
|
@@ -210,7 +216,7 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
210
216
|
* ],
|
|
211
217
|
* MinLatency: Number("int"),
|
|
212
218
|
* Name: "STRING_VALUE",
|
|
213
|
-
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos",
|
|
219
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp",
|
|
214
220
|
* SenderControlPort: Number("int"),
|
|
215
221
|
* SenderIpAddress: "STRING_VALUE",
|
|
216
222
|
* SourceListenerAddress: "STRING_VALUE",
|
|
@@ -218,6 +224,12 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
218
224
|
* StreamId: "STRING_VALUE",
|
|
219
225
|
* VpcInterfaceName: "STRING_VALUE",
|
|
220
226
|
* WhitelistCidr: "STRING_VALUE",
|
|
227
|
+
* GatewayBridgeSource: {
|
|
228
|
+
* BridgeArn: "STRING_VALUE", // required
|
|
229
|
+
* VpcInterfaceAttachment: {
|
|
230
|
+
* VpcInterfaceName: "STRING_VALUE",
|
|
231
|
+
* },
|
|
232
|
+
* },
|
|
221
233
|
* },
|
|
222
234
|
* ],
|
|
223
235
|
* VpcInterfaces: [ // __listOfVpcInterfaceRequest
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
|
+
import { CreateGatewayRequest, CreateGatewayResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
9
|
+
* The input for {@link CreateGatewayCommand}.
|
|
10
|
+
*/
|
|
11
|
+
export interface CreateGatewayCommandInput extends CreateGatewayRequest {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
16
|
+
* The output of {@link CreateGatewayCommand}.
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateGatewayCommandOutput extends CreateGatewayResponse, __MetadataBearer {
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* Creates a new gateway. The request must include at least one network (up to 4).
|
|
23
|
+
* @example
|
|
24
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
25
|
+
* ```javascript
|
|
26
|
+
* import { MediaConnectClient, CreateGatewayCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
|
+
* // const { MediaConnectClient, CreateGatewayCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
|
+
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = { // CreateGatewayRequest
|
|
30
|
+
* EgressCidrBlocks: [ // __listOf__string // required
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* Networks: [ // __listOfGatewayNetwork // required
|
|
35
|
+
* { // GatewayNetwork
|
|
36
|
+
* CidrBlock: "STRING_VALUE", // required
|
|
37
|
+
* Name: "STRING_VALUE", // required
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
41
|
+
* const command = new CreateGatewayCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* ```
|
|
44
|
+
*
|
|
45
|
+
* @param CreateGatewayCommandInput - {@link CreateGatewayCommandInput}
|
|
46
|
+
* @returns {@link CreateGatewayCommandOutput}
|
|
47
|
+
* @see {@link CreateGatewayCommandInput} for command's `input` shape.
|
|
48
|
+
* @see {@link CreateGatewayCommandOutput} for command's `response` shape.
|
|
49
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link BadRequestException} (client fault)
|
|
52
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ConflictException} (client fault)
|
|
55
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link CreateGateway420Exception} (client fault)
|
|
58
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
61
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
64
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
67
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
70
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
71
|
+
*
|
|
72
|
+
*
|
|
73
|
+
*/
|
|
74
|
+
export declare class CreateGatewayCommand extends $Command<CreateGatewayCommandInput, CreateGatewayCommandOutput, MediaConnectClientResolvedConfig> {
|
|
75
|
+
readonly input: CreateGatewayCommandInput;
|
|
76
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
constructor(input: CreateGatewayCommandInput);
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
84
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGatewayCommandInput, CreateGatewayCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
private deserialize;
|
|
93
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
|
+
import { DeleteBridgeRequest, DeleteBridgeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
9
|
+
* The input for {@link DeleteBridgeCommand}.
|
|
10
|
+
*/
|
|
11
|
+
export interface DeleteBridgeCommandInput extends DeleteBridgeRequest {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
16
|
+
* The output of {@link DeleteBridgeCommand}.
|
|
17
|
+
*/
|
|
18
|
+
export interface DeleteBridgeCommandOutput extends DeleteBridgeResponse, __MetadataBearer {
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* Deletes a bridge. Before you can delete a bridge, you must stop the bridge.
|
|
23
|
+
* @example
|
|
24
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
25
|
+
* ```javascript
|
|
26
|
+
* import { MediaConnectClient, DeleteBridgeCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
|
+
* // const { MediaConnectClient, DeleteBridgeCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
|
+
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = { // DeleteBridgeRequest
|
|
30
|
+
* BridgeArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
32
|
+
* const command = new DeleteBridgeCommand(input);
|
|
33
|
+
* const response = await client.send(command);
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* @param DeleteBridgeCommandInput - {@link DeleteBridgeCommandInput}
|
|
37
|
+
* @returns {@link DeleteBridgeCommandOutput}
|
|
38
|
+
* @see {@link DeleteBridgeCommandInput} for command's `input` shape.
|
|
39
|
+
* @see {@link DeleteBridgeCommandOutput} for command's `response` shape.
|
|
40
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link BadRequestException} (client fault)
|
|
43
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ConflictException} (client fault)
|
|
46
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
49
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
52
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link NotFoundException} (client fault)
|
|
55
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
58
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
61
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
62
|
+
*
|
|
63
|
+
*
|
|
64
|
+
*/
|
|
65
|
+
export declare class DeleteBridgeCommand extends $Command<DeleteBridgeCommandInput, DeleteBridgeCommandOutput, MediaConnectClientResolvedConfig> {
|
|
66
|
+
readonly input: DeleteBridgeCommandInput;
|
|
67
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
constructor(input: DeleteBridgeCommandInput);
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBridgeCommandInput, DeleteBridgeCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
83
|
+
private deserialize;
|
|
84
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
|
+
import { DeleteGatewayRequest, DeleteGatewayResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
9
|
+
* The input for {@link DeleteGatewayCommand}.
|
|
10
|
+
*/
|
|
11
|
+
export interface DeleteGatewayCommandInput extends DeleteGatewayRequest {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
16
|
+
* The output of {@link DeleteGatewayCommand}.
|
|
17
|
+
*/
|
|
18
|
+
export interface DeleteGatewayCommandOutput extends DeleteGatewayResponse, __MetadataBearer {
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* Deletes a gateway. Before you can delete a gateway, you must deregister its instances and delete its bridges.
|
|
23
|
+
* @example
|
|
24
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
25
|
+
* ```javascript
|
|
26
|
+
* import { MediaConnectClient, DeleteGatewayCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
|
+
* // const { MediaConnectClient, DeleteGatewayCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
|
+
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = { // DeleteGatewayRequest
|
|
30
|
+
* GatewayArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
32
|
+
* const command = new DeleteGatewayCommand(input);
|
|
33
|
+
* const response = await client.send(command);
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* @param DeleteGatewayCommandInput - {@link DeleteGatewayCommandInput}
|
|
37
|
+
* @returns {@link DeleteGatewayCommandOutput}
|
|
38
|
+
* @see {@link DeleteGatewayCommandInput} for command's `input` shape.
|
|
39
|
+
* @see {@link DeleteGatewayCommandOutput} for command's `response` shape.
|
|
40
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link BadRequestException} (client fault)
|
|
43
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ConflictException} (client fault)
|
|
46
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
49
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
52
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link NotFoundException} (client fault)
|
|
55
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
58
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
61
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
62
|
+
*
|
|
63
|
+
*
|
|
64
|
+
*/
|
|
65
|
+
export declare class DeleteGatewayCommand extends $Command<DeleteGatewayCommandInput, DeleteGatewayCommandOutput, MediaConnectClientResolvedConfig> {
|
|
66
|
+
readonly input: DeleteGatewayCommandInput;
|
|
67
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
constructor(input: DeleteGatewayCommandInput);
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGatewayCommandInput, DeleteGatewayCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
83
|
+
private deserialize;
|
|
84
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
|
+
import { DeregisterGatewayInstanceRequest, DeregisterGatewayInstanceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
9
|
+
* The input for {@link DeregisterGatewayInstanceCommand}.
|
|
10
|
+
*/
|
|
11
|
+
export interface DeregisterGatewayInstanceCommandInput extends DeregisterGatewayInstanceRequest {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
16
|
+
* The output of {@link DeregisterGatewayInstanceCommand}.
|
|
17
|
+
*/
|
|
18
|
+
export interface DeregisterGatewayInstanceCommandOutput extends DeregisterGatewayInstanceResponse, __MetadataBearer {
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* Deregisters an instance. Before you deregister an instance, all bridges running on the instance must be stopped. If you want to deregister an instance without stopping the bridges, you must use the --force option.
|
|
23
|
+
* @example
|
|
24
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
25
|
+
* ```javascript
|
|
26
|
+
* import { MediaConnectClient, DeregisterGatewayInstanceCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
|
+
* // const { MediaConnectClient, DeregisterGatewayInstanceCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
|
+
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = { // DeregisterGatewayInstanceRequest
|
|
30
|
+
* Force: true || false,
|
|
31
|
+
* GatewayInstanceArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
33
|
+
* const command = new DeregisterGatewayInstanceCommand(input);
|
|
34
|
+
* const response = await client.send(command);
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* @param DeregisterGatewayInstanceCommandInput - {@link DeregisterGatewayInstanceCommandInput}
|
|
38
|
+
* @returns {@link DeregisterGatewayInstanceCommandOutput}
|
|
39
|
+
* @see {@link DeregisterGatewayInstanceCommandInput} for command's `input` shape.
|
|
40
|
+
* @see {@link DeregisterGatewayInstanceCommandOutput} for command's `response` shape.
|
|
41
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link BadRequestException} (client fault)
|
|
44
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ConflictException} (client fault)
|
|
47
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
50
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
53
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link NotFoundException} (client fault)
|
|
56
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
59
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
62
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
63
|
+
*
|
|
64
|
+
*
|
|
65
|
+
*/
|
|
66
|
+
export declare class DeregisterGatewayInstanceCommand extends $Command<DeregisterGatewayInstanceCommandInput, DeregisterGatewayInstanceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
67
|
+
readonly input: DeregisterGatewayInstanceCommandInput;
|
|
68
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
constructor(input: DeregisterGatewayInstanceCommandInput);
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
76
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterGatewayInstanceCommandInput, DeregisterGatewayInstanceCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
80
|
+
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
84
|
+
private deserialize;
|
|
85
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
|
+
import { DescribeBridgeRequest, DescribeBridgeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
9
|
+
* The input for {@link DescribeBridgeCommand}.
|
|
10
|
+
*/
|
|
11
|
+
export interface DescribeBridgeCommandInput extends DescribeBridgeRequest {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
16
|
+
* The output of {@link DescribeBridgeCommand}.
|
|
17
|
+
*/
|
|
18
|
+
export interface DescribeBridgeCommandOutput extends DescribeBridgeResponse, __MetadataBearer {
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* Displays the details of a bridge.
|
|
23
|
+
* @example
|
|
24
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
25
|
+
* ```javascript
|
|
26
|
+
* import { MediaConnectClient, DescribeBridgeCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
|
|
27
|
+
* // const { MediaConnectClient, DescribeBridgeCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
28
|
+
* const client = new MediaConnectClient(config);
|
|
29
|
+
* const input = { // DescribeBridgeRequest
|
|
30
|
+
* BridgeArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
32
|
+
* const command = new DescribeBridgeCommand(input);
|
|
33
|
+
* const response = await client.send(command);
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* @param DescribeBridgeCommandInput - {@link DescribeBridgeCommandInput}
|
|
37
|
+
* @returns {@link DescribeBridgeCommandOutput}
|
|
38
|
+
* @see {@link DescribeBridgeCommandInput} for command's `input` shape.
|
|
39
|
+
* @see {@link DescribeBridgeCommandOutput} for command's `response` shape.
|
|
40
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link BadRequestException} (client fault)
|
|
43
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ConflictException} (client fault)
|
|
46
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
49
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
52
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link NotFoundException} (client fault)
|
|
55
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
58
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
61
|
+
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
62
|
+
*
|
|
63
|
+
*
|
|
64
|
+
*/
|
|
65
|
+
export declare class DescribeBridgeCommand extends $Command<DescribeBridgeCommandInput, DescribeBridgeCommandOutput, MediaConnectClientResolvedConfig> {
|
|
66
|
+
readonly input: DescribeBridgeCommandInput;
|
|
67
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
constructor(input: DescribeBridgeCommandInput);
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBridgeCommandInput, DescribeBridgeCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
83
|
+
private deserialize;
|
|
84
|
+
}
|