@aws-sdk/client-mediaconnect 3.325.0 → 3.327.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AddBridgeOutputsCommand.d.ts +23 -0
- package/dist-types/commands/AddBridgeSourcesCommand.d.ts +25 -0
- package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +29 -0
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +74 -0
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +70 -0
- package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +20 -0
- package/dist-types/commands/CreateBridgeCommand.d.ts +71 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +279 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +26 -0
- package/dist-types/commands/DeleteBridgeCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFlowCommand.d.ts +7 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +6 -0
- package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +7 -0
- package/dist-types/commands/DescribeBridgeCommand.d.ts +71 -0
- package/dist-types/commands/DescribeFlowCommand.d.ts +282 -0
- package/dist-types/commands/DescribeGatewayCommand.d.ts +26 -0
- package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +21 -0
- package/dist-types/commands/DescribeOfferingCommand.d.ts +18 -0
- package/dist-types/commands/DescribeReservationCommand.d.ts +23 -0
- package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +29 -0
- package/dist-types/commands/ListBridgesCommand.d.ts +15 -0
- package/dist-types/commands/ListEntitlementsCommand.d.ts +13 -0
- package/dist-types/commands/ListFlowsCommand.d.ts +22 -0
- package/dist-types/commands/ListGatewayInstancesCommand.d.ts +14 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +13 -0
- package/dist-types/commands/ListOfferingsCommand.d.ts +21 -0
- package/dist-types/commands/ListReservationsCommand.d.ts +26 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +23 -0
- package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +7 -0
- package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +7 -0
- package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +7 -0
- package/dist-types/commands/RemoveFlowOutputCommand.d.ts +7 -0
- package/dist-types/commands/RemoveFlowSourceCommand.d.ts +7 -0
- package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +10 -0
- package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +7 -0
- package/dist-types/commands/StartFlowCommand.d.ts +7 -0
- package/dist-types/commands/StopFlowCommand.d.ts +7 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateBridgeCommand.d.ts +71 -0
- package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +21 -0
- package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +23 -0
- package/dist-types/commands/UpdateBridgeStateCommand.d.ts +7 -0
- package/dist-types/commands/UpdateFlowCommand.d.ts +279 -0
- package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +27 -0
- package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +27 -0
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +72 -0
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +68 -0
- package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +7 -0
- package/package.json +7 -7
|
@@ -44,6 +44,283 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new UpdateFlowCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // UpdateFlowResponse
|
|
48
|
+
* // Flow: { // Flow
|
|
49
|
+
* // AvailabilityZone: "STRING_VALUE", // required
|
|
50
|
+
* // Description: "STRING_VALUE",
|
|
51
|
+
* // EgressIp: "STRING_VALUE",
|
|
52
|
+
* // Entitlements: [ // __listOfEntitlement // required
|
|
53
|
+
* // { // Entitlement
|
|
54
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
55
|
+
* // Description: "STRING_VALUE",
|
|
56
|
+
* // Encryption: { // Encryption
|
|
57
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
58
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
59
|
+
* // DeviceId: "STRING_VALUE",
|
|
60
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
61
|
+
* // Region: "STRING_VALUE",
|
|
62
|
+
* // ResourceId: "STRING_VALUE",
|
|
63
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
64
|
+
* // SecretArn: "STRING_VALUE",
|
|
65
|
+
* // Url: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // EntitlementArn: "STRING_VALUE", // required
|
|
68
|
+
* // EntitlementStatus: "ENABLED" || "DISABLED",
|
|
69
|
+
* // Name: "STRING_VALUE", // required
|
|
70
|
+
* // Subscribers: [ // __listOf__string // required
|
|
71
|
+
* // "STRING_VALUE",
|
|
72
|
+
* // ],
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // FlowArn: "STRING_VALUE", // required
|
|
76
|
+
* // MediaStreams: [ // __listOfMediaStream
|
|
77
|
+
* // { // MediaStream
|
|
78
|
+
* // Attributes: { // MediaStreamAttributes
|
|
79
|
+
* // Fmtp: { // Fmtp
|
|
80
|
+
* // ChannelOrder: "STRING_VALUE",
|
|
81
|
+
* // Colorimetry: "BT601" || "BT709" || "BT2020" || "BT2100" || "ST2065-1" || "ST2065-3" || "XYZ",
|
|
82
|
+
* // ExactFramerate: "STRING_VALUE",
|
|
83
|
+
* // Par: "STRING_VALUE",
|
|
84
|
+
* // Range: "NARROW" || "FULL" || "FULLPROTECT",
|
|
85
|
+
* // ScanMode: "progressive" || "interlace" || "progressive-segmented-frame",
|
|
86
|
+
* // Tcs: "SDR" || "PQ" || "HLG" || "LINEAR" || "BT2100LINPQ" || "BT2100LINHLG" || "ST2065-1" || "ST428-1" || "DENSITY",
|
|
87
|
+
* // },
|
|
88
|
+
* // Lang: "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // ClockRate: Number("int"),
|
|
91
|
+
* // Description: "STRING_VALUE",
|
|
92
|
+
* // Fmt: Number("int"), // required
|
|
93
|
+
* // MediaStreamId: Number("int"), // required
|
|
94
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
95
|
+
* // MediaStreamType: "video" || "audio" || "ancillary-data", // required
|
|
96
|
+
* // VideoFormat: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
99
|
+
* // Name: "STRING_VALUE", // required
|
|
100
|
+
* // Outputs: [ // __listOfOutput // required
|
|
101
|
+
* // { // Output
|
|
102
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
103
|
+
* // Description: "STRING_VALUE",
|
|
104
|
+
* // Destination: "STRING_VALUE",
|
|
105
|
+
* // Encryption: {
|
|
106
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
107
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
108
|
+
* // DeviceId: "STRING_VALUE",
|
|
109
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
110
|
+
* // Region: "STRING_VALUE",
|
|
111
|
+
* // ResourceId: "STRING_VALUE",
|
|
112
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
113
|
+
* // SecretArn: "STRING_VALUE",
|
|
114
|
+
* // Url: "STRING_VALUE",
|
|
115
|
+
* // },
|
|
116
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
117
|
+
* // ListenerAddress: "STRING_VALUE",
|
|
118
|
+
* // MediaLiveInputArn: "STRING_VALUE",
|
|
119
|
+
* // MediaStreamOutputConfigurations: [ // __listOfMediaStreamOutputConfiguration
|
|
120
|
+
* // { // MediaStreamOutputConfiguration
|
|
121
|
+
* // DestinationConfigurations: [ // __listOfDestinationConfiguration
|
|
122
|
+
* // { // DestinationConfiguration
|
|
123
|
+
* // DestinationIp: "STRING_VALUE", // required
|
|
124
|
+
* // DestinationPort: Number("int"), // required
|
|
125
|
+
* // Interface: { // Interface
|
|
126
|
+
* // Name: "STRING_VALUE", // required
|
|
127
|
+
* // },
|
|
128
|
+
* // OutboundIp: "STRING_VALUE", // required
|
|
129
|
+
* // },
|
|
130
|
+
* // ],
|
|
131
|
+
* // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
132
|
+
* // EncodingParameters: { // EncodingParameters
|
|
133
|
+
* // CompressionFactor: Number("double"), // required
|
|
134
|
+
* // EncoderProfile: "main" || "high", // required
|
|
135
|
+
* // },
|
|
136
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
137
|
+
* // },
|
|
138
|
+
* // ],
|
|
139
|
+
* // Name: "STRING_VALUE", // required
|
|
140
|
+
* // OutputArn: "STRING_VALUE", // required
|
|
141
|
+
* // Port: Number("int"),
|
|
142
|
+
* // Transport: { // Transport
|
|
143
|
+
* // CidrAllowList: [
|
|
144
|
+
* // "STRING_VALUE",
|
|
145
|
+
* // ],
|
|
146
|
+
* // MaxBitrate: Number("int"),
|
|
147
|
+
* // MaxLatency: Number("int"),
|
|
148
|
+
* // MaxSyncBuffer: Number("int"),
|
|
149
|
+
* // MinLatency: Number("int"),
|
|
150
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
151
|
+
* // RemoteId: "STRING_VALUE",
|
|
152
|
+
* // SenderControlPort: Number("int"),
|
|
153
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
154
|
+
* // SmoothingLatency: Number("int"),
|
|
155
|
+
* // SourceListenerAddress: "STRING_VALUE",
|
|
156
|
+
* // SourceListenerPort: Number("int"),
|
|
157
|
+
* // StreamId: "STRING_VALUE",
|
|
158
|
+
* // },
|
|
159
|
+
* // VpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
160
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
161
|
+
* // },
|
|
162
|
+
* // BridgeArn: "STRING_VALUE",
|
|
163
|
+
* // BridgePorts: [ // __listOf__integer
|
|
164
|
+
* // Number("int"),
|
|
165
|
+
* // ],
|
|
166
|
+
* // },
|
|
167
|
+
* // ],
|
|
168
|
+
* // Source: { // Source
|
|
169
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
170
|
+
* // Decryption: {
|
|
171
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
172
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
173
|
+
* // DeviceId: "STRING_VALUE",
|
|
174
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
175
|
+
* // Region: "STRING_VALUE",
|
|
176
|
+
* // ResourceId: "STRING_VALUE",
|
|
177
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
178
|
+
* // SecretArn: "STRING_VALUE",
|
|
179
|
+
* // Url: "STRING_VALUE",
|
|
180
|
+
* // },
|
|
181
|
+
* // Description: "STRING_VALUE",
|
|
182
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
183
|
+
* // IngestIp: "STRING_VALUE",
|
|
184
|
+
* // IngestPort: Number("int"),
|
|
185
|
+
* // MediaStreamSourceConfigurations: [ // __listOfMediaStreamSourceConfiguration
|
|
186
|
+
* // { // MediaStreamSourceConfiguration
|
|
187
|
+
* // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
188
|
+
* // InputConfigurations: [ // __listOfInputConfiguration
|
|
189
|
+
* // { // InputConfiguration
|
|
190
|
+
* // InputIp: "STRING_VALUE", // required
|
|
191
|
+
* // InputPort: Number("int"), // required
|
|
192
|
+
* // Interface: {
|
|
193
|
+
* // Name: "STRING_VALUE", // required
|
|
194
|
+
* // },
|
|
195
|
+
* // },
|
|
196
|
+
* // ],
|
|
197
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
198
|
+
* // },
|
|
199
|
+
* // ],
|
|
200
|
+
* // Name: "STRING_VALUE", // required
|
|
201
|
+
* // SenderControlPort: Number("int"),
|
|
202
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
203
|
+
* // SourceArn: "STRING_VALUE", // required
|
|
204
|
+
* // Transport: {
|
|
205
|
+
* // CidrAllowList: [
|
|
206
|
+
* // "STRING_VALUE",
|
|
207
|
+
* // ],
|
|
208
|
+
* // MaxBitrate: Number("int"),
|
|
209
|
+
* // MaxLatency: Number("int"),
|
|
210
|
+
* // MaxSyncBuffer: Number("int"),
|
|
211
|
+
* // MinLatency: Number("int"),
|
|
212
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
213
|
+
* // RemoteId: "STRING_VALUE",
|
|
214
|
+
* // SenderControlPort: Number("int"),
|
|
215
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
216
|
+
* // SmoothingLatency: Number("int"),
|
|
217
|
+
* // SourceListenerAddress: "STRING_VALUE",
|
|
218
|
+
* // SourceListenerPort: Number("int"),
|
|
219
|
+
* // StreamId: "STRING_VALUE",
|
|
220
|
+
* // },
|
|
221
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
222
|
+
* // WhitelistCidr: "STRING_VALUE",
|
|
223
|
+
* // GatewayBridgeSource: { // GatewayBridgeSource
|
|
224
|
+
* // BridgeArn: "STRING_VALUE", // required
|
|
225
|
+
* // VpcInterfaceAttachment: {
|
|
226
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
227
|
+
* // },
|
|
228
|
+
* // },
|
|
229
|
+
* // },
|
|
230
|
+
* // SourceFailoverConfig: { // FailoverConfig
|
|
231
|
+
* // FailoverMode: "MERGE" || "FAILOVER",
|
|
232
|
+
* // RecoveryWindow: Number("int"),
|
|
233
|
+
* // SourcePriority: { // SourcePriority
|
|
234
|
+
* // PrimarySource: "STRING_VALUE",
|
|
235
|
+
* // },
|
|
236
|
+
* // State: "ENABLED" || "DISABLED",
|
|
237
|
+
* // },
|
|
238
|
+
* // Sources: [ // __listOfSource
|
|
239
|
+
* // {
|
|
240
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
241
|
+
* // Decryption: {
|
|
242
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
243
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
244
|
+
* // DeviceId: "STRING_VALUE",
|
|
245
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
246
|
+
* // Region: "STRING_VALUE",
|
|
247
|
+
* // ResourceId: "STRING_VALUE",
|
|
248
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
249
|
+
* // SecretArn: "STRING_VALUE",
|
|
250
|
+
* // Url: "STRING_VALUE",
|
|
251
|
+
* // },
|
|
252
|
+
* // Description: "STRING_VALUE",
|
|
253
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
254
|
+
* // IngestIp: "STRING_VALUE",
|
|
255
|
+
* // IngestPort: Number("int"),
|
|
256
|
+
* // MediaStreamSourceConfigurations: [
|
|
257
|
+
* // {
|
|
258
|
+
* // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
259
|
+
* // InputConfigurations: [
|
|
260
|
+
* // {
|
|
261
|
+
* // InputIp: "STRING_VALUE", // required
|
|
262
|
+
* // InputPort: Number("int"), // required
|
|
263
|
+
* // Interface: {
|
|
264
|
+
* // Name: "STRING_VALUE", // required
|
|
265
|
+
* // },
|
|
266
|
+
* // },
|
|
267
|
+
* // ],
|
|
268
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
269
|
+
* // },
|
|
270
|
+
* // ],
|
|
271
|
+
* // Name: "STRING_VALUE", // required
|
|
272
|
+
* // SenderControlPort: Number("int"),
|
|
273
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
274
|
+
* // SourceArn: "STRING_VALUE", // required
|
|
275
|
+
* // Transport: {
|
|
276
|
+
* // CidrAllowList: [
|
|
277
|
+
* // "STRING_VALUE",
|
|
278
|
+
* // ],
|
|
279
|
+
* // MaxBitrate: Number("int"),
|
|
280
|
+
* // MaxLatency: Number("int"),
|
|
281
|
+
* // MaxSyncBuffer: Number("int"),
|
|
282
|
+
* // MinLatency: Number("int"),
|
|
283
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
284
|
+
* // RemoteId: "STRING_VALUE",
|
|
285
|
+
* // SenderControlPort: Number("int"),
|
|
286
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
287
|
+
* // SmoothingLatency: Number("int"),
|
|
288
|
+
* // SourceListenerAddress: "STRING_VALUE",
|
|
289
|
+
* // SourceListenerPort: Number("int"),
|
|
290
|
+
* // StreamId: "STRING_VALUE",
|
|
291
|
+
* // },
|
|
292
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
293
|
+
* // WhitelistCidr: "STRING_VALUE",
|
|
294
|
+
* // GatewayBridgeSource: {
|
|
295
|
+
* // BridgeArn: "STRING_VALUE", // required
|
|
296
|
+
* // VpcInterfaceAttachment: {
|
|
297
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
298
|
+
* // },
|
|
299
|
+
* // },
|
|
300
|
+
* // },
|
|
301
|
+
* // ],
|
|
302
|
+
* // Status: "STANDBY" || "ACTIVE" || "UPDATING" || "DELETING" || "STARTING" || "STOPPING" || "ERROR", // required
|
|
303
|
+
* // VpcInterfaces: [ // __listOfVpcInterface
|
|
304
|
+
* // { // VpcInterface
|
|
305
|
+
* // Name: "STRING_VALUE", // required
|
|
306
|
+
* // NetworkInterfaceIds: [ // required
|
|
307
|
+
* // "STRING_VALUE",
|
|
308
|
+
* // ],
|
|
309
|
+
* // NetworkInterfaceType: "ena" || "efa", // required
|
|
310
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
311
|
+
* // SecurityGroupIds: "<__listOf__string>", // required
|
|
312
|
+
* // SubnetId: "STRING_VALUE", // required
|
|
313
|
+
* // },
|
|
314
|
+
* // ],
|
|
315
|
+
* // Maintenance: { // Maintenance
|
|
316
|
+
* // MaintenanceDay: "Monday" || "Tuesday" || "Wednesday" || "Thursday" || "Friday" || "Saturday" || "Sunday",
|
|
317
|
+
* // MaintenanceDeadline: "STRING_VALUE",
|
|
318
|
+
* // MaintenanceScheduledDate: "STRING_VALUE",
|
|
319
|
+
* // MaintenanceStartHour: "STRING_VALUE",
|
|
320
|
+
* // },
|
|
321
|
+
* // },
|
|
322
|
+
* // };
|
|
323
|
+
*
|
|
47
324
|
* ```
|
|
48
325
|
*
|
|
49
326
|
* @param UpdateFlowCommandInput - {@link UpdateFlowCommandInput}
|
|
@@ -70,6 +347,8 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
|
|
|
70
347
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
71
348
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
72
349
|
*
|
|
350
|
+
* @throws {@link MediaConnectServiceException}
|
|
351
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
73
352
|
*
|
|
74
353
|
*/
|
|
75
354
|
export declare class UpdateFlowCommand extends $Command<UpdateFlowCommandInput, UpdateFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -48,6 +48,31 @@ export interface UpdateFlowEntitlementCommandOutput extends UpdateFlowEntitlemen
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new UpdateFlowEntitlementCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // UpdateFlowEntitlementResponse
|
|
52
|
+
* // Entitlement: { // Entitlement
|
|
53
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
54
|
+
* // Description: "STRING_VALUE",
|
|
55
|
+
* // Encryption: { // Encryption
|
|
56
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
57
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
58
|
+
* // DeviceId: "STRING_VALUE",
|
|
59
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
60
|
+
* // Region: "STRING_VALUE",
|
|
61
|
+
* // ResourceId: "STRING_VALUE",
|
|
62
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
63
|
+
* // SecretArn: "STRING_VALUE",
|
|
64
|
+
* // Url: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // EntitlementArn: "STRING_VALUE", // required
|
|
67
|
+
* // EntitlementStatus: "ENABLED" || "DISABLED",
|
|
68
|
+
* // Name: "STRING_VALUE", // required
|
|
69
|
+
* // Subscribers: [ // __listOf__string // required
|
|
70
|
+
* // "STRING_VALUE",
|
|
71
|
+
* // ],
|
|
72
|
+
* // },
|
|
73
|
+
* // FlowArn: "STRING_VALUE",
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
51
76
|
* ```
|
|
52
77
|
*
|
|
53
78
|
* @param UpdateFlowEntitlementCommandInput - {@link UpdateFlowEntitlementCommandInput}
|
|
@@ -74,6 +99,8 @@ export interface UpdateFlowEntitlementCommandOutput extends UpdateFlowEntitlemen
|
|
|
74
99
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
75
100
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
76
101
|
*
|
|
102
|
+
* @throws {@link MediaConnectServiceException}
|
|
103
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
77
104
|
*
|
|
78
105
|
*/
|
|
79
106
|
export declare class UpdateFlowEntitlementCommand extends $Command<UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -48,6 +48,31 @@ export interface UpdateFlowMediaStreamCommandOutput extends UpdateFlowMediaStrea
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new UpdateFlowMediaStreamCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // UpdateFlowMediaStreamResponse
|
|
52
|
+
* // FlowArn: "STRING_VALUE",
|
|
53
|
+
* // MediaStream: { // MediaStream
|
|
54
|
+
* // Attributes: { // MediaStreamAttributes
|
|
55
|
+
* // Fmtp: { // Fmtp
|
|
56
|
+
* // ChannelOrder: "STRING_VALUE",
|
|
57
|
+
* // Colorimetry: "BT601" || "BT709" || "BT2020" || "BT2100" || "ST2065-1" || "ST2065-3" || "XYZ",
|
|
58
|
+
* // ExactFramerate: "STRING_VALUE",
|
|
59
|
+
* // Par: "STRING_VALUE",
|
|
60
|
+
* // Range: "NARROW" || "FULL" || "FULLPROTECT",
|
|
61
|
+
* // ScanMode: "progressive" || "interlace" || "progressive-segmented-frame",
|
|
62
|
+
* // Tcs: "SDR" || "PQ" || "HLG" || "LINEAR" || "BT2100LINPQ" || "BT2100LINHLG" || "ST2065-1" || "ST428-1" || "DENSITY",
|
|
63
|
+
* // },
|
|
64
|
+
* // Lang: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // ClockRate: Number("int"),
|
|
67
|
+
* // Description: "STRING_VALUE",
|
|
68
|
+
* // Fmt: Number("int"), // required
|
|
69
|
+
* // MediaStreamId: Number("int"), // required
|
|
70
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
71
|
+
* // MediaStreamType: "video" || "audio" || "ancillary-data", // required
|
|
72
|
+
* // VideoFormat: "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
51
76
|
* ```
|
|
52
77
|
*
|
|
53
78
|
* @param UpdateFlowMediaStreamCommandInput - {@link UpdateFlowMediaStreamCommandInput}
|
|
@@ -74,6 +99,8 @@ export interface UpdateFlowMediaStreamCommandOutput extends UpdateFlowMediaStrea
|
|
|
74
99
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
75
100
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
76
101
|
*
|
|
102
|
+
* @throws {@link MediaConnectServiceException}
|
|
103
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
77
104
|
*
|
|
78
105
|
*/
|
|
79
106
|
export declare class UpdateFlowMediaStreamCommand extends $Command<UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -79,6 +79,76 @@ export interface UpdateFlowOutputCommandOutput extends UpdateFlowOutputResponse,
|
|
|
79
79
|
* };
|
|
80
80
|
* const command = new UpdateFlowOutputCommand(input);
|
|
81
81
|
* const response = await client.send(command);
|
|
82
|
+
* // { // UpdateFlowOutputResponse
|
|
83
|
+
* // FlowArn: "STRING_VALUE",
|
|
84
|
+
* // Output: { // Output
|
|
85
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
86
|
+
* // Description: "STRING_VALUE",
|
|
87
|
+
* // Destination: "STRING_VALUE",
|
|
88
|
+
* // Encryption: { // Encryption
|
|
89
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
90
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
91
|
+
* // DeviceId: "STRING_VALUE",
|
|
92
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
93
|
+
* // Region: "STRING_VALUE",
|
|
94
|
+
* // ResourceId: "STRING_VALUE",
|
|
95
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
96
|
+
* // SecretArn: "STRING_VALUE",
|
|
97
|
+
* // Url: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
99
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
100
|
+
* // ListenerAddress: "STRING_VALUE",
|
|
101
|
+
* // MediaLiveInputArn: "STRING_VALUE",
|
|
102
|
+
* // MediaStreamOutputConfigurations: [ // __listOfMediaStreamOutputConfiguration
|
|
103
|
+
* // { // MediaStreamOutputConfiguration
|
|
104
|
+
* // DestinationConfigurations: [ // __listOfDestinationConfiguration
|
|
105
|
+
* // { // DestinationConfiguration
|
|
106
|
+
* // DestinationIp: "STRING_VALUE", // required
|
|
107
|
+
* // DestinationPort: Number("int"), // required
|
|
108
|
+
* // Interface: { // Interface
|
|
109
|
+
* // Name: "STRING_VALUE", // required
|
|
110
|
+
* // },
|
|
111
|
+
* // OutboundIp: "STRING_VALUE", // required
|
|
112
|
+
* // },
|
|
113
|
+
* // ],
|
|
114
|
+
* // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
115
|
+
* // EncodingParameters: { // EncodingParameters
|
|
116
|
+
* // CompressionFactor: Number("double"), // required
|
|
117
|
+
* // EncoderProfile: "main" || "high", // required
|
|
118
|
+
* // },
|
|
119
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
120
|
+
* // },
|
|
121
|
+
* // ],
|
|
122
|
+
* // Name: "STRING_VALUE", // required
|
|
123
|
+
* // OutputArn: "STRING_VALUE", // required
|
|
124
|
+
* // Port: Number("int"),
|
|
125
|
+
* // Transport: { // Transport
|
|
126
|
+
* // CidrAllowList: [ // __listOf__string
|
|
127
|
+
* // "STRING_VALUE",
|
|
128
|
+
* // ],
|
|
129
|
+
* // MaxBitrate: Number("int"),
|
|
130
|
+
* // MaxLatency: Number("int"),
|
|
131
|
+
* // MaxSyncBuffer: Number("int"),
|
|
132
|
+
* // MinLatency: Number("int"),
|
|
133
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
134
|
+
* // RemoteId: "STRING_VALUE",
|
|
135
|
+
* // SenderControlPort: Number("int"),
|
|
136
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
137
|
+
* // SmoothingLatency: Number("int"),
|
|
138
|
+
* // SourceListenerAddress: "STRING_VALUE",
|
|
139
|
+
* // SourceListenerPort: Number("int"),
|
|
140
|
+
* // StreamId: "STRING_VALUE",
|
|
141
|
+
* // },
|
|
142
|
+
* // VpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
143
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
144
|
+
* // },
|
|
145
|
+
* // BridgeArn: "STRING_VALUE",
|
|
146
|
+
* // BridgePorts: [ // __listOf__integer
|
|
147
|
+
* // Number("int"),
|
|
148
|
+
* // ],
|
|
149
|
+
* // },
|
|
150
|
+
* // };
|
|
151
|
+
*
|
|
82
152
|
* ```
|
|
83
153
|
*
|
|
84
154
|
* @param UpdateFlowOutputCommandInput - {@link UpdateFlowOutputCommandInput}
|
|
@@ -105,6 +175,8 @@ export interface UpdateFlowOutputCommandOutput extends UpdateFlowOutputResponse,
|
|
|
105
175
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
106
176
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
107
177
|
*
|
|
178
|
+
* @throws {@link MediaConnectServiceException}
|
|
179
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
108
180
|
*
|
|
109
181
|
*/
|
|
110
182
|
export declare class UpdateFlowOutputCommand extends $Command<UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -78,6 +78,72 @@ export interface UpdateFlowSourceCommandOutput extends UpdateFlowSourceResponse,
|
|
|
78
78
|
* };
|
|
79
79
|
* const command = new UpdateFlowSourceCommand(input);
|
|
80
80
|
* const response = await client.send(command);
|
|
81
|
+
* // { // UpdateFlowSourceResponse
|
|
82
|
+
* // FlowArn: "STRING_VALUE",
|
|
83
|
+
* // Source: { // Source
|
|
84
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
85
|
+
* // Decryption: { // Encryption
|
|
86
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
87
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
88
|
+
* // DeviceId: "STRING_VALUE",
|
|
89
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
90
|
+
* // Region: "STRING_VALUE",
|
|
91
|
+
* // ResourceId: "STRING_VALUE",
|
|
92
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
93
|
+
* // SecretArn: "STRING_VALUE",
|
|
94
|
+
* // Url: "STRING_VALUE",
|
|
95
|
+
* // },
|
|
96
|
+
* // Description: "STRING_VALUE",
|
|
97
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
98
|
+
* // IngestIp: "STRING_VALUE",
|
|
99
|
+
* // IngestPort: Number("int"),
|
|
100
|
+
* // MediaStreamSourceConfigurations: [ // __listOfMediaStreamSourceConfiguration
|
|
101
|
+
* // { // MediaStreamSourceConfiguration
|
|
102
|
+
* // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
103
|
+
* // InputConfigurations: [ // __listOfInputConfiguration
|
|
104
|
+
* // { // InputConfiguration
|
|
105
|
+
* // InputIp: "STRING_VALUE", // required
|
|
106
|
+
* // InputPort: Number("int"), // required
|
|
107
|
+
* // Interface: { // Interface
|
|
108
|
+
* // Name: "STRING_VALUE", // required
|
|
109
|
+
* // },
|
|
110
|
+
* // },
|
|
111
|
+
* // ],
|
|
112
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
113
|
+
* // },
|
|
114
|
+
* // ],
|
|
115
|
+
* // Name: "STRING_VALUE", // required
|
|
116
|
+
* // SenderControlPort: Number("int"),
|
|
117
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
118
|
+
* // SourceArn: "STRING_VALUE", // required
|
|
119
|
+
* // Transport: { // Transport
|
|
120
|
+
* // CidrAllowList: [ // __listOf__string
|
|
121
|
+
* // "STRING_VALUE",
|
|
122
|
+
* // ],
|
|
123
|
+
* // MaxBitrate: Number("int"),
|
|
124
|
+
* // MaxLatency: Number("int"),
|
|
125
|
+
* // MaxSyncBuffer: Number("int"),
|
|
126
|
+
* // MinLatency: Number("int"),
|
|
127
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
128
|
+
* // RemoteId: "STRING_VALUE",
|
|
129
|
+
* // SenderControlPort: Number("int"),
|
|
130
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
131
|
+
* // SmoothingLatency: Number("int"),
|
|
132
|
+
* // SourceListenerAddress: "STRING_VALUE",
|
|
133
|
+
* // SourceListenerPort: Number("int"),
|
|
134
|
+
* // StreamId: "STRING_VALUE",
|
|
135
|
+
* // },
|
|
136
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
137
|
+
* // WhitelistCidr: "STRING_VALUE",
|
|
138
|
+
* // GatewayBridgeSource: { // GatewayBridgeSource
|
|
139
|
+
* // BridgeArn: "STRING_VALUE", // required
|
|
140
|
+
* // VpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
141
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
142
|
+
* // },
|
|
143
|
+
* // },
|
|
144
|
+
* // },
|
|
145
|
+
* // };
|
|
146
|
+
*
|
|
81
147
|
* ```
|
|
82
148
|
*
|
|
83
149
|
* @param UpdateFlowSourceCommandInput - {@link UpdateFlowSourceCommandInput}
|
|
@@ -104,6 +170,8 @@ export interface UpdateFlowSourceCommandOutput extends UpdateFlowSourceResponse,
|
|
|
104
170
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
105
171
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
106
172
|
*
|
|
173
|
+
* @throws {@link MediaConnectServiceException}
|
|
174
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
107
175
|
*
|
|
108
176
|
*/
|
|
109
177
|
export declare class UpdateFlowSourceCommand extends $Command<UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface UpdateGatewayInstanceCommandOutput extends UpdateGatewayInstanc
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateGatewayInstanceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateGatewayInstanceResponse
|
|
36
|
+
* // BridgePlacement: "AVAILABLE" || "LOCKED",
|
|
37
|
+
* // GatewayInstanceArn: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param UpdateGatewayInstanceCommandInput - {@link UpdateGatewayInstanceCommandInput}
|
|
@@ -61,6 +66,8 @@ export interface UpdateGatewayInstanceCommandOutput extends UpdateGatewayInstanc
|
|
|
61
66
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
62
67
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
63
68
|
*
|
|
69
|
+
* @throws {@link MediaConnectServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
64
71
|
*
|
|
65
72
|
*/
|
|
66
73
|
export declare class UpdateGatewayInstanceCommand extends $Command<UpdateGatewayInstanceCommandInput, UpdateGatewayInstanceCommandOutput, MediaConnectClientResolvedConfig> {
|
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.327.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.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.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",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|