@aws-sdk/client-mediaconnect 3.758.0 → 3.772.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 +26 -1
- package/dist-cjs/index.js +96 -68
- package/dist-es/models/models_0.js +26 -13
- package/dist-es/protocols/Aws_restJson1.js +54 -0
- package/dist-es/waiters/waitForFlowActive.js +9 -0
- package/dist-types/MediaConnect.d.ts +26 -1
- package/dist-types/MediaConnectClient.d.ts +26 -1
- package/dist-types/commands/AddBridgeOutputsCommand.d.ts +17 -10
- package/dist-types/commands/AddBridgeSourcesCommand.d.ts +17 -10
- package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +13 -7
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +24 -13
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +18 -10
- package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +15 -9
- package/dist-types/commands/CreateBridgeCommand.d.ts +19 -12
- package/dist-types/commands/CreateFlowCommand.d.ts +55 -17
- package/dist-types/commands/CreateGatewayCommand.d.ts +17 -10
- package/dist-types/commands/DeleteBridgeCommand.d.ts +15 -8
- package/dist-types/commands/DeleteFlowCommand.d.ts +13 -7
- package/dist-types/commands/DeleteGatewayCommand.d.ts +15 -8
- package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +15 -8
- package/dist-types/commands/DescribeBridgeCommand.d.ts +17 -10
- package/dist-types/commands/DescribeFlowCommand.d.ts +40 -14
- package/dist-types/commands/DescribeFlowSourceMetadataCommand.d.ts +15 -7
- package/dist-types/commands/DescribeFlowSourceThumbnailCommand.d.ts +15 -7
- package/dist-types/commands/DescribeGatewayCommand.d.ts +17 -9
- package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +17 -8
- package/dist-types/commands/DescribeOfferingCommand.d.ts +11 -6
- package/dist-types/commands/DescribeReservationCommand.d.ts +11 -6
- package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +17 -10
- package/dist-types/commands/ListBridgesCommand.d.ts +12 -6
- package/dist-types/commands/ListEntitlementsCommand.d.ts +9 -5
- package/dist-types/commands/ListFlowsCommand.d.ts +9 -5
- package/dist-types/commands/ListGatewayInstancesCommand.d.ts +11 -6
- package/dist-types/commands/ListGatewaysCommand.d.ts +11 -6
- package/dist-types/commands/ListOfferingsCommand.d.ts +9 -5
- package/dist-types/commands/ListReservationsCommand.d.ts +9 -5
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -5
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +13 -7
- package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +15 -8
- package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +15 -8
- package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +13 -7
- package/dist-types/commands/RemoveFlowOutputCommand.d.ts +13 -7
- package/dist-types/commands/RemoveFlowSourceCommand.d.ts +14 -7
- package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +14 -8
- package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +13 -7
- package/dist-types/commands/StartFlowCommand.d.ts +13 -7
- package/dist-types/commands/StopFlowCommand.d.ts +13 -7
- package/dist-types/commands/TagResourceCommand.d.ts +11 -5
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateBridgeCommand.d.ts +17 -10
- package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +17 -10
- package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +17 -10
- package/dist-types/commands/UpdateBridgeStateCommand.d.ts +15 -8
- package/dist-types/commands/UpdateFlowCommand.d.ts +48 -13
- package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +15 -9
- package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +13 -7
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +22 -12
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +18 -10
- package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +16 -8
- package/dist-types/index.d.ts +26 -1
- package/dist-types/models/models_0.d.ts +1955 -1327
- package/dist-types/ts3.4/models/models_0.d.ts +221 -185
- package/package.json +3 -3
|
@@ -27,7 +27,7 @@ declare const ListFlowsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays a list of flows that are associated with this account. This request returns a paginated result
|
|
30
|
+
* <p> Displays a list of flows that are associated with this account. This request returns a paginated result.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -69,16 +69,20 @@ declare const ListFlowsCommand_base: {
|
|
|
69
69
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
70
70
|
*
|
|
71
71
|
* @throws {@link BadRequestException} (client fault)
|
|
72
|
-
*
|
|
72
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
73
|
+
* </p>
|
|
73
74
|
*
|
|
74
75
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
75
|
-
*
|
|
76
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
77
|
+
* </p>
|
|
76
78
|
*
|
|
77
79
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
78
|
-
*
|
|
80
|
+
* <p>The service is currently unavailable or busy.
|
|
81
|
+
* </p>
|
|
79
82
|
*
|
|
80
83
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
81
|
-
*
|
|
84
|
+
* <p>The request was denied due to request throttling.
|
|
85
|
+
* </p>
|
|
82
86
|
*
|
|
83
87
|
* @throws {@link MediaConnectServiceException}
|
|
84
88
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const ListGatewayInstancesCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays a list of instances associated with the
|
|
30
|
+
* <p> Displays a list of instances associated with the Amazon Web Services account. This request returns a paginated result. You can use the filterArn property to display only the instances associated with the selected Gateway Amazon Resource Name (ARN).</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -62,19 +62,24 @@ declare const ListGatewayInstancesCommand_base: {
|
|
|
62
62
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link BadRequestException} (client fault)
|
|
65
|
-
*
|
|
65
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
66
|
+
* </p>
|
|
66
67
|
*
|
|
67
68
|
* @throws {@link ConflictException} (client fault)
|
|
68
|
-
*
|
|
69
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
70
|
+
* </p>
|
|
69
71
|
*
|
|
70
72
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
71
|
-
*
|
|
73
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
74
|
+
* </p>
|
|
72
75
|
*
|
|
73
76
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
74
|
-
*
|
|
77
|
+
* <p>The service is currently unavailable or busy.
|
|
78
|
+
* </p>
|
|
75
79
|
*
|
|
76
80
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
77
|
-
*
|
|
81
|
+
* <p>The request was denied due to request throttling.
|
|
82
|
+
* </p>
|
|
78
83
|
*
|
|
79
84
|
* @throws {@link MediaConnectServiceException}
|
|
80
85
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const ListGatewaysCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays a list of gateways that are associated with this account. This request returns a paginated result
|
|
30
|
+
* <p> Displays a list of gateways that are associated with this account. This request returns a paginated result.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -60,19 +60,24 @@ declare const ListGatewaysCommand_base: {
|
|
|
60
60
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link BadRequestException} (client fault)
|
|
63
|
-
*
|
|
63
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
64
|
+
* </p>
|
|
64
65
|
*
|
|
65
66
|
* @throws {@link ConflictException} (client fault)
|
|
66
|
-
*
|
|
67
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
68
|
+
* </p>
|
|
67
69
|
*
|
|
68
70
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
69
|
-
*
|
|
71
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
72
|
+
* </p>
|
|
70
73
|
*
|
|
71
74
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
72
|
-
*
|
|
75
|
+
* <p>The service is currently unavailable or busy.
|
|
76
|
+
* </p>
|
|
73
77
|
*
|
|
74
78
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
75
|
-
*
|
|
79
|
+
* <p>The request was denied due to request throttling.
|
|
80
|
+
* </p>
|
|
76
81
|
*
|
|
77
82
|
* @throws {@link MediaConnectServiceException}
|
|
78
83
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const ListOfferingsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays a list of all offerings that are available to this account in the current
|
|
30
|
+
* <p> Displays a list of all offerings that are available to this account in the current Amazon Web Services Region. If you have an active reservation (which means you've purchased an offering that has already started and hasn't expired yet), your account isn't eligible for other offerings.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -68,16 +68,20 @@ declare const ListOfferingsCommand_base: {
|
|
|
68
68
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
69
69
|
*
|
|
70
70
|
* @throws {@link BadRequestException} (client fault)
|
|
71
|
-
*
|
|
71
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
72
|
+
* </p>
|
|
72
73
|
*
|
|
73
74
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
74
|
-
*
|
|
75
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
76
|
+
* </p>
|
|
75
77
|
*
|
|
76
78
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
77
|
-
*
|
|
79
|
+
* <p>The service is currently unavailable or busy.
|
|
80
|
+
* </p>
|
|
78
81
|
*
|
|
79
82
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
80
|
-
*
|
|
83
|
+
* <p>The request was denied due to request throttling.
|
|
84
|
+
* </p>
|
|
81
85
|
*
|
|
82
86
|
* @throws {@link MediaConnectServiceException}
|
|
83
87
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const ListReservationsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays a list of all reservations that have been purchased by this account in the current
|
|
30
|
+
* <p> Displays a list of all reservations that have been purchased by this account in the current Amazon Web Services Region. This list includes all reservations in all states (such as active and expired).</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -73,16 +73,20 @@ declare const ListReservationsCommand_base: {
|
|
|
73
73
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
74
74
|
*
|
|
75
75
|
* @throws {@link BadRequestException} (client fault)
|
|
76
|
-
*
|
|
76
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
77
|
+
* </p>
|
|
77
78
|
*
|
|
78
79
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
79
|
-
*
|
|
80
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
81
|
+
* </p>
|
|
80
82
|
*
|
|
81
83
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
82
|
-
*
|
|
84
|
+
* <p>The service is currently unavailable or busy.
|
|
85
|
+
* </p>
|
|
83
86
|
*
|
|
84
87
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
85
|
-
*
|
|
88
|
+
* <p>The request was denied due to request throttling.
|
|
89
|
+
* </p>
|
|
86
90
|
*
|
|
87
91
|
* @throws {@link MediaConnectServiceException}
|
|
88
92
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* List all tags on
|
|
30
|
+
* <p> List all tags on a MediaConnect resource.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -40,7 +40,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
40
40
|
* const command = new ListTagsForResourceCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
42
|
* // { // ListTagsForResourceResponse
|
|
43
|
-
* // Tags: { //
|
|
43
|
+
* // Tags: { // __mapOfString
|
|
44
44
|
* // "<keys>": "STRING_VALUE",
|
|
45
45
|
* // },
|
|
46
46
|
* // };
|
|
@@ -54,13 +54,16 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
54
54
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link BadRequestException} (client fault)
|
|
57
|
-
*
|
|
57
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
58
|
+
* </p>
|
|
58
59
|
*
|
|
59
60
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
60
|
-
*
|
|
61
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
62
|
+
* </p>
|
|
61
63
|
*
|
|
62
64
|
* @throws {@link NotFoundException} (client fault)
|
|
63
|
-
*
|
|
65
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
66
|
+
* </p>
|
|
64
67
|
*
|
|
65
68
|
* @throws {@link MediaConnectServiceException}
|
|
66
69
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const PurchaseOfferingCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Submits a request to purchase an offering. If you already have an active reservation, you can't purchase another offering
|
|
30
|
+
* <p> Submits a request to purchase an offering. If you already have an active reservation, you can't purchase another offering.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -71,22 +71,28 @@ declare const PurchaseOfferingCommand_base: {
|
|
|
71
71
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
72
72
|
*
|
|
73
73
|
* @throws {@link BadRequestException} (client fault)
|
|
74
|
-
*
|
|
74
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
75
|
+
* </p>
|
|
75
76
|
*
|
|
76
77
|
* @throws {@link ForbiddenException} (client fault)
|
|
77
|
-
*
|
|
78
|
+
* <p>You do not have sufficient access to perform this action.
|
|
79
|
+
* </p>
|
|
78
80
|
*
|
|
79
81
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
80
|
-
*
|
|
82
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
83
|
+
* </p>
|
|
81
84
|
*
|
|
82
85
|
* @throws {@link NotFoundException} (client fault)
|
|
83
|
-
*
|
|
86
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
87
|
+
* </p>
|
|
84
88
|
*
|
|
85
89
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
86
|
-
*
|
|
90
|
+
* <p>The service is currently unavailable or busy.
|
|
91
|
+
* </p>
|
|
87
92
|
*
|
|
88
93
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
89
|
-
*
|
|
94
|
+
* <p>The request was denied due to request throttling.
|
|
95
|
+
* </p>
|
|
90
96
|
*
|
|
91
97
|
* @throws {@link MediaConnectServiceException}
|
|
92
98
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const RemoveBridgeOutputCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Removes an output from a bridge
|
|
30
|
+
* <p> Removes an output from a bridge.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -54,25 +54,32 @@ declare const RemoveBridgeOutputCommand_base: {
|
|
|
54
54
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link BadRequestException} (client fault)
|
|
57
|
-
*
|
|
57
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
58
|
+
* </p>
|
|
58
59
|
*
|
|
59
60
|
* @throws {@link ConflictException} (client fault)
|
|
60
|
-
*
|
|
61
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
62
|
+
* </p>
|
|
61
63
|
*
|
|
62
64
|
* @throws {@link ForbiddenException} (client fault)
|
|
63
|
-
*
|
|
65
|
+
* <p>You do not have sufficient access to perform this action.
|
|
66
|
+
* </p>
|
|
64
67
|
*
|
|
65
68
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
66
|
-
*
|
|
69
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
70
|
+
* </p>
|
|
67
71
|
*
|
|
68
72
|
* @throws {@link NotFoundException} (client fault)
|
|
69
|
-
*
|
|
73
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
74
|
+
* </p>
|
|
70
75
|
*
|
|
71
76
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
72
|
-
*
|
|
77
|
+
* <p>The service is currently unavailable or busy.
|
|
78
|
+
* </p>
|
|
73
79
|
*
|
|
74
80
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
75
|
-
*
|
|
81
|
+
* <p>The request was denied due to request throttling.
|
|
82
|
+
* </p>
|
|
76
83
|
*
|
|
77
84
|
* @throws {@link MediaConnectServiceException}
|
|
78
85
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const RemoveBridgeSourceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Removes a source from a bridge
|
|
30
|
+
* <p> Removes a source from a bridge.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -54,25 +54,32 @@ declare const RemoveBridgeSourceCommand_base: {
|
|
|
54
54
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link BadRequestException} (client fault)
|
|
57
|
-
*
|
|
57
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
58
|
+
* </p>
|
|
58
59
|
*
|
|
59
60
|
* @throws {@link ConflictException} (client fault)
|
|
60
|
-
*
|
|
61
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
62
|
+
* </p>
|
|
61
63
|
*
|
|
62
64
|
* @throws {@link ForbiddenException} (client fault)
|
|
63
|
-
*
|
|
65
|
+
* <p>You do not have sufficient access to perform this action.
|
|
66
|
+
* </p>
|
|
64
67
|
*
|
|
65
68
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
66
|
-
*
|
|
69
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
70
|
+
* </p>
|
|
67
71
|
*
|
|
68
72
|
* @throws {@link NotFoundException} (client fault)
|
|
69
|
-
*
|
|
73
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
74
|
+
* </p>
|
|
70
75
|
*
|
|
71
76
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
72
|
-
*
|
|
77
|
+
* <p>The service is currently unavailable or busy.
|
|
78
|
+
* </p>
|
|
73
79
|
*
|
|
74
80
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
75
|
-
*
|
|
81
|
+
* <p>The request was denied due to request throttling.
|
|
82
|
+
* </p>
|
|
76
83
|
*
|
|
77
84
|
* @throws {@link MediaConnectServiceException}
|
|
78
85
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const RemoveFlowMediaStreamCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Removes a media stream from a flow. This action is only available if the media stream is not associated with a source or output
|
|
30
|
+
* <p> Removes a media stream from a flow. This action is only available if the media stream is not associated with a source or output.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -54,22 +54,28 @@ declare const RemoveFlowMediaStreamCommand_base: {
|
|
|
54
54
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link BadRequestException} (client fault)
|
|
57
|
-
*
|
|
57
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
58
|
+
* </p>
|
|
58
59
|
*
|
|
59
60
|
* @throws {@link ForbiddenException} (client fault)
|
|
60
|
-
*
|
|
61
|
+
* <p>You do not have sufficient access to perform this action.
|
|
62
|
+
* </p>
|
|
61
63
|
*
|
|
62
64
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
63
|
-
*
|
|
65
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
66
|
+
* </p>
|
|
64
67
|
*
|
|
65
68
|
* @throws {@link NotFoundException} (client fault)
|
|
66
|
-
*
|
|
69
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
70
|
+
* </p>
|
|
67
71
|
*
|
|
68
72
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
69
|
-
*
|
|
73
|
+
* <p>The service is currently unavailable or busy.
|
|
74
|
+
* </p>
|
|
70
75
|
*
|
|
71
76
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
72
|
-
*
|
|
77
|
+
* <p>The request was denied due to request throttling.
|
|
78
|
+
* </p>
|
|
73
79
|
*
|
|
74
80
|
* @throws {@link MediaConnectServiceException}
|
|
75
81
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const RemoveFlowOutputCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Removes an output from an existing flow. This request can be made only on an output that does not have an entitlement associated with it. If the output has an entitlement, you must revoke the entitlement instead. When an entitlement is revoked from a flow, the service automatically removes the associated output
|
|
30
|
+
* <p> Removes an output from an existing flow. This request can be made only on an output that does not have an entitlement associated with it. If the output has an entitlement, you must revoke the entitlement instead. When an entitlement is revoked from a flow, the service automatically removes the associated output.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -54,22 +54,28 @@ declare const RemoveFlowOutputCommand_base: {
|
|
|
54
54
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link BadRequestException} (client fault)
|
|
57
|
-
*
|
|
57
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
58
|
+
* </p>
|
|
58
59
|
*
|
|
59
60
|
* @throws {@link ForbiddenException} (client fault)
|
|
60
|
-
*
|
|
61
|
+
* <p>You do not have sufficient access to perform this action.
|
|
62
|
+
* </p>
|
|
61
63
|
*
|
|
62
64
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
63
|
-
*
|
|
65
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
66
|
+
* </p>
|
|
64
67
|
*
|
|
65
68
|
* @throws {@link NotFoundException} (client fault)
|
|
66
|
-
*
|
|
69
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
70
|
+
* </p>
|
|
67
71
|
*
|
|
68
72
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
69
|
-
*
|
|
73
|
+
* <p>The service is currently unavailable or busy.
|
|
74
|
+
* </p>
|
|
70
75
|
*
|
|
71
76
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
72
|
-
*
|
|
77
|
+
* <p>The request was denied due to request throttling.
|
|
78
|
+
* </p>
|
|
73
79
|
*
|
|
74
80
|
* @throws {@link MediaConnectServiceException}
|
|
75
81
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,8 @@ declare const RemoveFlowSourceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Removes a source from an existing flow. This request can be made only if there is more than one source on the flow.
|
|
30
|
+
* <p> Removes a source from an existing flow. This request can be made only if there is more than one source on the flow.
|
|
31
|
+
* </p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -54,22 +55,28 @@ declare const RemoveFlowSourceCommand_base: {
|
|
|
54
55
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
55
56
|
*
|
|
56
57
|
* @throws {@link BadRequestException} (client fault)
|
|
57
|
-
*
|
|
58
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
59
|
+
* </p>
|
|
58
60
|
*
|
|
59
61
|
* @throws {@link ForbiddenException} (client fault)
|
|
60
|
-
*
|
|
62
|
+
* <p>You do not have sufficient access to perform this action.
|
|
63
|
+
* </p>
|
|
61
64
|
*
|
|
62
65
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
63
|
-
*
|
|
66
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
67
|
+
* </p>
|
|
64
68
|
*
|
|
65
69
|
* @throws {@link NotFoundException} (client fault)
|
|
66
|
-
*
|
|
70
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
71
|
+
* </p>
|
|
67
72
|
*
|
|
68
73
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
69
|
-
*
|
|
74
|
+
* <p>The service is currently unavailable or busy.
|
|
75
|
+
* </p>
|
|
70
76
|
*
|
|
71
77
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
72
|
-
*
|
|
78
|
+
* <p>The request was denied due to request throttling.
|
|
79
|
+
* </p>
|
|
73
80
|
*
|
|
74
81
|
* @throws {@link MediaConnectServiceException}
|
|
75
82
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const RemoveFlowVpcInterfaceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Removes a VPC Interface from an existing flow. This request can be made only on a VPC interface that does not have a Source or Output associated with it. If the VPC interface is referenced by a Source or Output, you must first delete or update the Source or Output to no longer reference the VPC interface
|
|
30
|
+
* <p> Removes a VPC Interface from an existing flow. This request can be made only on a VPC interface that does not have a Source or Output associated with it. If the VPC interface is referenced by a Source or Output, you must first delete or update the Source or Output to no longer reference the VPC interface.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -42,7 +42,7 @@ declare const RemoveFlowVpcInterfaceCommand_base: {
|
|
|
42
42
|
* const response = await client.send(command);
|
|
43
43
|
* // { // RemoveFlowVpcInterfaceResponse
|
|
44
44
|
* // FlowArn: "STRING_VALUE",
|
|
45
|
-
* // NonDeletedNetworkInterfaceIds: [ //
|
|
45
|
+
* // NonDeletedNetworkInterfaceIds: [ // __listOfString
|
|
46
46
|
* // "STRING_VALUE",
|
|
47
47
|
* // ],
|
|
48
48
|
* // VpcInterfaceName: "STRING_VALUE",
|
|
@@ -57,22 +57,28 @@ declare const RemoveFlowVpcInterfaceCommand_base: {
|
|
|
57
57
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link BadRequestException} (client fault)
|
|
60
|
-
*
|
|
60
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
61
|
+
* </p>
|
|
61
62
|
*
|
|
62
63
|
* @throws {@link ForbiddenException} (client fault)
|
|
63
|
-
*
|
|
64
|
+
* <p>You do not have sufficient access to perform this action.
|
|
65
|
+
* </p>
|
|
64
66
|
*
|
|
65
67
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
66
|
-
*
|
|
68
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
69
|
+
* </p>
|
|
67
70
|
*
|
|
68
71
|
* @throws {@link NotFoundException} (client fault)
|
|
69
|
-
*
|
|
72
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
73
|
+
* </p>
|
|
70
74
|
*
|
|
71
75
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
72
|
-
*
|
|
76
|
+
* <p>The service is currently unavailable or busy.
|
|
77
|
+
* </p>
|
|
73
78
|
*
|
|
74
79
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
75
|
-
*
|
|
80
|
+
* <p>The request was denied due to request throttling.
|
|
81
|
+
* </p>
|
|
76
82
|
*
|
|
77
83
|
* @throws {@link MediaConnectServiceException}
|
|
78
84
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|