@aws-sdk/client-mediaconnect 3.321.1 → 3.326.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/dist-types/commands/AddBridgeOutputsCommand.d.ts +23 -0
- package/dist-types/commands/AddBridgeSourcesCommand.d.ts +25 -0
- package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +29 -0
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +74 -0
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +70 -0
- package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +20 -0
- package/dist-types/commands/CreateBridgeCommand.d.ts +71 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +279 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +26 -0
- package/dist-types/commands/DeleteBridgeCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFlowCommand.d.ts +7 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +6 -0
- package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +7 -0
- package/dist-types/commands/DescribeBridgeCommand.d.ts +71 -0
- package/dist-types/commands/DescribeFlowCommand.d.ts +282 -0
- package/dist-types/commands/DescribeGatewayCommand.d.ts +26 -0
- package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +21 -0
- package/dist-types/commands/DescribeOfferingCommand.d.ts +18 -0
- package/dist-types/commands/DescribeReservationCommand.d.ts +23 -0
- package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +29 -0
- package/dist-types/commands/ListBridgesCommand.d.ts +15 -0
- package/dist-types/commands/ListEntitlementsCommand.d.ts +13 -0
- package/dist-types/commands/ListFlowsCommand.d.ts +22 -0
- package/dist-types/commands/ListGatewayInstancesCommand.d.ts +14 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +13 -0
- package/dist-types/commands/ListOfferingsCommand.d.ts +21 -0
- package/dist-types/commands/ListReservationsCommand.d.ts +26 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +23 -0
- package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +7 -0
- package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +7 -0
- package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +7 -0
- package/dist-types/commands/RemoveFlowOutputCommand.d.ts +7 -0
- package/dist-types/commands/RemoveFlowSourceCommand.d.ts +7 -0
- package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +10 -0
- package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +7 -0
- package/dist-types/commands/StartFlowCommand.d.ts +7 -0
- package/dist-types/commands/StopFlowCommand.d.ts +7 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateBridgeCommand.d.ts +71 -0
- package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +21 -0
- package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +23 -0
- package/dist-types/commands/UpdateBridgeStateCommand.d.ts +7 -0
- package/dist-types/commands/UpdateFlowCommand.d.ts +279 -0
- package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +27 -0
- package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +27 -0
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +72 -0
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +68 -0
- package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +7 -0
- package/package.json +16 -16
|
@@ -32,6 +32,25 @@ export interface ListOfferingsCommandOutput extends ListOfferingsResponse, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListOfferingsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListOfferingsResponse
|
|
36
|
+
* // NextToken: "STRING_VALUE",
|
|
37
|
+
* // Offerings: [ // __listOfOffering
|
|
38
|
+
* // { // Offering
|
|
39
|
+
* // CurrencyCode: "STRING_VALUE", // required
|
|
40
|
+
* // Duration: Number("int"), // required
|
|
41
|
+
* // DurationUnits: "MONTHS", // required
|
|
42
|
+
* // OfferingArn: "STRING_VALUE", // required
|
|
43
|
+
* // OfferingDescription: "STRING_VALUE", // required
|
|
44
|
+
* // PricePerUnit: "STRING_VALUE", // required
|
|
45
|
+
* // PriceUnits: "HOURLY", // required
|
|
46
|
+
* // ResourceSpecification: { // ResourceSpecification
|
|
47
|
+
* // ReservedBitrate: Number("int"),
|
|
48
|
+
* // ResourceType: "Mbps_Outbound_Bandwidth", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
35
54
|
* ```
|
|
36
55
|
*
|
|
37
56
|
* @param ListOfferingsCommandInput - {@link ListOfferingsCommandInput}
|
|
@@ -52,6 +71,8 @@ export interface ListOfferingsCommandOutput extends ListOfferingsResponse, __Met
|
|
|
52
71
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
72
|
* 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
73
|
*
|
|
74
|
+
* @throws {@link MediaConnectServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
55
76
|
*
|
|
56
77
|
*/
|
|
57
78
|
export declare class ListOfferingsCommand extends $Command<ListOfferingsCommandInput, ListOfferingsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,30 @@ export interface ListReservationsCommandOutput extends ListReservationsResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListReservationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListReservationsResponse
|
|
36
|
+
* // NextToken: "STRING_VALUE",
|
|
37
|
+
* // Reservations: [ // __listOfReservation
|
|
38
|
+
* // { // Reservation
|
|
39
|
+
* // CurrencyCode: "STRING_VALUE", // required
|
|
40
|
+
* // Duration: Number("int"), // required
|
|
41
|
+
* // DurationUnits: "MONTHS", // required
|
|
42
|
+
* // End: "STRING_VALUE", // required
|
|
43
|
+
* // OfferingArn: "STRING_VALUE", // required
|
|
44
|
+
* // OfferingDescription: "STRING_VALUE", // required
|
|
45
|
+
* // PricePerUnit: "STRING_VALUE", // required
|
|
46
|
+
* // PriceUnits: "HOURLY", // required
|
|
47
|
+
* // ReservationArn: "STRING_VALUE", // required
|
|
48
|
+
* // ReservationName: "STRING_VALUE", // required
|
|
49
|
+
* // ReservationState: "ACTIVE" || "EXPIRED" || "PROCESSING" || "CANCELED", // required
|
|
50
|
+
* // ResourceSpecification: { // ResourceSpecification
|
|
51
|
+
* // ReservedBitrate: Number("int"),
|
|
52
|
+
* // ResourceType: "Mbps_Outbound_Bandwidth", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // Start: "STRING_VALUE", // required
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
35
59
|
* ```
|
|
36
60
|
*
|
|
37
61
|
* @param ListReservationsCommandInput - {@link ListReservationsCommandInput}
|
|
@@ -52,6 +76,8 @@ export interface ListReservationsCommandOutput extends ListReservationsResponse,
|
|
|
52
76
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
77
|
* 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
78
|
*
|
|
79
|
+
* @throws {@link MediaConnectServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
55
81
|
*
|
|
56
82
|
*/
|
|
57
83
|
export declare class ListReservationsCommand extends $Command<ListReservationsCommandInput, ListReservationsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // Tags: { // __mapOf__string
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
54
|
* @throws {@link NotFoundException} (client fault)
|
|
49
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.
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link MediaConnectServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -33,6 +33,27 @@ export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResponse,
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new PurchaseOfferingCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // PurchaseOfferingResponse
|
|
37
|
+
* // Reservation: { // Reservation
|
|
38
|
+
* // CurrencyCode: "STRING_VALUE", // required
|
|
39
|
+
* // Duration: Number("int"), // required
|
|
40
|
+
* // DurationUnits: "MONTHS", // required
|
|
41
|
+
* // End: "STRING_VALUE", // required
|
|
42
|
+
* // OfferingArn: "STRING_VALUE", // required
|
|
43
|
+
* // OfferingDescription: "STRING_VALUE", // required
|
|
44
|
+
* // PricePerUnit: "STRING_VALUE", // required
|
|
45
|
+
* // PriceUnits: "HOURLY", // required
|
|
46
|
+
* // ReservationArn: "STRING_VALUE", // required
|
|
47
|
+
* // ReservationName: "STRING_VALUE", // required
|
|
48
|
+
* // ReservationState: "ACTIVE" || "EXPIRED" || "PROCESSING" || "CANCELED", // required
|
|
49
|
+
* // ResourceSpecification: { // ResourceSpecification
|
|
50
|
+
* // ReservedBitrate: Number("int"),
|
|
51
|
+
* // ResourceType: "Mbps_Outbound_Bandwidth", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // Start: "STRING_VALUE", // required
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
36
57
|
* ```
|
|
37
58
|
*
|
|
38
59
|
* @param PurchaseOfferingCommandInput - {@link PurchaseOfferingCommandInput}
|
|
@@ -59,6 +80,8 @@ export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResponse,
|
|
|
59
80
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
60
81
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
61
82
|
*
|
|
83
|
+
* @throws {@link MediaConnectServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
62
85
|
*
|
|
63
86
|
*/
|
|
64
87
|
export declare class PurchaseOfferingCommand extends $Command<PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface RemoveBridgeOutputCommandOutput extends RemoveBridgeOutputRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RemoveBridgeOutputCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // RemoveBridgeOutputResponse
|
|
36
|
+
* // BridgeArn: "STRING_VALUE",
|
|
37
|
+
* // OutputName: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param RemoveBridgeOutputCommandInput - {@link RemoveBridgeOutputCommandInput}
|
|
@@ -61,6 +66,8 @@ export interface RemoveBridgeOutputCommandOutput extends RemoveBridgeOutputRespo
|
|
|
61
66
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
62
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.
|
|
63
68
|
*
|
|
69
|
+
* @throws {@link MediaConnectServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
64
71
|
*
|
|
65
72
|
*/
|
|
66
73
|
export declare class RemoveBridgeOutputCommand extends $Command<RemoveBridgeOutputCommandInput, RemoveBridgeOutputCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface RemoveBridgeSourceCommandOutput extends RemoveBridgeSourceRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RemoveBridgeSourceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // RemoveBridgeSourceResponse
|
|
36
|
+
* // BridgeArn: "STRING_VALUE",
|
|
37
|
+
* // SourceName: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param RemoveBridgeSourceCommandInput - {@link RemoveBridgeSourceCommandInput}
|
|
@@ -61,6 +66,8 @@ export interface RemoveBridgeSourceCommandOutput extends RemoveBridgeSourceRespo
|
|
|
61
66
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
62
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.
|
|
63
68
|
*
|
|
69
|
+
* @throws {@link MediaConnectServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
64
71
|
*
|
|
65
72
|
*/
|
|
66
73
|
export declare class RemoveBridgeSourceCommand extends $Command<RemoveBridgeSourceCommandInput, RemoveBridgeSourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface RemoveFlowMediaStreamCommandOutput extends RemoveFlowMediaStrea
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RemoveFlowMediaStreamCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // RemoveFlowMediaStreamResponse
|
|
36
|
+
* // FlowArn: "STRING_VALUE",
|
|
37
|
+
* // MediaStreamName: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param RemoveFlowMediaStreamCommandInput - {@link RemoveFlowMediaStreamCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface RemoveFlowMediaStreamCommandOutput extends RemoveFlowMediaStrea
|
|
|
58
63
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
59
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.
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link MediaConnectServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class RemoveFlowMediaStreamCommand extends $Command<RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface RemoveFlowOutputCommandOutput extends RemoveFlowOutputResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RemoveFlowOutputCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // RemoveFlowOutputResponse
|
|
36
|
+
* // FlowArn: "STRING_VALUE",
|
|
37
|
+
* // OutputArn: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param RemoveFlowOutputCommandInput - {@link RemoveFlowOutputCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface RemoveFlowOutputCommandOutput extends RemoveFlowOutputResponse,
|
|
|
58
63
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
59
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.
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link MediaConnectServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class RemoveFlowOutputCommand extends $Command<RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface RemoveFlowSourceCommandOutput extends RemoveFlowSourceResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RemoveFlowSourceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // RemoveFlowSourceResponse
|
|
36
|
+
* // FlowArn: "STRING_VALUE",
|
|
37
|
+
* // SourceArn: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param RemoveFlowSourceCommandInput - {@link RemoveFlowSourceCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface RemoveFlowSourceCommandOutput extends RemoveFlowSourceResponse,
|
|
|
58
63
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
59
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.
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link MediaConnectServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class RemoveFlowSourceCommand extends $Command<RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,14 @@ export interface RemoveFlowVpcInterfaceCommandOutput extends RemoveFlowVpcInterf
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RemoveFlowVpcInterfaceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // RemoveFlowVpcInterfaceResponse
|
|
36
|
+
* // FlowArn: "STRING_VALUE",
|
|
37
|
+
* // NonDeletedNetworkInterfaceIds: [ // __listOf__string
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
35
43
|
* ```
|
|
36
44
|
*
|
|
37
45
|
* @param RemoveFlowVpcInterfaceCommandInput - {@link RemoveFlowVpcInterfaceCommandInput}
|
|
@@ -58,6 +66,8 @@ export interface RemoveFlowVpcInterfaceCommandOutput extends RemoveFlowVpcInterf
|
|
|
58
66
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
59
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.
|
|
60
68
|
*
|
|
69
|
+
* @throws {@link MediaConnectServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
61
71
|
*
|
|
62
72
|
*/
|
|
63
73
|
export declare class RemoveFlowVpcInterfaceCommand extends $Command<RemoveFlowVpcInterfaceCommandInput, RemoveFlowVpcInterfaceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface RevokeFlowEntitlementCommandOutput extends RevokeFlowEntitlemen
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RevokeFlowEntitlementCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // RevokeFlowEntitlementResponse
|
|
36
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
37
|
+
* // FlowArn: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param RevokeFlowEntitlementCommandInput - {@link RevokeFlowEntitlementCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface RevokeFlowEntitlementCommandOutput extends RevokeFlowEntitlemen
|
|
|
58
63
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
59
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.
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link MediaConnectServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class RevokeFlowEntitlementCommand extends $Command<RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,11 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartFlowCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StartFlowResponse
|
|
35
|
+
* // FlowArn: "STRING_VALUE",
|
|
36
|
+
* // Status: "STANDBY" || "ACTIVE" || "UPDATING" || "DELETING" || "STARTING" || "STOPPING" || "ERROR",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
36
41
|
* @param StartFlowCommandInput - {@link StartFlowCommandInput}
|
|
@@ -57,6 +62,8 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
|
|
|
57
62
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
58
63
|
* 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
64
|
*
|
|
65
|
+
* @throws {@link MediaConnectServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
60
67
|
*
|
|
61
68
|
*/
|
|
62
69
|
export declare class StartFlowCommand extends $Command<StartFlowCommandInput, StartFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,11 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopFlowCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StopFlowResponse
|
|
35
|
+
* // FlowArn: "STRING_VALUE",
|
|
36
|
+
* // Status: "STANDBY" || "ACTIVE" || "UPDATING" || "DELETING" || "STARTING" || "STOPPING" || "ERROR",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
36
41
|
* @param StopFlowCommandInput - {@link StopFlowCommandInput}
|
|
@@ -57,6 +62,8 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
|
|
|
57
62
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
58
63
|
* 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
64
|
*
|
|
65
|
+
* @throws {@link MediaConnectServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
60
67
|
*
|
|
61
68
|
*/
|
|
62
69
|
export declare class StopFlowCommand extends $Command<StopFlowCommandInput, StopFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
51
53
|
* @throws {@link NotFoundException} (client fault)
|
|
52
54
|
* 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
55
|
*
|
|
56
|
+
* @throws {@link MediaConnectServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
51
53
|
* @throws {@link NotFoundException} (client fault)
|
|
52
54
|
* 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
55
|
*
|
|
56
|
+
* @throws {@link MediaConnectServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -46,6 +46,75 @@ export interface UpdateBridgeCommandOutput extends UpdateBridgeResponse, __Metad
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new UpdateBridgeCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // UpdateBridgeResponse
|
|
50
|
+
* // Bridge: { // Bridge
|
|
51
|
+
* // BridgeArn: "STRING_VALUE", // required
|
|
52
|
+
* // BridgeMessages: [ // __listOfMessageDetail
|
|
53
|
+
* // { // MessageDetail
|
|
54
|
+
* // Code: "STRING_VALUE", // required
|
|
55
|
+
* // Message: "STRING_VALUE", // required
|
|
56
|
+
* // ResourceName: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // BridgeState: "CREATING" || "STANDBY" || "STARTING" || "DEPLOYING" || "ACTIVE" || "STOPPING" || "DELETING" || "DELETED" || "START_FAILED" || "START_PENDING" || "STOP_FAILED" || "UPDATING", // required
|
|
60
|
+
* // EgressGatewayBridge: { // EgressGatewayBridge
|
|
61
|
+
* // InstanceId: "STRING_VALUE",
|
|
62
|
+
* // MaxBitrate: Number("int"), // required
|
|
63
|
+
* // },
|
|
64
|
+
* // IngressGatewayBridge: { // IngressGatewayBridge
|
|
65
|
+
* // InstanceId: "STRING_VALUE",
|
|
66
|
+
* // MaxBitrate: Number("int"), // required
|
|
67
|
+
* // MaxOutputs: Number("int"), // required
|
|
68
|
+
* // },
|
|
69
|
+
* // Name: "STRING_VALUE", // required
|
|
70
|
+
* // Outputs: [ // __listOfBridgeOutput
|
|
71
|
+
* // { // BridgeOutput
|
|
72
|
+
* // FlowOutput: { // BridgeFlowOutput
|
|
73
|
+
* // FlowArn: "STRING_VALUE", // required
|
|
74
|
+
* // FlowSourceArn: "STRING_VALUE", // required
|
|
75
|
+
* // Name: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // NetworkOutput: { // BridgeNetworkOutput
|
|
78
|
+
* // IpAddress: "STRING_VALUE", // required
|
|
79
|
+
* // Name: "STRING_VALUE", // required
|
|
80
|
+
* // NetworkName: "STRING_VALUE", // required
|
|
81
|
+
* // Port: Number("int"), // required
|
|
82
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
83
|
+
* // Ttl: Number("int"), // required
|
|
84
|
+
* // },
|
|
85
|
+
* // },
|
|
86
|
+
* // ],
|
|
87
|
+
* // PlacementArn: "STRING_VALUE", // required
|
|
88
|
+
* // SourceFailoverConfig: { // FailoverConfig
|
|
89
|
+
* // FailoverMode: "MERGE" || "FAILOVER",
|
|
90
|
+
* // RecoveryWindow: Number("int"),
|
|
91
|
+
* // SourcePriority: { // SourcePriority
|
|
92
|
+
* // PrimarySource: "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // State: "ENABLED" || "DISABLED",
|
|
95
|
+
* // },
|
|
96
|
+
* // Sources: [ // __listOfBridgeSource
|
|
97
|
+
* // { // BridgeSource
|
|
98
|
+
* // FlowSource: { // BridgeFlowSource
|
|
99
|
+
* // FlowArn: "STRING_VALUE", // required
|
|
100
|
+
* // FlowVpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
101
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
102
|
+
* // },
|
|
103
|
+
* // Name: "STRING_VALUE", // required
|
|
104
|
+
* // OutputArn: "STRING_VALUE",
|
|
105
|
+
* // },
|
|
106
|
+
* // NetworkSource: { // BridgeNetworkSource
|
|
107
|
+
* // MulticastIp: "STRING_VALUE", // required
|
|
108
|
+
* // Name: "STRING_VALUE", // required
|
|
109
|
+
* // NetworkName: "STRING_VALUE", // required
|
|
110
|
+
* // Port: Number("int"), // required
|
|
111
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
112
|
+
* // },
|
|
113
|
+
* // },
|
|
114
|
+
* // ],
|
|
115
|
+
* // },
|
|
116
|
+
* // };
|
|
117
|
+
*
|
|
49
118
|
* ```
|
|
50
119
|
*
|
|
51
120
|
* @param UpdateBridgeCommandInput - {@link UpdateBridgeCommandInput}
|
|
@@ -75,6 +144,8 @@ export interface UpdateBridgeCommandOutput extends UpdateBridgeResponse, __Metad
|
|
|
75
144
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
76
145
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
77
146
|
*
|
|
147
|
+
* @throws {@link MediaConnectServiceException}
|
|
148
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
78
149
|
*
|
|
79
150
|
*/
|
|
80
151
|
export declare class UpdateBridgeCommand extends $Command<UpdateBridgeCommandInput, UpdateBridgeCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -39,6 +39,25 @@ export interface UpdateBridgeOutputCommandOutput extends UpdateBridgeOutputRespo
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new UpdateBridgeOutputCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // UpdateBridgeOutputResponse
|
|
43
|
+
* // BridgeArn: "STRING_VALUE",
|
|
44
|
+
* // Output: { // BridgeOutput
|
|
45
|
+
* // FlowOutput: { // BridgeFlowOutput
|
|
46
|
+
* // FlowArn: "STRING_VALUE", // required
|
|
47
|
+
* // FlowSourceArn: "STRING_VALUE", // required
|
|
48
|
+
* // Name: "STRING_VALUE", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // NetworkOutput: { // BridgeNetworkOutput
|
|
51
|
+
* // IpAddress: "STRING_VALUE", // required
|
|
52
|
+
* // Name: "STRING_VALUE", // required
|
|
53
|
+
* // NetworkName: "STRING_VALUE", // required
|
|
54
|
+
* // Port: Number("int"), // required
|
|
55
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
56
|
+
* // Ttl: Number("int"), // required
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
42
61
|
* ```
|
|
43
62
|
*
|
|
44
63
|
* @param UpdateBridgeOutputCommandInput - {@link UpdateBridgeOutputCommandInput}
|
|
@@ -68,6 +87,8 @@ export interface UpdateBridgeOutputCommandOutput extends UpdateBridgeOutputRespo
|
|
|
68
87
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
69
88
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
70
89
|
*
|
|
90
|
+
* @throws {@link MediaConnectServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
71
92
|
*
|
|
72
93
|
*/
|
|
73
94
|
export declare class UpdateBridgeOutputCommand extends $Command<UpdateBridgeOutputCommandInput, UpdateBridgeOutputCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -44,6 +44,27 @@ export interface UpdateBridgeSourceCommandOutput extends UpdateBridgeSourceRespo
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new UpdateBridgeSourceCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // UpdateBridgeSourceResponse
|
|
48
|
+
* // BridgeArn: "STRING_VALUE",
|
|
49
|
+
* // Source: { // BridgeSource
|
|
50
|
+
* // FlowSource: { // BridgeFlowSource
|
|
51
|
+
* // FlowArn: "STRING_VALUE", // required
|
|
52
|
+
* // FlowVpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
53
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // Name: "STRING_VALUE", // required
|
|
56
|
+
* // OutputArn: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // NetworkSource: { // BridgeNetworkSource
|
|
59
|
+
* // MulticastIp: "STRING_VALUE", // required
|
|
60
|
+
* // Name: "STRING_VALUE", // required
|
|
61
|
+
* // NetworkName: "STRING_VALUE", // required
|
|
62
|
+
* // Port: Number("int"), // required
|
|
63
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
47
68
|
* ```
|
|
48
69
|
*
|
|
49
70
|
* @param UpdateBridgeSourceCommandInput - {@link UpdateBridgeSourceCommandInput}
|
|
@@ -73,6 +94,8 @@ export interface UpdateBridgeSourceCommandOutput extends UpdateBridgeSourceRespo
|
|
|
73
94
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
74
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.
|
|
75
96
|
*
|
|
97
|
+
* @throws {@link MediaConnectServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
76
99
|
*
|
|
77
100
|
*/
|
|
78
101
|
export declare class UpdateBridgeSourceCommand extends $Command<UpdateBridgeSourceCommandInput, UpdateBridgeSourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface UpdateBridgeStateCommandOutput extends UpdateBridgeStateRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateBridgeStateCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateBridgeStateResponse
|
|
36
|
+
* // BridgeArn: "STRING_VALUE",
|
|
37
|
+
* // DesiredState: "ACTIVE" || "STANDBY" || "DELETED",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param UpdateBridgeStateCommandInput - {@link UpdateBridgeStateCommandInput}
|
|
@@ -61,6 +66,8 @@ export interface UpdateBridgeStateCommandOutput extends UpdateBridgeStateRespons
|
|
|
61
66
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
62
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.
|
|
63
68
|
*
|
|
69
|
+
* @throws {@link MediaConnectServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
64
71
|
*
|
|
65
72
|
*/
|
|
66
73
|
export declare class UpdateBridgeStateCommand extends $Command<UpdateBridgeStateCommandInput, UpdateBridgeStateCommandOutput, MediaConnectClientResolvedConfig> {
|