@aws-sdk/client-mediaconnect 3.295.0 → 3.297.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/MediaConnect.d.ts +31 -0
- package/dist-types/MediaConnectClient.d.ts +24 -4
- package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +16 -0
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +16 -0
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +16 -0
- package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +16 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFlowCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFlowCommand.d.ts +16 -0
- package/dist-types/commands/DescribeOfferingCommand.d.ts +16 -0
- package/dist-types/commands/DescribeReservationCommand.d.ts +16 -0
- package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +16 -0
- package/dist-types/commands/ListEntitlementsCommand.d.ts +16 -0
- package/dist-types/commands/ListFlowsCommand.d.ts +16 -0
- package/dist-types/commands/ListOfferingsCommand.d.ts +16 -0
- package/dist-types/commands/ListReservationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +16 -0
- package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +16 -0
- package/dist-types/commands/RemoveFlowOutputCommand.d.ts +16 -0
- package/dist-types/commands/RemoveFlowSourceCommand.d.ts +16 -0
- package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +16 -0
- package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +16 -0
- package/dist-types/commands/StartFlowCommand.d.ts +16 -0
- package/dist-types/commands/StopFlowCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFlowCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +16 -0
- package/dist-types/models/MediaConnectServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +263 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListEntitlementsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFlowsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOfferingsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReservationsPaginator.d.ts +3 -0
- package/package.json +30 -30
|
@@ -31,184 +31,215 @@ import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./c
|
|
|
31
31
|
import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
|
|
32
32
|
import { MediaConnectClient } from "./MediaConnectClient";
|
|
33
33
|
/**
|
|
34
|
+
* @public
|
|
34
35
|
* API for AWS Elemental MediaConnect
|
|
35
36
|
*/
|
|
36
37
|
export declare class MediaConnect extends MediaConnectClient {
|
|
37
38
|
/**
|
|
39
|
+
* @public
|
|
38
40
|
* 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.
|
|
39
41
|
*/
|
|
40
42
|
addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowMediaStreamsCommandOutput>;
|
|
41
43
|
addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void): void;
|
|
42
44
|
addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void): void;
|
|
43
45
|
/**
|
|
46
|
+
* @public
|
|
44
47
|
* Adds outputs to an existing flow. You can create up to 50 outputs per flow.
|
|
45
48
|
*/
|
|
46
49
|
addFlowOutputs(args: AddFlowOutputsCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowOutputsCommandOutput>;
|
|
47
50
|
addFlowOutputs(args: AddFlowOutputsCommandInput, cb: (err: any, data?: AddFlowOutputsCommandOutput) => void): void;
|
|
48
51
|
addFlowOutputs(args: AddFlowOutputsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowOutputsCommandOutput) => void): void;
|
|
49
52
|
/**
|
|
53
|
+
* @public
|
|
50
54
|
* Adds Sources to flow
|
|
51
55
|
*/
|
|
52
56
|
addFlowSources(args: AddFlowSourcesCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowSourcesCommandOutput>;
|
|
53
57
|
addFlowSources(args: AddFlowSourcesCommandInput, cb: (err: any, data?: AddFlowSourcesCommandOutput) => void): void;
|
|
54
58
|
addFlowSources(args: AddFlowSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowSourcesCommandOutput) => void): void;
|
|
55
59
|
/**
|
|
60
|
+
* @public
|
|
56
61
|
* Adds VPC interfaces to flow
|
|
57
62
|
*/
|
|
58
63
|
addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowVpcInterfacesCommandOutput>;
|
|
59
64
|
addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void): void;
|
|
60
65
|
addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void): void;
|
|
61
66
|
/**
|
|
67
|
+
* @public
|
|
62
68
|
* Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50).
|
|
63
69
|
*/
|
|
64
70
|
createFlow(args: CreateFlowCommandInput, options?: __HttpHandlerOptions): Promise<CreateFlowCommandOutput>;
|
|
65
71
|
createFlow(args: CreateFlowCommandInput, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
|
|
66
72
|
createFlow(args: CreateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
|
|
67
73
|
/**
|
|
74
|
+
* @public
|
|
68
75
|
* Deletes a flow. Before you can delete a flow, you must stop the flow.
|
|
69
76
|
*/
|
|
70
77
|
deleteFlow(args: DeleteFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowCommandOutput>;
|
|
71
78
|
deleteFlow(args: DeleteFlowCommandInput, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
|
|
72
79
|
deleteFlow(args: DeleteFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
|
|
73
80
|
/**
|
|
81
|
+
* @public
|
|
74
82
|
* 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.
|
|
75
83
|
*/
|
|
76
84
|
describeFlow(args: DescribeFlowCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowCommandOutput>;
|
|
77
85
|
describeFlow(args: DescribeFlowCommandInput, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
|
|
78
86
|
describeFlow(args: DescribeFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
|
|
79
87
|
/**
|
|
88
|
+
* @public
|
|
80
89
|
* Displays the details of an offering. The response includes the offering description, duration, outbound bandwidth, price, and Amazon Resource Name (ARN).
|
|
81
90
|
*/
|
|
82
91
|
describeOffering(args: DescribeOfferingCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOfferingCommandOutput>;
|
|
83
92
|
describeOffering(args: DescribeOfferingCommandInput, cb: (err: any, data?: DescribeOfferingCommandOutput) => void): void;
|
|
84
93
|
describeOffering(args: DescribeOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOfferingCommandOutput) => void): void;
|
|
85
94
|
/**
|
|
95
|
+
* @public
|
|
86
96
|
* 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).
|
|
87
97
|
*/
|
|
88
98
|
describeReservation(args: DescribeReservationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservationCommandOutput>;
|
|
89
99
|
describeReservation(args: DescribeReservationCommandInput, cb: (err: any, data?: DescribeReservationCommandOutput) => void): void;
|
|
90
100
|
describeReservation(args: DescribeReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservationCommandOutput) => void): void;
|
|
91
101
|
/**
|
|
102
|
+
* @public
|
|
92
103
|
* Grants entitlements to an existing flow.
|
|
93
104
|
*/
|
|
94
105
|
grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<GrantFlowEntitlementsCommandOutput>;
|
|
95
106
|
grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void): void;
|
|
96
107
|
grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void): void;
|
|
97
108
|
/**
|
|
109
|
+
* @public
|
|
98
110
|
* Displays a list of all entitlements that have been granted to this account. This request returns 20 results per page.
|
|
99
111
|
*/
|
|
100
112
|
listEntitlements(args: ListEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<ListEntitlementsCommandOutput>;
|
|
101
113
|
listEntitlements(args: ListEntitlementsCommandInput, cb: (err: any, data?: ListEntitlementsCommandOutput) => void): void;
|
|
102
114
|
listEntitlements(args: ListEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEntitlementsCommandOutput) => void): void;
|
|
103
115
|
/**
|
|
116
|
+
* @public
|
|
104
117
|
* Displays a list of flows that are associated with this account. This request returns a paginated result.
|
|
105
118
|
*/
|
|
106
119
|
listFlows(args: ListFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowsCommandOutput>;
|
|
107
120
|
listFlows(args: ListFlowsCommandInput, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
|
|
108
121
|
listFlows(args: ListFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
|
|
109
122
|
/**
|
|
123
|
+
* @public
|
|
110
124
|
* 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.
|
|
111
125
|
*/
|
|
112
126
|
listOfferings(args: ListOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<ListOfferingsCommandOutput>;
|
|
113
127
|
listOfferings(args: ListOfferingsCommandInput, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
|
|
114
128
|
listOfferings(args: ListOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
|
|
115
129
|
/**
|
|
130
|
+
* @public
|
|
116
131
|
* 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).
|
|
117
132
|
*/
|
|
118
133
|
listReservations(args: ListReservationsCommandInput, options?: __HttpHandlerOptions): Promise<ListReservationsCommandOutput>;
|
|
119
134
|
listReservations(args: ListReservationsCommandInput, cb: (err: any, data?: ListReservationsCommandOutput) => void): void;
|
|
120
135
|
listReservations(args: ListReservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReservationsCommandOutput) => void): void;
|
|
121
136
|
/**
|
|
137
|
+
* @public
|
|
122
138
|
* List all tags on an AWS Elemental MediaConnect resource
|
|
123
139
|
*/
|
|
124
140
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
125
141
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
126
142
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
127
143
|
/**
|
|
144
|
+
* @public
|
|
128
145
|
* Submits a request to purchase an offering. If you already have an active reservation, you can't purchase another offering.
|
|
129
146
|
*/
|
|
130
147
|
purchaseOffering(args: PurchaseOfferingCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseOfferingCommandOutput>;
|
|
131
148
|
purchaseOffering(args: PurchaseOfferingCommandInput, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
|
|
132
149
|
purchaseOffering(args: PurchaseOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
|
|
133
150
|
/**
|
|
151
|
+
* @public
|
|
134
152
|
* Removes a media stream from a flow. This action is only available if the media stream is not associated with a source or output.
|
|
135
153
|
*/
|
|
136
154
|
removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowMediaStreamCommandOutput>;
|
|
137
155
|
removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void): void;
|
|
138
156
|
removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void): void;
|
|
139
157
|
/**
|
|
158
|
+
* @public
|
|
140
159
|
* 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.
|
|
141
160
|
*/
|
|
142
161
|
removeFlowOutput(args: RemoveFlowOutputCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowOutputCommandOutput>;
|
|
143
162
|
removeFlowOutput(args: RemoveFlowOutputCommandInput, cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void): void;
|
|
144
163
|
removeFlowOutput(args: RemoveFlowOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void): void;
|
|
145
164
|
/**
|
|
165
|
+
* @public
|
|
146
166
|
* Removes a source from an existing flow. This request can be made only if there is more than one source on the flow.
|
|
147
167
|
*/
|
|
148
168
|
removeFlowSource(args: RemoveFlowSourceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowSourceCommandOutput>;
|
|
149
169
|
removeFlowSource(args: RemoveFlowSourceCommandInput, cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void): void;
|
|
150
170
|
removeFlowSource(args: RemoveFlowSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void): void;
|
|
151
171
|
/**
|
|
172
|
+
* @public
|
|
152
173
|
* 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.
|
|
153
174
|
*/
|
|
154
175
|
removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowVpcInterfaceCommandOutput>;
|
|
155
176
|
removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void): void;
|
|
156
177
|
removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void): void;
|
|
157
178
|
/**
|
|
179
|
+
* @public
|
|
158
180
|
* Revokes an entitlement from a flow. Once an entitlement is revoked, the content becomes unavailable to the subscriber and the associated output is removed.
|
|
159
181
|
*/
|
|
160
182
|
revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, options?: __HttpHandlerOptions): Promise<RevokeFlowEntitlementCommandOutput>;
|
|
161
183
|
revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void): void;
|
|
162
184
|
revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void): void;
|
|
163
185
|
/**
|
|
186
|
+
* @public
|
|
164
187
|
* Starts a flow.
|
|
165
188
|
*/
|
|
166
189
|
startFlow(args: StartFlowCommandInput, options?: __HttpHandlerOptions): Promise<StartFlowCommandOutput>;
|
|
167
190
|
startFlow(args: StartFlowCommandInput, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
|
|
168
191
|
startFlow(args: StartFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
|
|
169
192
|
/**
|
|
193
|
+
* @public
|
|
170
194
|
* Stops a flow.
|
|
171
195
|
*/
|
|
172
196
|
stopFlow(args: StopFlowCommandInput, options?: __HttpHandlerOptions): Promise<StopFlowCommandOutput>;
|
|
173
197
|
stopFlow(args: StopFlowCommandInput, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
|
|
174
198
|
stopFlow(args: StopFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
|
|
175
199
|
/**
|
|
200
|
+
* @public
|
|
176
201
|
* 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.
|
|
177
202
|
*/
|
|
178
203
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
179
204
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
180
205
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
181
206
|
/**
|
|
207
|
+
* @public
|
|
182
208
|
* Deletes specified tags from a resource.
|
|
183
209
|
*/
|
|
184
210
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
185
211
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
186
212
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
187
213
|
/**
|
|
214
|
+
* @public
|
|
188
215
|
* Updates flow
|
|
189
216
|
*/
|
|
190
217
|
updateFlow(args: UpdateFlowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowCommandOutput>;
|
|
191
218
|
updateFlow(args: UpdateFlowCommandInput, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
|
|
192
219
|
updateFlow(args: UpdateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
|
|
193
220
|
/**
|
|
221
|
+
* @public
|
|
194
222
|
* 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.
|
|
195
223
|
*/
|
|
196
224
|
updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowEntitlementCommandOutput>;
|
|
197
225
|
updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void): void;
|
|
198
226
|
updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void): void;
|
|
199
227
|
/**
|
|
228
|
+
* @public
|
|
200
229
|
* Updates an existing media stream.
|
|
201
230
|
*/
|
|
202
231
|
updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowMediaStreamCommandOutput>;
|
|
203
232
|
updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void): void;
|
|
204
233
|
updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void): void;
|
|
205
234
|
/**
|
|
235
|
+
* @public
|
|
206
236
|
* Updates an existing flow output.
|
|
207
237
|
*/
|
|
208
238
|
updateFlowOutput(args: UpdateFlowOutputCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowOutputCommandOutput>;
|
|
209
239
|
updateFlowOutput(args: UpdateFlowOutputCommandInput, cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void): void;
|
|
210
240
|
updateFlowOutput(args: UpdateFlowOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void): void;
|
|
211
241
|
/**
|
|
242
|
+
* @public
|
|
212
243
|
* Updates the source of a flow.
|
|
213
244
|
*/
|
|
214
245
|
updateFlowSource(args: UpdateFlowSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowSourceCommandOutput>;
|
|
@@ -38,15 +38,24 @@ import { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput }
|
|
|
38
38
|
import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./commands/UpdateFlowOutputCommand";
|
|
39
39
|
import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
|
|
40
40
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
41
44
|
export type ServiceInputTypes = AddFlowMediaStreamsCommandInput | AddFlowOutputsCommandInput | AddFlowSourcesCommandInput | AddFlowVpcInterfacesCommandInput | CreateFlowCommandInput | DeleteFlowCommandInput | DescribeFlowCommandInput | DescribeOfferingCommandInput | DescribeReservationCommandInput | GrantFlowEntitlementsCommandInput | ListEntitlementsCommandInput | ListFlowsCommandInput | ListOfferingsCommandInput | ListReservationsCommandInput | ListTagsForResourceCommandInput | PurchaseOfferingCommandInput | RemoveFlowMediaStreamCommandInput | RemoveFlowOutputCommandInput | RemoveFlowSourceCommandInput | RemoveFlowVpcInterfaceCommandInput | RevokeFlowEntitlementCommandInput | StartFlowCommandInput | StopFlowCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateFlowCommandInput | UpdateFlowEntitlementCommandInput | UpdateFlowMediaStreamCommandInput | UpdateFlowOutputCommandInput | UpdateFlowSourceCommandInput;
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
42
48
|
export type ServiceOutputTypes = AddFlowMediaStreamsCommandOutput | AddFlowOutputsCommandOutput | AddFlowSourcesCommandOutput | AddFlowVpcInterfacesCommandOutput | CreateFlowCommandOutput | DeleteFlowCommandOutput | DescribeFlowCommandOutput | DescribeOfferingCommandOutput | DescribeReservationCommandOutput | GrantFlowEntitlementsCommandOutput | ListEntitlementsCommandOutput | ListFlowsCommandOutput | ListOfferingsCommandOutput | ListReservationsCommandOutput | ListTagsForResourceCommandOutput | PurchaseOfferingCommandOutput | RemoveFlowMediaStreamCommandOutput | RemoveFlowOutputCommandOutput | RemoveFlowSourceCommandOutput | RemoveFlowVpcInterfaceCommandOutput | RevokeFlowEntitlementCommandOutput | StartFlowCommandOutput | StopFlowCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateFlowCommandOutput | UpdateFlowEntitlementCommandOutput | UpdateFlowMediaStreamCommandOutput | UpdateFlowOutputCommandOutput | UpdateFlowSourceCommandOutput;
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
43
52
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
44
53
|
/**
|
|
45
54
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
46
55
|
*/
|
|
47
56
|
requestHandler?: __HttpHandler;
|
|
48
57
|
/**
|
|
49
|
-
* A constructor for a class implementing the {@link
|
|
58
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
50
59
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
51
60
|
* @internal
|
|
52
61
|
*/
|
|
@@ -136,23 +145,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
136
145
|
*/
|
|
137
146
|
logger?: __Logger;
|
|
138
147
|
/**
|
|
139
|
-
* The {@link
|
|
148
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
140
149
|
*/
|
|
141
150
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
142
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
143
155
|
type MediaConnectClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
144
156
|
/**
|
|
145
|
-
*
|
|
157
|
+
* @public
|
|
158
|
+
*
|
|
159
|
+
* The configuration interface of MediaConnectClient class constructor that set the region, credentials and other options.
|
|
146
160
|
*/
|
|
147
161
|
export interface MediaConnectClientConfig extends MediaConnectClientConfigType {
|
|
148
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
149
166
|
type MediaConnectClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
150
167
|
/**
|
|
151
|
-
*
|
|
168
|
+
* @public
|
|
169
|
+
*
|
|
170
|
+
* The resolved configuration interface of MediaConnectClient class. This is resolved and normalized from the {@link MediaConnectClientConfig | constructor configuration interface}.
|
|
152
171
|
*/
|
|
153
172
|
export interface MediaConnectClientResolvedConfig extends MediaConnectClientResolvedConfigType {
|
|
154
173
|
}
|
|
155
174
|
/**
|
|
175
|
+
* @public
|
|
156
176
|
* API for AWS Elemental MediaConnect
|
|
157
177
|
*/
|
|
158
178
|
export declare class MediaConnectClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MediaConnectClientResolvedConfig> {
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
5
|
import { AddFlowMediaStreamsRequest, AddFlowMediaStreamsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddFlowMediaStreamsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddFlowMediaStreamsCommandInput extends AddFlowMediaStreamsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddFlowMediaStreamsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddFlowMediaStreamsCommandOutput extends AddFlowMediaStreamsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* 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.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface AddFlowMediaStreamsCommandOutput extends AddFlowMediaStreamsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param AddFlowMediaStreamsCommandInput - {@link AddFlowMediaStreamsCommandInput}
|
|
34
|
+
* @returns {@link AddFlowMediaStreamsCommandOutput}
|
|
28
35
|
* @see {@link AddFlowMediaStreamsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link AddFlowMediaStreamsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface AddFlowMediaStreamsCommandOutput extends AddFlowMediaStreamsRes
|
|
|
52
59
|
export declare class AddFlowMediaStreamsCommand extends $Command<AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
53
60
|
readonly input: AddFlowMediaStreamsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: AddFlowMediaStreamsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
5
|
import { AddFlowOutputsRequest, AddFlowOutputsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddFlowOutputsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddFlowOutputsCommandInput extends AddFlowOutputsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddFlowOutputsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddFlowOutputsCommandOutput extends AddFlowOutputsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Adds outputs to an existing flow. You can create up to 50 outputs per flow.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface AddFlowOutputsCommandOutput extends AddFlowOutputsResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param AddFlowOutputsCommandInput - {@link AddFlowOutputsCommandInput}
|
|
34
|
+
* @returns {@link AddFlowOutputsCommandOutput}
|
|
28
35
|
* @see {@link AddFlowOutputsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link AddFlowOutputsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface AddFlowOutputsCommandOutput extends AddFlowOutputsResponse, __M
|
|
|
55
62
|
export declare class AddFlowOutputsCommand extends $Command<AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
56
63
|
readonly input: AddFlowOutputsCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: AddFlowOutputsCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
5
|
import { AddFlowSourcesRequest, AddFlowSourcesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddFlowSourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddFlowSourcesCommandInput extends AddFlowSourcesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddFlowSourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Adds Sources to flow
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param AddFlowSourcesCommandInput - {@link AddFlowSourcesCommandInput}
|
|
34
|
+
* @returns {@link AddFlowSourcesCommandOutput}
|
|
28
35
|
* @see {@link AddFlowSourcesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link AddFlowSourcesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __M
|
|
|
52
59
|
export declare class AddFlowSourcesCommand extends $Command<AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput, MediaConnectClientResolvedConfig> {
|
|
53
60
|
readonly input: AddFlowSourcesCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: AddFlowSourcesCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
5
|
import { AddFlowVpcInterfacesRequest, AddFlowVpcInterfacesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddFlowVpcInterfacesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddFlowVpcInterfacesCommandInput extends AddFlowVpcInterfacesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddFlowVpcInterfacesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddFlowVpcInterfacesCommandOutput extends AddFlowVpcInterfacesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Adds VPC interfaces to flow
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface AddFlowVpcInterfacesCommandOutput extends AddFlowVpcInterfacesR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param AddFlowVpcInterfacesCommandInput - {@link AddFlowVpcInterfacesCommandInput}
|
|
34
|
+
* @returns {@link AddFlowVpcInterfacesCommandOutput}
|
|
28
35
|
* @see {@link AddFlowVpcInterfacesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link AddFlowVpcInterfacesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface AddFlowVpcInterfacesCommandOutput extends AddFlowVpcInterfacesR
|
|
|
52
59
|
export declare class AddFlowVpcInterfacesCommand extends $Command<AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput, MediaConnectClientResolvedConfig> {
|
|
53
60
|
readonly input: AddFlowVpcInterfacesCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: AddFlowVpcInterfacesCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
5
|
import { CreateFlowRequest, CreateFlowResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateFlowCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateFlowCommandInput extends CreateFlowRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateFlowCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50).
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateFlowCommandInput - {@link CreateFlowCommandInput}
|
|
34
|
+
* @returns {@link CreateFlowCommandOutput}
|
|
28
35
|
* @see {@link CreateFlowCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateFlowCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
52
59
|
export declare class CreateFlowCommand extends $Command<CreateFlowCommandInput, CreateFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateFlowCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateFlowCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFlowCommandInput, CreateFlowCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
5
|
import { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteFlowCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteFlowCommandInput extends DeleteFlowRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteFlowCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Deletes a flow. Before you can delete a flow, you must stop the flow.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteFlowCommandInput - {@link DeleteFlowCommandInput}
|
|
34
|
+
* @returns {@link DeleteFlowCommandOutput}
|
|
28
35
|
* @see {@link DeleteFlowCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteFlowCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB
|
|
|
52
59
|
export declare class DeleteFlowCommand extends $Command<DeleteFlowCommandInput, DeleteFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteFlowCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteFlowCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFlowCommandInput, DeleteFlowCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
|
|
5
5
|
import { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeFlowCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeFlowCommandInput extends DescribeFlowRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeFlowCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* 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.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeFlowCommandInput - {@link DescribeFlowCommandInput}
|
|
34
|
+
* @returns {@link DescribeFlowCommandOutput}
|
|
28
35
|
* @see {@link DescribeFlowCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeFlowCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad
|
|
|
52
59
|
export declare class DescribeFlowCommand extends $Command<DescribeFlowCommandInput, DescribeFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
53
60
|
readonly input: DescribeFlowCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DescribeFlowCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFlowCommandInput, DescribeFlowCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|