@aws-sdk/client-mediaconnect 3.315.0 → 3.316.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-cjs/MediaConnect.js +54 -700
- package/dist-es/MediaConnect.js +54 -700
- package/dist-types/MediaConnect.d.ts +57 -105
- package/dist-types/ts3.4/MediaConnect.d.ts +4 -1
- package/package.json +6 -6
|
@@ -50,359 +50,311 @@ import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./c
|
|
|
50
50
|
import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
|
|
51
51
|
import { UpdateGatewayInstanceCommandInput, UpdateGatewayInstanceCommandOutput } from "./commands/UpdateGatewayInstanceCommand";
|
|
52
52
|
import { MediaConnectClient } from "./MediaConnectClient";
|
|
53
|
-
|
|
54
|
-
* @public
|
|
55
|
-
* API for AWS Elemental MediaConnect
|
|
56
|
-
*/
|
|
57
|
-
export declare class MediaConnect extends MediaConnectClient {
|
|
53
|
+
export interface MediaConnect {
|
|
58
54
|
/**
|
|
59
|
-
* @
|
|
60
|
-
* Adds outputs to an existing bridge.
|
|
55
|
+
* @see {@link AddBridgeOutputsCommand}
|
|
61
56
|
*/
|
|
62
57
|
addBridgeOutputs(args: AddBridgeOutputsCommandInput, options?: __HttpHandlerOptions): Promise<AddBridgeOutputsCommandOutput>;
|
|
63
58
|
addBridgeOutputs(args: AddBridgeOutputsCommandInput, cb: (err: any, data?: AddBridgeOutputsCommandOutput) => void): void;
|
|
64
59
|
addBridgeOutputs(args: AddBridgeOutputsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddBridgeOutputsCommandOutput) => void): void;
|
|
65
60
|
/**
|
|
66
|
-
* @
|
|
67
|
-
* Adds sources to an existing bridge.
|
|
61
|
+
* @see {@link AddBridgeSourcesCommand}
|
|
68
62
|
*/
|
|
69
63
|
addBridgeSources(args: AddBridgeSourcesCommandInput, options?: __HttpHandlerOptions): Promise<AddBridgeSourcesCommandOutput>;
|
|
70
64
|
addBridgeSources(args: AddBridgeSourcesCommandInput, cb: (err: any, data?: AddBridgeSourcesCommandOutput) => void): void;
|
|
71
65
|
addBridgeSources(args: AddBridgeSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddBridgeSourcesCommandOutput) => void): void;
|
|
72
66
|
/**
|
|
73
|
-
* @
|
|
74
|
-
* Adds media streams to an existing flow. After you add a media stream to a flow, you can associate it with a source and/or an output that uses the ST 2110 JPEG XS or CDI protocol.
|
|
67
|
+
* @see {@link AddFlowMediaStreamsCommand}
|
|
75
68
|
*/
|
|
76
69
|
addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowMediaStreamsCommandOutput>;
|
|
77
70
|
addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void): void;
|
|
78
71
|
addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void): void;
|
|
79
72
|
/**
|
|
80
|
-
* @
|
|
81
|
-
* Adds outputs to an existing flow. You can create up to 50 outputs per flow.
|
|
73
|
+
* @see {@link AddFlowOutputsCommand}
|
|
82
74
|
*/
|
|
83
75
|
addFlowOutputs(args: AddFlowOutputsCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowOutputsCommandOutput>;
|
|
84
76
|
addFlowOutputs(args: AddFlowOutputsCommandInput, cb: (err: any, data?: AddFlowOutputsCommandOutput) => void): void;
|
|
85
77
|
addFlowOutputs(args: AddFlowOutputsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowOutputsCommandOutput) => void): void;
|
|
86
78
|
/**
|
|
87
|
-
* @
|
|
88
|
-
* Adds Sources to flow
|
|
79
|
+
* @see {@link AddFlowSourcesCommand}
|
|
89
80
|
*/
|
|
90
81
|
addFlowSources(args: AddFlowSourcesCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowSourcesCommandOutput>;
|
|
91
82
|
addFlowSources(args: AddFlowSourcesCommandInput, cb: (err: any, data?: AddFlowSourcesCommandOutput) => void): void;
|
|
92
83
|
addFlowSources(args: AddFlowSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowSourcesCommandOutput) => void): void;
|
|
93
84
|
/**
|
|
94
|
-
* @
|
|
95
|
-
* Adds VPC interfaces to flow
|
|
85
|
+
* @see {@link AddFlowVpcInterfacesCommand}
|
|
96
86
|
*/
|
|
97
87
|
addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowVpcInterfacesCommandOutput>;
|
|
98
88
|
addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void): void;
|
|
99
89
|
addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void): void;
|
|
100
90
|
/**
|
|
101
|
-
* @
|
|
102
|
-
* Creates a new bridge. The request must include one source.
|
|
91
|
+
* @see {@link CreateBridgeCommand}
|
|
103
92
|
*/
|
|
104
93
|
createBridge(args: CreateBridgeCommandInput, options?: __HttpHandlerOptions): Promise<CreateBridgeCommandOutput>;
|
|
105
94
|
createBridge(args: CreateBridgeCommandInput, cb: (err: any, data?: CreateBridgeCommandOutput) => void): void;
|
|
106
95
|
createBridge(args: CreateBridgeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBridgeCommandOutput) => void): void;
|
|
107
96
|
/**
|
|
108
|
-
* @
|
|
109
|
-
* Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50).
|
|
97
|
+
* @see {@link CreateFlowCommand}
|
|
110
98
|
*/
|
|
111
99
|
createFlow(args: CreateFlowCommandInput, options?: __HttpHandlerOptions): Promise<CreateFlowCommandOutput>;
|
|
112
100
|
createFlow(args: CreateFlowCommandInput, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
|
|
113
101
|
createFlow(args: CreateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
|
|
114
102
|
/**
|
|
115
|
-
* @
|
|
116
|
-
* Creates a new gateway. The request must include at least one network (up to 4).
|
|
103
|
+
* @see {@link CreateGatewayCommand}
|
|
117
104
|
*/
|
|
118
105
|
createGateway(args: CreateGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateGatewayCommandOutput>;
|
|
119
106
|
createGateway(args: CreateGatewayCommandInput, cb: (err: any, data?: CreateGatewayCommandOutput) => void): void;
|
|
120
107
|
createGateway(args: CreateGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGatewayCommandOutput) => void): void;
|
|
121
108
|
/**
|
|
122
|
-
* @
|
|
123
|
-
* Deletes a bridge. Before you can delete a bridge, you must stop the bridge.
|
|
109
|
+
* @see {@link DeleteBridgeCommand}
|
|
124
110
|
*/
|
|
125
111
|
deleteBridge(args: DeleteBridgeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBridgeCommandOutput>;
|
|
126
112
|
deleteBridge(args: DeleteBridgeCommandInput, cb: (err: any, data?: DeleteBridgeCommandOutput) => void): void;
|
|
127
113
|
deleteBridge(args: DeleteBridgeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBridgeCommandOutput) => void): void;
|
|
128
114
|
/**
|
|
129
|
-
* @
|
|
130
|
-
* Deletes a flow. Before you can delete a flow, you must stop the flow.
|
|
115
|
+
* @see {@link DeleteFlowCommand}
|
|
131
116
|
*/
|
|
132
117
|
deleteFlow(args: DeleteFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowCommandOutput>;
|
|
133
118
|
deleteFlow(args: DeleteFlowCommandInput, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
|
|
134
119
|
deleteFlow(args: DeleteFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
|
|
135
120
|
/**
|
|
136
|
-
* @
|
|
137
|
-
* Deletes a gateway. Before you can delete a gateway, you must deregister its instances and delete its bridges.
|
|
121
|
+
* @see {@link DeleteGatewayCommand}
|
|
138
122
|
*/
|
|
139
123
|
deleteGateway(args: DeleteGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGatewayCommandOutput>;
|
|
140
124
|
deleteGateway(args: DeleteGatewayCommandInput, cb: (err: any, data?: DeleteGatewayCommandOutput) => void): void;
|
|
141
125
|
deleteGateway(args: DeleteGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGatewayCommandOutput) => void): void;
|
|
142
126
|
/**
|
|
143
|
-
* @
|
|
144
|
-
* 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.
|
|
127
|
+
* @see {@link DeregisterGatewayInstanceCommand}
|
|
145
128
|
*/
|
|
146
129
|
deregisterGatewayInstance(args: DeregisterGatewayInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterGatewayInstanceCommandOutput>;
|
|
147
130
|
deregisterGatewayInstance(args: DeregisterGatewayInstanceCommandInput, cb: (err: any, data?: DeregisterGatewayInstanceCommandOutput) => void): void;
|
|
148
131
|
deregisterGatewayInstance(args: DeregisterGatewayInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterGatewayInstanceCommandOutput) => void): void;
|
|
149
132
|
/**
|
|
150
|
-
* @
|
|
151
|
-
* Displays the details of a bridge.
|
|
133
|
+
* @see {@link DescribeBridgeCommand}
|
|
152
134
|
*/
|
|
153
135
|
describeBridge(args: DescribeBridgeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBridgeCommandOutput>;
|
|
154
136
|
describeBridge(args: DescribeBridgeCommandInput, cb: (err: any, data?: DescribeBridgeCommandOutput) => void): void;
|
|
155
137
|
describeBridge(args: DescribeBridgeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBridgeCommandOutput) => void): void;
|
|
156
138
|
/**
|
|
157
|
-
* @
|
|
158
|
-
* Displays the details of a flow. The response includes the flow ARN, name, and Availability Zone, as well as details about the source, outputs, and entitlements.
|
|
139
|
+
* @see {@link DescribeFlowCommand}
|
|
159
140
|
*/
|
|
160
141
|
describeFlow(args: DescribeFlowCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowCommandOutput>;
|
|
161
142
|
describeFlow(args: DescribeFlowCommandInput, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
|
|
162
143
|
describeFlow(args: DescribeFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
|
|
163
144
|
/**
|
|
164
|
-
* @
|
|
165
|
-
* Displays the details of a gateway. The response includes the gateway ARN, name, and CIDR blocks, as well as details about the networks.
|
|
145
|
+
* @see {@link DescribeGatewayCommand}
|
|
166
146
|
*/
|
|
167
147
|
describeGateway(args: DescribeGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGatewayCommandOutput>;
|
|
168
148
|
describeGateway(args: DescribeGatewayCommandInput, cb: (err: any, data?: DescribeGatewayCommandOutput) => void): void;
|
|
169
149
|
describeGateway(args: DescribeGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGatewayCommandOutput) => void): void;
|
|
170
150
|
/**
|
|
171
|
-
* @
|
|
172
|
-
* Displays the details of an instance.
|
|
151
|
+
* @see {@link DescribeGatewayInstanceCommand}
|
|
173
152
|
*/
|
|
174
153
|
describeGatewayInstance(args: DescribeGatewayInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGatewayInstanceCommandOutput>;
|
|
175
154
|
describeGatewayInstance(args: DescribeGatewayInstanceCommandInput, cb: (err: any, data?: DescribeGatewayInstanceCommandOutput) => void): void;
|
|
176
155
|
describeGatewayInstance(args: DescribeGatewayInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGatewayInstanceCommandOutput) => void): void;
|
|
177
156
|
/**
|
|
178
|
-
* @
|
|
179
|
-
* Displays the details of an offering. The response includes the offering description, duration, outbound bandwidth, price, and Amazon Resource Name (ARN).
|
|
157
|
+
* @see {@link DescribeOfferingCommand}
|
|
180
158
|
*/
|
|
181
159
|
describeOffering(args: DescribeOfferingCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOfferingCommandOutput>;
|
|
182
160
|
describeOffering(args: DescribeOfferingCommandInput, cb: (err: any, data?: DescribeOfferingCommandOutput) => void): void;
|
|
183
161
|
describeOffering(args: DescribeOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOfferingCommandOutput) => void): void;
|
|
184
162
|
/**
|
|
185
|
-
* @
|
|
186
|
-
* Displays the details of a reservation. The response includes the reservation name, state, start date and time, and the details of the offering that make up the rest of the reservation (such as price, duration, and outbound bandwidth).
|
|
163
|
+
* @see {@link DescribeReservationCommand}
|
|
187
164
|
*/
|
|
188
165
|
describeReservation(args: DescribeReservationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservationCommandOutput>;
|
|
189
166
|
describeReservation(args: DescribeReservationCommandInput, cb: (err: any, data?: DescribeReservationCommandOutput) => void): void;
|
|
190
167
|
describeReservation(args: DescribeReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservationCommandOutput) => void): void;
|
|
191
168
|
/**
|
|
192
|
-
* @
|
|
193
|
-
* Grants entitlements to an existing flow.
|
|
169
|
+
* @see {@link GrantFlowEntitlementsCommand}
|
|
194
170
|
*/
|
|
195
171
|
grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<GrantFlowEntitlementsCommandOutput>;
|
|
196
172
|
grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void): void;
|
|
197
173
|
grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void): void;
|
|
198
174
|
/**
|
|
199
|
-
* @
|
|
200
|
-
* Displays a list of bridges that are associated with this account and an optionally specified Arn. This request returns a paginated result.
|
|
175
|
+
* @see {@link ListBridgesCommand}
|
|
201
176
|
*/
|
|
202
177
|
listBridges(args: ListBridgesCommandInput, options?: __HttpHandlerOptions): Promise<ListBridgesCommandOutput>;
|
|
203
178
|
listBridges(args: ListBridgesCommandInput, cb: (err: any, data?: ListBridgesCommandOutput) => void): void;
|
|
204
179
|
listBridges(args: ListBridgesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBridgesCommandOutput) => void): void;
|
|
205
180
|
/**
|
|
206
|
-
* @
|
|
207
|
-
* Displays a list of all entitlements that have been granted to this account. This request returns 20 results per page.
|
|
181
|
+
* @see {@link ListEntitlementsCommand}
|
|
208
182
|
*/
|
|
209
183
|
listEntitlements(args: ListEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<ListEntitlementsCommandOutput>;
|
|
210
184
|
listEntitlements(args: ListEntitlementsCommandInput, cb: (err: any, data?: ListEntitlementsCommandOutput) => void): void;
|
|
211
185
|
listEntitlements(args: ListEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEntitlementsCommandOutput) => void): void;
|
|
212
186
|
/**
|
|
213
|
-
* @
|
|
214
|
-
* Displays a list of flows that are associated with this account. This request returns a paginated result.
|
|
187
|
+
* @see {@link ListFlowsCommand}
|
|
215
188
|
*/
|
|
216
189
|
listFlows(args: ListFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowsCommandOutput>;
|
|
217
190
|
listFlows(args: ListFlowsCommandInput, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
|
|
218
191
|
listFlows(args: ListFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
|
|
219
192
|
/**
|
|
220
|
-
* @
|
|
221
|
-
* Displays a list of instances associated with the AWS 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).
|
|
193
|
+
* @see {@link ListGatewayInstancesCommand}
|
|
222
194
|
*/
|
|
223
195
|
listGatewayInstances(args: ListGatewayInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListGatewayInstancesCommandOutput>;
|
|
224
196
|
listGatewayInstances(args: ListGatewayInstancesCommandInput, cb: (err: any, data?: ListGatewayInstancesCommandOutput) => void): void;
|
|
225
197
|
listGatewayInstances(args: ListGatewayInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGatewayInstancesCommandOutput) => void): void;
|
|
226
198
|
/**
|
|
227
|
-
* @
|
|
228
|
-
* Displays a list of gateways that are associated with this account. This request returns a paginated result.
|
|
199
|
+
* @see {@link ListGatewaysCommand}
|
|
229
200
|
*/
|
|
230
201
|
listGateways(args: ListGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<ListGatewaysCommandOutput>;
|
|
231
202
|
listGateways(args: ListGatewaysCommandInput, cb: (err: any, data?: ListGatewaysCommandOutput) => void): void;
|
|
232
203
|
listGateways(args: ListGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGatewaysCommandOutput) => void): void;
|
|
233
204
|
/**
|
|
234
|
-
* @
|
|
235
|
-
* Displays a list of all offerings that are available to this account in the current AWS 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.
|
|
205
|
+
* @see {@link ListOfferingsCommand}
|
|
236
206
|
*/
|
|
237
207
|
listOfferings(args: ListOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<ListOfferingsCommandOutput>;
|
|
238
208
|
listOfferings(args: ListOfferingsCommandInput, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
|
|
239
209
|
listOfferings(args: ListOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
|
|
240
210
|
/**
|
|
241
|
-
* @
|
|
242
|
-
* Displays a list of all reservations that have been purchased by this account in the current AWS Region. This list includes all reservations in all states (such as active and expired).
|
|
211
|
+
* @see {@link ListReservationsCommand}
|
|
243
212
|
*/
|
|
244
213
|
listReservations(args: ListReservationsCommandInput, options?: __HttpHandlerOptions): Promise<ListReservationsCommandOutput>;
|
|
245
214
|
listReservations(args: ListReservationsCommandInput, cb: (err: any, data?: ListReservationsCommandOutput) => void): void;
|
|
246
215
|
listReservations(args: ListReservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReservationsCommandOutput) => void): void;
|
|
247
216
|
/**
|
|
248
|
-
* @
|
|
249
|
-
* List all tags on an AWS Elemental MediaConnect resource
|
|
217
|
+
* @see {@link ListTagsForResourceCommand}
|
|
250
218
|
*/
|
|
251
219
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
252
220
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
253
221
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
254
222
|
/**
|
|
255
|
-
* @
|
|
256
|
-
* Submits a request to purchase an offering. If you already have an active reservation, you can't purchase another offering.
|
|
223
|
+
* @see {@link PurchaseOfferingCommand}
|
|
257
224
|
*/
|
|
258
225
|
purchaseOffering(args: PurchaseOfferingCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseOfferingCommandOutput>;
|
|
259
226
|
purchaseOffering(args: PurchaseOfferingCommandInput, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
|
|
260
227
|
purchaseOffering(args: PurchaseOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
|
|
261
228
|
/**
|
|
262
|
-
* @
|
|
263
|
-
* Removes an output from a bridge.
|
|
229
|
+
* @see {@link RemoveBridgeOutputCommand}
|
|
264
230
|
*/
|
|
265
231
|
removeBridgeOutput(args: RemoveBridgeOutputCommandInput, options?: __HttpHandlerOptions): Promise<RemoveBridgeOutputCommandOutput>;
|
|
266
232
|
removeBridgeOutput(args: RemoveBridgeOutputCommandInput, cb: (err: any, data?: RemoveBridgeOutputCommandOutput) => void): void;
|
|
267
233
|
removeBridgeOutput(args: RemoveBridgeOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveBridgeOutputCommandOutput) => void): void;
|
|
268
234
|
/**
|
|
269
|
-
* @
|
|
270
|
-
* Removes a source from a bridge.
|
|
235
|
+
* @see {@link RemoveBridgeSourceCommand}
|
|
271
236
|
*/
|
|
272
237
|
removeBridgeSource(args: RemoveBridgeSourceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveBridgeSourceCommandOutput>;
|
|
273
238
|
removeBridgeSource(args: RemoveBridgeSourceCommandInput, cb: (err: any, data?: RemoveBridgeSourceCommandOutput) => void): void;
|
|
274
239
|
removeBridgeSource(args: RemoveBridgeSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveBridgeSourceCommandOutput) => void): void;
|
|
275
240
|
/**
|
|
276
|
-
* @
|
|
277
|
-
* Removes a media stream from a flow. This action is only available if the media stream is not associated with a source or output.
|
|
241
|
+
* @see {@link RemoveFlowMediaStreamCommand}
|
|
278
242
|
*/
|
|
279
243
|
removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowMediaStreamCommandOutput>;
|
|
280
244
|
removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void): void;
|
|
281
245
|
removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void): void;
|
|
282
246
|
/**
|
|
283
|
-
* @
|
|
284
|
-
* 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.
|
|
247
|
+
* @see {@link RemoveFlowOutputCommand}
|
|
285
248
|
*/
|
|
286
249
|
removeFlowOutput(args: RemoveFlowOutputCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowOutputCommandOutput>;
|
|
287
250
|
removeFlowOutput(args: RemoveFlowOutputCommandInput, cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void): void;
|
|
288
251
|
removeFlowOutput(args: RemoveFlowOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void): void;
|
|
289
252
|
/**
|
|
290
|
-
* @
|
|
291
|
-
* Removes a source from an existing flow. This request can be made only if there is more than one source on the flow.
|
|
253
|
+
* @see {@link RemoveFlowSourceCommand}
|
|
292
254
|
*/
|
|
293
255
|
removeFlowSource(args: RemoveFlowSourceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowSourceCommandOutput>;
|
|
294
256
|
removeFlowSource(args: RemoveFlowSourceCommandInput, cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void): void;
|
|
295
257
|
removeFlowSource(args: RemoveFlowSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void): void;
|
|
296
258
|
/**
|
|
297
|
-
* @
|
|
298
|
-
* 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.
|
|
259
|
+
* @see {@link RemoveFlowVpcInterfaceCommand}
|
|
299
260
|
*/
|
|
300
261
|
removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowVpcInterfaceCommandOutput>;
|
|
301
262
|
removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void): void;
|
|
302
263
|
removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void): void;
|
|
303
264
|
/**
|
|
304
|
-
* @
|
|
305
|
-
* Revokes an entitlement from a flow. Once an entitlement is revoked, the content becomes unavailable to the subscriber and the associated output is removed.
|
|
265
|
+
* @see {@link RevokeFlowEntitlementCommand}
|
|
306
266
|
*/
|
|
307
267
|
revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, options?: __HttpHandlerOptions): Promise<RevokeFlowEntitlementCommandOutput>;
|
|
308
268
|
revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void): void;
|
|
309
269
|
revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void): void;
|
|
310
270
|
/**
|
|
311
|
-
* @
|
|
312
|
-
* Starts a flow.
|
|
271
|
+
* @see {@link StartFlowCommand}
|
|
313
272
|
*/
|
|
314
273
|
startFlow(args: StartFlowCommandInput, options?: __HttpHandlerOptions): Promise<StartFlowCommandOutput>;
|
|
315
274
|
startFlow(args: StartFlowCommandInput, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
|
|
316
275
|
startFlow(args: StartFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
|
|
317
276
|
/**
|
|
318
|
-
* @
|
|
319
|
-
* Stops a flow.
|
|
277
|
+
* @see {@link StopFlowCommand}
|
|
320
278
|
*/
|
|
321
279
|
stopFlow(args: StopFlowCommandInput, options?: __HttpHandlerOptions): Promise<StopFlowCommandOutput>;
|
|
322
280
|
stopFlow(args: StopFlowCommandInput, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
|
|
323
281
|
stopFlow(args: StopFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
|
|
324
282
|
/**
|
|
325
|
-
* @
|
|
326
|
-
* Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they are not changed. When a resource is deleted, the tags associated with that resource are deleted as well.
|
|
283
|
+
* @see {@link TagResourceCommand}
|
|
327
284
|
*/
|
|
328
285
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
329
286
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
330
287
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
331
288
|
/**
|
|
332
|
-
* @
|
|
333
|
-
* Deletes specified tags from a resource.
|
|
289
|
+
* @see {@link UntagResourceCommand}
|
|
334
290
|
*/
|
|
335
291
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
336
292
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
337
293
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
338
294
|
/**
|
|
339
|
-
* @
|
|
340
|
-
* Updates the bridge
|
|
295
|
+
* @see {@link UpdateBridgeCommand}
|
|
341
296
|
*/
|
|
342
297
|
updateBridge(args: UpdateBridgeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBridgeCommandOutput>;
|
|
343
298
|
updateBridge(args: UpdateBridgeCommandInput, cb: (err: any, data?: UpdateBridgeCommandOutput) => void): void;
|
|
344
299
|
updateBridge(args: UpdateBridgeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBridgeCommandOutput) => void): void;
|
|
345
300
|
/**
|
|
346
|
-
* @
|
|
347
|
-
* Updates an existing bridge output.
|
|
301
|
+
* @see {@link UpdateBridgeOutputCommand}
|
|
348
302
|
*/
|
|
349
303
|
updateBridgeOutput(args: UpdateBridgeOutputCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBridgeOutputCommandOutput>;
|
|
350
304
|
updateBridgeOutput(args: UpdateBridgeOutputCommandInput, cb: (err: any, data?: UpdateBridgeOutputCommandOutput) => void): void;
|
|
351
305
|
updateBridgeOutput(args: UpdateBridgeOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBridgeOutputCommandOutput) => void): void;
|
|
352
306
|
/**
|
|
353
|
-
* @
|
|
354
|
-
* Updates an existing bridge source.
|
|
307
|
+
* @see {@link UpdateBridgeSourceCommand}
|
|
355
308
|
*/
|
|
356
309
|
updateBridgeSource(args: UpdateBridgeSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBridgeSourceCommandOutput>;
|
|
357
310
|
updateBridgeSource(args: UpdateBridgeSourceCommandInput, cb: (err: any, data?: UpdateBridgeSourceCommandOutput) => void): void;
|
|
358
311
|
updateBridgeSource(args: UpdateBridgeSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBridgeSourceCommandOutput) => void): void;
|
|
359
312
|
/**
|
|
360
|
-
* @
|
|
361
|
-
* Updates the bridge state
|
|
313
|
+
* @see {@link UpdateBridgeStateCommand}
|
|
362
314
|
*/
|
|
363
315
|
updateBridgeState(args: UpdateBridgeStateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBridgeStateCommandOutput>;
|
|
364
316
|
updateBridgeState(args: UpdateBridgeStateCommandInput, cb: (err: any, data?: UpdateBridgeStateCommandOutput) => void): void;
|
|
365
317
|
updateBridgeState(args: UpdateBridgeStateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBridgeStateCommandOutput) => void): void;
|
|
366
318
|
/**
|
|
367
|
-
* @
|
|
368
|
-
* Updates flow
|
|
319
|
+
* @see {@link UpdateFlowCommand}
|
|
369
320
|
*/
|
|
370
321
|
updateFlow(args: UpdateFlowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowCommandOutput>;
|
|
371
322
|
updateFlow(args: UpdateFlowCommandInput, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
|
|
372
323
|
updateFlow(args: UpdateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
|
|
373
324
|
/**
|
|
374
|
-
* @
|
|
375
|
-
* You can change an entitlement's description, subscribers, and encryption. If you change the subscribers, the service will remove the outputs that are are used by the subscribers that are removed.
|
|
325
|
+
* @see {@link UpdateFlowEntitlementCommand}
|
|
376
326
|
*/
|
|
377
327
|
updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowEntitlementCommandOutput>;
|
|
378
328
|
updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void): void;
|
|
379
329
|
updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void): void;
|
|
380
330
|
/**
|
|
381
|
-
* @
|
|
382
|
-
* Updates an existing media stream.
|
|
331
|
+
* @see {@link UpdateFlowMediaStreamCommand}
|
|
383
332
|
*/
|
|
384
333
|
updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowMediaStreamCommandOutput>;
|
|
385
334
|
updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void): void;
|
|
386
335
|
updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void): void;
|
|
387
336
|
/**
|
|
388
|
-
* @
|
|
389
|
-
* Updates an existing flow output.
|
|
337
|
+
* @see {@link UpdateFlowOutputCommand}
|
|
390
338
|
*/
|
|
391
339
|
updateFlowOutput(args: UpdateFlowOutputCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowOutputCommandOutput>;
|
|
392
340
|
updateFlowOutput(args: UpdateFlowOutputCommandInput, cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void): void;
|
|
393
341
|
updateFlowOutput(args: UpdateFlowOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void): void;
|
|
394
342
|
/**
|
|
395
|
-
* @
|
|
396
|
-
* Updates the source of a flow.
|
|
343
|
+
* @see {@link UpdateFlowSourceCommand}
|
|
397
344
|
*/
|
|
398
345
|
updateFlowSource(args: UpdateFlowSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowSourceCommandOutput>;
|
|
399
346
|
updateFlowSource(args: UpdateFlowSourceCommandInput, cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void): void;
|
|
400
347
|
updateFlowSource(args: UpdateFlowSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void): void;
|
|
401
348
|
/**
|
|
402
|
-
* @
|
|
403
|
-
* Updates the configuration of an existing Gateway Instance.
|
|
349
|
+
* @see {@link UpdateGatewayInstanceCommand}
|
|
404
350
|
*/
|
|
405
351
|
updateGatewayInstance(args: UpdateGatewayInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGatewayInstanceCommandOutput>;
|
|
406
352
|
updateGatewayInstance(args: UpdateGatewayInstanceCommandInput, cb: (err: any, data?: UpdateGatewayInstanceCommandOutput) => void): void;
|
|
407
353
|
updateGatewayInstance(args: UpdateGatewayInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGatewayInstanceCommandOutput) => void): void;
|
|
408
354
|
}
|
|
355
|
+
/**
|
|
356
|
+
* @public
|
|
357
|
+
* API for AWS Elemental MediaConnect
|
|
358
|
+
*/
|
|
359
|
+
export declare class MediaConnect extends MediaConnectClient implements MediaConnect {
|
|
360
|
+
}
|
|
@@ -200,7 +200,7 @@ import {
|
|
|
200
200
|
UpdateGatewayInstanceCommandOutput,
|
|
201
201
|
} from "./commands/UpdateGatewayInstanceCommand";
|
|
202
202
|
import { MediaConnectClient } from "./MediaConnectClient";
|
|
203
|
-
export
|
|
203
|
+
export interface MediaConnect {
|
|
204
204
|
addBridgeOutputs(
|
|
205
205
|
args: AddBridgeOutputsCommandInput,
|
|
206
206
|
options?: __HttpHandlerOptions
|
|
@@ -852,3 +852,6 @@ export declare class MediaConnect extends MediaConnectClient {
|
|
|
852
852
|
cb: (err: any, data?: UpdateGatewayInstanceCommandOutput) => void
|
|
853
853
|
): void;
|
|
854
854
|
}
|
|
855
|
+
export declare class MediaConnect
|
|
856
|
+
extends MediaConnectClient
|
|
857
|
+
implements MediaConnect {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconnect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconnect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|