@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
|
@@ -250,6 +250,283 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
250
250
|
* };
|
|
251
251
|
* const command = new CreateFlowCommand(input);
|
|
252
252
|
* const response = await client.send(command);
|
|
253
|
+
* // { // CreateFlowResponse
|
|
254
|
+
* // Flow: { // Flow
|
|
255
|
+
* // AvailabilityZone: "STRING_VALUE", // required
|
|
256
|
+
* // Description: "STRING_VALUE",
|
|
257
|
+
* // EgressIp: "STRING_VALUE",
|
|
258
|
+
* // Entitlements: [ // __listOfEntitlement // required
|
|
259
|
+
* // { // Entitlement
|
|
260
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
261
|
+
* // Description: "STRING_VALUE",
|
|
262
|
+
* // Encryption: { // Encryption
|
|
263
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
264
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
265
|
+
* // DeviceId: "STRING_VALUE",
|
|
266
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
267
|
+
* // Region: "STRING_VALUE",
|
|
268
|
+
* // ResourceId: "STRING_VALUE",
|
|
269
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
270
|
+
* // SecretArn: "STRING_VALUE",
|
|
271
|
+
* // Url: "STRING_VALUE",
|
|
272
|
+
* // },
|
|
273
|
+
* // EntitlementArn: "STRING_VALUE", // required
|
|
274
|
+
* // EntitlementStatus: "ENABLED" || "DISABLED",
|
|
275
|
+
* // Name: "STRING_VALUE", // required
|
|
276
|
+
* // Subscribers: [ // __listOf__string // required
|
|
277
|
+
* // "STRING_VALUE",
|
|
278
|
+
* // ],
|
|
279
|
+
* // },
|
|
280
|
+
* // ],
|
|
281
|
+
* // FlowArn: "STRING_VALUE", // required
|
|
282
|
+
* // MediaStreams: [ // __listOfMediaStream
|
|
283
|
+
* // { // MediaStream
|
|
284
|
+
* // Attributes: { // MediaStreamAttributes
|
|
285
|
+
* // Fmtp: { // Fmtp
|
|
286
|
+
* // ChannelOrder: "STRING_VALUE",
|
|
287
|
+
* // Colorimetry: "BT601" || "BT709" || "BT2020" || "BT2100" || "ST2065-1" || "ST2065-3" || "XYZ",
|
|
288
|
+
* // ExactFramerate: "STRING_VALUE",
|
|
289
|
+
* // Par: "STRING_VALUE",
|
|
290
|
+
* // Range: "NARROW" || "FULL" || "FULLPROTECT",
|
|
291
|
+
* // ScanMode: "progressive" || "interlace" || "progressive-segmented-frame",
|
|
292
|
+
* // Tcs: "SDR" || "PQ" || "HLG" || "LINEAR" || "BT2100LINPQ" || "BT2100LINHLG" || "ST2065-1" || "ST428-1" || "DENSITY",
|
|
293
|
+
* // },
|
|
294
|
+
* // Lang: "STRING_VALUE",
|
|
295
|
+
* // },
|
|
296
|
+
* // ClockRate: Number("int"),
|
|
297
|
+
* // Description: "STRING_VALUE",
|
|
298
|
+
* // Fmt: Number("int"), // required
|
|
299
|
+
* // MediaStreamId: Number("int"), // required
|
|
300
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
301
|
+
* // MediaStreamType: "video" || "audio" || "ancillary-data", // required
|
|
302
|
+
* // VideoFormat: "STRING_VALUE",
|
|
303
|
+
* // },
|
|
304
|
+
* // ],
|
|
305
|
+
* // Name: "STRING_VALUE", // required
|
|
306
|
+
* // Outputs: [ // __listOfOutput // required
|
|
307
|
+
* // { // Output
|
|
308
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
309
|
+
* // Description: "STRING_VALUE",
|
|
310
|
+
* // Destination: "STRING_VALUE",
|
|
311
|
+
* // Encryption: {
|
|
312
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
313
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
314
|
+
* // DeviceId: "STRING_VALUE",
|
|
315
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
316
|
+
* // Region: "STRING_VALUE",
|
|
317
|
+
* // ResourceId: "STRING_VALUE",
|
|
318
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
319
|
+
* // SecretArn: "STRING_VALUE",
|
|
320
|
+
* // Url: "STRING_VALUE",
|
|
321
|
+
* // },
|
|
322
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
323
|
+
* // ListenerAddress: "STRING_VALUE",
|
|
324
|
+
* // MediaLiveInputArn: "STRING_VALUE",
|
|
325
|
+
* // MediaStreamOutputConfigurations: [ // __listOfMediaStreamOutputConfiguration
|
|
326
|
+
* // { // MediaStreamOutputConfiguration
|
|
327
|
+
* // DestinationConfigurations: [ // __listOfDestinationConfiguration
|
|
328
|
+
* // { // DestinationConfiguration
|
|
329
|
+
* // DestinationIp: "STRING_VALUE", // required
|
|
330
|
+
* // DestinationPort: Number("int"), // required
|
|
331
|
+
* // Interface: { // Interface
|
|
332
|
+
* // Name: "STRING_VALUE", // required
|
|
333
|
+
* // },
|
|
334
|
+
* // OutboundIp: "STRING_VALUE", // required
|
|
335
|
+
* // },
|
|
336
|
+
* // ],
|
|
337
|
+
* // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
338
|
+
* // EncodingParameters: { // EncodingParameters
|
|
339
|
+
* // CompressionFactor: Number("double"), // required
|
|
340
|
+
* // EncoderProfile: "main" || "high", // required
|
|
341
|
+
* // },
|
|
342
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
343
|
+
* // },
|
|
344
|
+
* // ],
|
|
345
|
+
* // Name: "STRING_VALUE", // required
|
|
346
|
+
* // OutputArn: "STRING_VALUE", // required
|
|
347
|
+
* // Port: Number("int"),
|
|
348
|
+
* // Transport: { // Transport
|
|
349
|
+
* // CidrAllowList: [
|
|
350
|
+
* // "STRING_VALUE",
|
|
351
|
+
* // ],
|
|
352
|
+
* // MaxBitrate: Number("int"),
|
|
353
|
+
* // MaxLatency: Number("int"),
|
|
354
|
+
* // MaxSyncBuffer: Number("int"),
|
|
355
|
+
* // MinLatency: Number("int"),
|
|
356
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
357
|
+
* // RemoteId: "STRING_VALUE",
|
|
358
|
+
* // SenderControlPort: Number("int"),
|
|
359
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
360
|
+
* // SmoothingLatency: Number("int"),
|
|
361
|
+
* // SourceListenerAddress: "STRING_VALUE",
|
|
362
|
+
* // SourceListenerPort: Number("int"),
|
|
363
|
+
* // StreamId: "STRING_VALUE",
|
|
364
|
+
* // },
|
|
365
|
+
* // VpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
366
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
367
|
+
* // },
|
|
368
|
+
* // BridgeArn: "STRING_VALUE",
|
|
369
|
+
* // BridgePorts: [ // __listOf__integer
|
|
370
|
+
* // Number("int"),
|
|
371
|
+
* // ],
|
|
372
|
+
* // },
|
|
373
|
+
* // ],
|
|
374
|
+
* // Source: { // Source
|
|
375
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
376
|
+
* // Decryption: {
|
|
377
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
378
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
379
|
+
* // DeviceId: "STRING_VALUE",
|
|
380
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
381
|
+
* // Region: "STRING_VALUE",
|
|
382
|
+
* // ResourceId: "STRING_VALUE",
|
|
383
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
384
|
+
* // SecretArn: "STRING_VALUE",
|
|
385
|
+
* // Url: "STRING_VALUE",
|
|
386
|
+
* // },
|
|
387
|
+
* // Description: "STRING_VALUE",
|
|
388
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
389
|
+
* // IngestIp: "STRING_VALUE",
|
|
390
|
+
* // IngestPort: Number("int"),
|
|
391
|
+
* // MediaStreamSourceConfigurations: [ // __listOfMediaStreamSourceConfiguration
|
|
392
|
+
* // { // MediaStreamSourceConfiguration
|
|
393
|
+
* // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
394
|
+
* // InputConfigurations: [ // __listOfInputConfiguration
|
|
395
|
+
* // { // InputConfiguration
|
|
396
|
+
* // InputIp: "STRING_VALUE", // required
|
|
397
|
+
* // InputPort: Number("int"), // required
|
|
398
|
+
* // Interface: {
|
|
399
|
+
* // Name: "STRING_VALUE", // required
|
|
400
|
+
* // },
|
|
401
|
+
* // },
|
|
402
|
+
* // ],
|
|
403
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
404
|
+
* // },
|
|
405
|
+
* // ],
|
|
406
|
+
* // Name: "STRING_VALUE", // required
|
|
407
|
+
* // SenderControlPort: Number("int"),
|
|
408
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
409
|
+
* // SourceArn: "STRING_VALUE", // required
|
|
410
|
+
* // Transport: {
|
|
411
|
+
* // CidrAllowList: [
|
|
412
|
+
* // "STRING_VALUE",
|
|
413
|
+
* // ],
|
|
414
|
+
* // MaxBitrate: Number("int"),
|
|
415
|
+
* // MaxLatency: Number("int"),
|
|
416
|
+
* // MaxSyncBuffer: Number("int"),
|
|
417
|
+
* // MinLatency: Number("int"),
|
|
418
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
419
|
+
* // RemoteId: "STRING_VALUE",
|
|
420
|
+
* // SenderControlPort: Number("int"),
|
|
421
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
422
|
+
* // SmoothingLatency: Number("int"),
|
|
423
|
+
* // SourceListenerAddress: "STRING_VALUE",
|
|
424
|
+
* // SourceListenerPort: Number("int"),
|
|
425
|
+
* // StreamId: "STRING_VALUE",
|
|
426
|
+
* // },
|
|
427
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
428
|
+
* // WhitelistCidr: "STRING_VALUE",
|
|
429
|
+
* // GatewayBridgeSource: { // GatewayBridgeSource
|
|
430
|
+
* // BridgeArn: "STRING_VALUE", // required
|
|
431
|
+
* // VpcInterfaceAttachment: {
|
|
432
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
433
|
+
* // },
|
|
434
|
+
* // },
|
|
435
|
+
* // },
|
|
436
|
+
* // SourceFailoverConfig: { // FailoverConfig
|
|
437
|
+
* // FailoverMode: "MERGE" || "FAILOVER",
|
|
438
|
+
* // RecoveryWindow: Number("int"),
|
|
439
|
+
* // SourcePriority: { // SourcePriority
|
|
440
|
+
* // PrimarySource: "STRING_VALUE",
|
|
441
|
+
* // },
|
|
442
|
+
* // State: "ENABLED" || "DISABLED",
|
|
443
|
+
* // },
|
|
444
|
+
* // Sources: [ // __listOfSource
|
|
445
|
+
* // {
|
|
446
|
+
* // DataTransferSubscriberFeePercent: Number("int"),
|
|
447
|
+
* // Decryption: {
|
|
448
|
+
* // Algorithm: "aes128" || "aes192" || "aes256",
|
|
449
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
450
|
+
* // DeviceId: "STRING_VALUE",
|
|
451
|
+
* // KeyType: "speke" || "static-key" || "srt-password",
|
|
452
|
+
* // Region: "STRING_VALUE",
|
|
453
|
+
* // ResourceId: "STRING_VALUE",
|
|
454
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
455
|
+
* // SecretArn: "STRING_VALUE",
|
|
456
|
+
* // Url: "STRING_VALUE",
|
|
457
|
+
* // },
|
|
458
|
+
* // Description: "STRING_VALUE",
|
|
459
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
460
|
+
* // IngestIp: "STRING_VALUE",
|
|
461
|
+
* // IngestPort: Number("int"),
|
|
462
|
+
* // MediaStreamSourceConfigurations: [
|
|
463
|
+
* // {
|
|
464
|
+
* // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
|
|
465
|
+
* // InputConfigurations: [
|
|
466
|
+
* // {
|
|
467
|
+
* // InputIp: "STRING_VALUE", // required
|
|
468
|
+
* // InputPort: Number("int"), // required
|
|
469
|
+
* // Interface: {
|
|
470
|
+
* // Name: "STRING_VALUE", // required
|
|
471
|
+
* // },
|
|
472
|
+
* // },
|
|
473
|
+
* // ],
|
|
474
|
+
* // MediaStreamName: "STRING_VALUE", // required
|
|
475
|
+
* // },
|
|
476
|
+
* // ],
|
|
477
|
+
* // Name: "STRING_VALUE", // required
|
|
478
|
+
* // SenderControlPort: Number("int"),
|
|
479
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
480
|
+
* // SourceArn: "STRING_VALUE", // required
|
|
481
|
+
* // Transport: {
|
|
482
|
+
* // CidrAllowList: [
|
|
483
|
+
* // "STRING_VALUE",
|
|
484
|
+
* // ],
|
|
485
|
+
* // MaxBitrate: Number("int"),
|
|
486
|
+
* // MaxLatency: Number("int"),
|
|
487
|
+
* // MaxSyncBuffer: Number("int"),
|
|
488
|
+
* // MinLatency: Number("int"),
|
|
489
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
490
|
+
* // RemoteId: "STRING_VALUE",
|
|
491
|
+
* // SenderControlPort: Number("int"),
|
|
492
|
+
* // SenderIpAddress: "STRING_VALUE",
|
|
493
|
+
* // SmoothingLatency: Number("int"),
|
|
494
|
+
* // SourceListenerAddress: "STRING_VALUE",
|
|
495
|
+
* // SourceListenerPort: Number("int"),
|
|
496
|
+
* // StreamId: "STRING_VALUE",
|
|
497
|
+
* // },
|
|
498
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
499
|
+
* // WhitelistCidr: "STRING_VALUE",
|
|
500
|
+
* // GatewayBridgeSource: {
|
|
501
|
+
* // BridgeArn: "STRING_VALUE", // required
|
|
502
|
+
* // VpcInterfaceAttachment: {
|
|
503
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
504
|
+
* // },
|
|
505
|
+
* // },
|
|
506
|
+
* // },
|
|
507
|
+
* // ],
|
|
508
|
+
* // Status: "STANDBY" || "ACTIVE" || "UPDATING" || "DELETING" || "STARTING" || "STOPPING" || "ERROR", // required
|
|
509
|
+
* // VpcInterfaces: [ // __listOfVpcInterface
|
|
510
|
+
* // { // VpcInterface
|
|
511
|
+
* // Name: "STRING_VALUE", // required
|
|
512
|
+
* // NetworkInterfaceIds: [ // required
|
|
513
|
+
* // "STRING_VALUE",
|
|
514
|
+
* // ],
|
|
515
|
+
* // NetworkInterfaceType: "ena" || "efa", // required
|
|
516
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
517
|
+
* // SecurityGroupIds: "<__listOf__string>", // required
|
|
518
|
+
* // SubnetId: "STRING_VALUE", // required
|
|
519
|
+
* // },
|
|
520
|
+
* // ],
|
|
521
|
+
* // Maintenance: { // Maintenance
|
|
522
|
+
* // MaintenanceDay: "Monday" || "Tuesday" || "Wednesday" || "Thursday" || "Friday" || "Saturday" || "Sunday",
|
|
523
|
+
* // MaintenanceDeadline: "STRING_VALUE",
|
|
524
|
+
* // MaintenanceScheduledDate: "STRING_VALUE",
|
|
525
|
+
* // MaintenanceStartHour: "STRING_VALUE",
|
|
526
|
+
* // },
|
|
527
|
+
* // },
|
|
528
|
+
* // };
|
|
529
|
+
*
|
|
253
530
|
* ```
|
|
254
531
|
*
|
|
255
532
|
* @param CreateFlowCommandInput - {@link CreateFlowCommandInput}
|
|
@@ -276,6 +553,8 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
276
553
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
277
554
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
278
555
|
*
|
|
556
|
+
* @throws {@link MediaConnectServiceException}
|
|
557
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
279
558
|
*
|
|
280
559
|
*/
|
|
281
560
|
export declare class CreateFlowCommand extends $Command<CreateFlowCommandInput, CreateFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -40,6 +40,30 @@ export interface CreateGatewayCommandOutput extends CreateGatewayResponse, __Met
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new CreateGatewayCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // CreateGatewayResponse
|
|
44
|
+
* // Gateway: { // Gateway
|
|
45
|
+
* // EgressCidrBlocks: [ // __listOf__string // required
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // GatewayArn: "STRING_VALUE", // required
|
|
49
|
+
* // GatewayMessages: [ // __listOfMessageDetail
|
|
50
|
+
* // { // MessageDetail
|
|
51
|
+
* // Code: "STRING_VALUE", // required
|
|
52
|
+
* // Message: "STRING_VALUE", // required
|
|
53
|
+
* // ResourceName: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // GatewayState: "CREATING" || "ACTIVE" || "UPDATING" || "ERROR" || "DELETING" || "DELETED",
|
|
57
|
+
* // Name: "STRING_VALUE", // required
|
|
58
|
+
* // Networks: [ // __listOfGatewayNetwork // required
|
|
59
|
+
* // { // GatewayNetwork
|
|
60
|
+
* // CidrBlock: "STRING_VALUE", // required
|
|
61
|
+
* // Name: "STRING_VALUE", // required
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // },
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
43
67
|
* ```
|
|
44
68
|
*
|
|
45
69
|
* @param CreateGatewayCommandInput - {@link CreateGatewayCommandInput}
|
|
@@ -69,6 +93,8 @@ export interface CreateGatewayCommandOutput extends CreateGatewayResponse, __Met
|
|
|
69
93
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
70
94
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
71
95
|
*
|
|
96
|
+
* @throws {@link MediaConnectServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
72
98
|
*
|
|
73
99
|
*/
|
|
74
100
|
export declare class CreateGatewayCommand extends $Command<CreateGatewayCommandInput, CreateGatewayCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface DeleteBridgeCommandOutput extends DeleteBridgeResponse, __Metad
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteBridgeCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteBridgeResponse
|
|
35
|
+
* // BridgeArn: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param DeleteBridgeCommandInput - {@link DeleteBridgeCommandInput}
|
|
@@ -60,6 +64,8 @@ export interface DeleteBridgeCommandOutput extends DeleteBridgeResponse, __Metad
|
|
|
60
64
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
61
65
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
62
66
|
*
|
|
67
|
+
* @throws {@link MediaConnectServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
63
69
|
*
|
|
64
70
|
*/
|
|
65
71
|
export declare class DeleteBridgeCommand extends $Command<DeleteBridgeCommandInput, DeleteBridgeCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,11 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteFlowCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteFlowResponse
|
|
35
|
+
* // FlowArn: "STRING_VALUE",
|
|
36
|
+
* // Status: "STANDBY" || "ACTIVE" || "UPDATING" || "DELETING" || "STARTING" || "STOPPING" || "ERROR",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
36
41
|
* @param DeleteFlowCommandInput - {@link DeleteFlowCommandInput}
|
|
@@ -57,6 +62,8 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB
|
|
|
57
62
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
58
63
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
59
64
|
*
|
|
65
|
+
* @throws {@link MediaConnectServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
60
67
|
*
|
|
61
68
|
*/
|
|
62
69
|
export declare class DeleteFlowCommand extends $Command<DeleteFlowCommandInput, DeleteFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface DeleteGatewayCommandOutput extends DeleteGatewayResponse, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteGatewayCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteGatewayResponse
|
|
35
|
+
* // GatewayArn: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param DeleteGatewayCommandInput - {@link DeleteGatewayCommandInput}
|
|
@@ -60,6 +64,8 @@ export interface DeleteGatewayCommandOutput extends DeleteGatewayResponse, __Met
|
|
|
60
64
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
61
65
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
62
66
|
*
|
|
67
|
+
* @throws {@link MediaConnectServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
63
69
|
*
|
|
64
70
|
*/
|
|
65
71
|
export declare class DeleteGatewayCommand extends $Command<DeleteGatewayCommandInput, DeleteGatewayCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface DeregisterGatewayInstanceCommandOutput extends DeregisterGatewa
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeregisterGatewayInstanceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeregisterGatewayInstanceResponse
|
|
36
|
+
* // GatewayInstanceArn: "STRING_VALUE",
|
|
37
|
+
* // InstanceState: "REGISTERING" || "ACTIVE" || "DEREGISTERING" || "DEREGISTERED" || "REGISTRATION_ERROR" || "DEREGISTRATION_ERROR",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param DeregisterGatewayInstanceCommandInput - {@link DeregisterGatewayInstanceCommandInput}
|
|
@@ -61,6 +66,8 @@ export interface DeregisterGatewayInstanceCommandOutput extends DeregisterGatewa
|
|
|
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 DeregisterGatewayInstanceCommand extends $Command<DeregisterGatewayInstanceCommandInput, DeregisterGatewayInstanceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,75 @@ export interface DescribeBridgeCommandOutput extends DescribeBridgeResponse, __M
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeBridgeCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeBridgeResponse
|
|
35
|
+
* // Bridge: { // Bridge
|
|
36
|
+
* // BridgeArn: "STRING_VALUE", // required
|
|
37
|
+
* // BridgeMessages: [ // __listOfMessageDetail
|
|
38
|
+
* // { // MessageDetail
|
|
39
|
+
* // Code: "STRING_VALUE", // required
|
|
40
|
+
* // Message: "STRING_VALUE", // required
|
|
41
|
+
* // ResourceName: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // ],
|
|
44
|
+
* // BridgeState: "CREATING" || "STANDBY" || "STARTING" || "DEPLOYING" || "ACTIVE" || "STOPPING" || "DELETING" || "DELETED" || "START_FAILED" || "START_PENDING" || "STOP_FAILED" || "UPDATING", // required
|
|
45
|
+
* // EgressGatewayBridge: { // EgressGatewayBridge
|
|
46
|
+
* // InstanceId: "STRING_VALUE",
|
|
47
|
+
* // MaxBitrate: Number("int"), // required
|
|
48
|
+
* // },
|
|
49
|
+
* // IngressGatewayBridge: { // IngressGatewayBridge
|
|
50
|
+
* // InstanceId: "STRING_VALUE",
|
|
51
|
+
* // MaxBitrate: Number("int"), // required
|
|
52
|
+
* // MaxOutputs: Number("int"), // required
|
|
53
|
+
* // },
|
|
54
|
+
* // Name: "STRING_VALUE", // required
|
|
55
|
+
* // Outputs: [ // __listOfBridgeOutput
|
|
56
|
+
* // { // BridgeOutput
|
|
57
|
+
* // FlowOutput: { // BridgeFlowOutput
|
|
58
|
+
* // FlowArn: "STRING_VALUE", // required
|
|
59
|
+
* // FlowSourceArn: "STRING_VALUE", // required
|
|
60
|
+
* // Name: "STRING_VALUE", // required
|
|
61
|
+
* // },
|
|
62
|
+
* // NetworkOutput: { // BridgeNetworkOutput
|
|
63
|
+
* // IpAddress: "STRING_VALUE", // required
|
|
64
|
+
* // Name: "STRING_VALUE", // required
|
|
65
|
+
* // NetworkName: "STRING_VALUE", // required
|
|
66
|
+
* // Port: Number("int"), // required
|
|
67
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
68
|
+
* // Ttl: Number("int"), // required
|
|
69
|
+
* // },
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // PlacementArn: "STRING_VALUE", // required
|
|
73
|
+
* // SourceFailoverConfig: { // FailoverConfig
|
|
74
|
+
* // FailoverMode: "MERGE" || "FAILOVER",
|
|
75
|
+
* // RecoveryWindow: Number("int"),
|
|
76
|
+
* // SourcePriority: { // SourcePriority
|
|
77
|
+
* // PrimarySource: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // State: "ENABLED" || "DISABLED",
|
|
80
|
+
* // },
|
|
81
|
+
* // Sources: [ // __listOfBridgeSource
|
|
82
|
+
* // { // BridgeSource
|
|
83
|
+
* // FlowSource: { // BridgeFlowSource
|
|
84
|
+
* // FlowArn: "STRING_VALUE", // required
|
|
85
|
+
* // FlowVpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
86
|
+
* // VpcInterfaceName: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // Name: "STRING_VALUE", // required
|
|
89
|
+
* // OutputArn: "STRING_VALUE",
|
|
90
|
+
* // },
|
|
91
|
+
* // NetworkSource: { // BridgeNetworkSource
|
|
92
|
+
* // MulticastIp: "STRING_VALUE", // required
|
|
93
|
+
* // Name: "STRING_VALUE", // required
|
|
94
|
+
* // NetworkName: "STRING_VALUE", // required
|
|
95
|
+
* // Port: Number("int"), // required
|
|
96
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
97
|
+
* // },
|
|
98
|
+
* // },
|
|
99
|
+
* // ],
|
|
100
|
+
* // },
|
|
101
|
+
* // };
|
|
102
|
+
*
|
|
34
103
|
* ```
|
|
35
104
|
*
|
|
36
105
|
* @param DescribeBridgeCommandInput - {@link DescribeBridgeCommandInput}
|
|
@@ -60,6 +129,8 @@ export interface DescribeBridgeCommandOutput extends DescribeBridgeResponse, __M
|
|
|
60
129
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
61
130
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
62
131
|
*
|
|
132
|
+
* @throws {@link MediaConnectServiceException}
|
|
133
|
+
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
63
134
|
*
|
|
64
135
|
*/
|
|
65
136
|
export declare class DescribeBridgeCommand extends $Command<DescribeBridgeCommandInput, DescribeBridgeCommandOutput, MediaConnectClientResolvedConfig> {
|