@aws-sdk/client-mediaconnect 3.758.0 → 3.771.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -1
- package/dist-cjs/index.js +96 -68
- package/dist-es/models/models_0.js +26 -13
- package/dist-es/protocols/Aws_restJson1.js +54 -0
- package/dist-es/waiters/waitForFlowActive.js +9 -0
- package/dist-types/MediaConnect.d.ts +26 -1
- package/dist-types/MediaConnectClient.d.ts +26 -1
- package/dist-types/commands/AddBridgeOutputsCommand.d.ts +17 -10
- package/dist-types/commands/AddBridgeSourcesCommand.d.ts +17 -10
- package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +13 -7
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +24 -13
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +18 -10
- package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +15 -9
- package/dist-types/commands/CreateBridgeCommand.d.ts +19 -12
- package/dist-types/commands/CreateFlowCommand.d.ts +55 -17
- package/dist-types/commands/CreateGatewayCommand.d.ts +17 -10
- package/dist-types/commands/DeleteBridgeCommand.d.ts +15 -8
- package/dist-types/commands/DeleteFlowCommand.d.ts +13 -7
- package/dist-types/commands/DeleteGatewayCommand.d.ts +15 -8
- package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +15 -8
- package/dist-types/commands/DescribeBridgeCommand.d.ts +17 -10
- package/dist-types/commands/DescribeFlowCommand.d.ts +40 -14
- package/dist-types/commands/DescribeFlowSourceMetadataCommand.d.ts +15 -7
- package/dist-types/commands/DescribeFlowSourceThumbnailCommand.d.ts +15 -7
- package/dist-types/commands/DescribeGatewayCommand.d.ts +17 -9
- package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +17 -8
- package/dist-types/commands/DescribeOfferingCommand.d.ts +11 -6
- package/dist-types/commands/DescribeReservationCommand.d.ts +11 -6
- package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +17 -10
- package/dist-types/commands/ListBridgesCommand.d.ts +12 -6
- package/dist-types/commands/ListEntitlementsCommand.d.ts +9 -5
- package/dist-types/commands/ListFlowsCommand.d.ts +9 -5
- package/dist-types/commands/ListGatewayInstancesCommand.d.ts +11 -6
- package/dist-types/commands/ListGatewaysCommand.d.ts +11 -6
- package/dist-types/commands/ListOfferingsCommand.d.ts +9 -5
- package/dist-types/commands/ListReservationsCommand.d.ts +9 -5
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -5
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +13 -7
- package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +15 -8
- package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +15 -8
- package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +13 -7
- package/dist-types/commands/RemoveFlowOutputCommand.d.ts +13 -7
- package/dist-types/commands/RemoveFlowSourceCommand.d.ts +14 -7
- package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +14 -8
- package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +13 -7
- package/dist-types/commands/StartFlowCommand.d.ts +13 -7
- package/dist-types/commands/StopFlowCommand.d.ts +13 -7
- package/dist-types/commands/TagResourceCommand.d.ts +11 -5
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateBridgeCommand.d.ts +17 -10
- package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +17 -10
- package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +17 -10
- package/dist-types/commands/UpdateBridgeStateCommand.d.ts +15 -8
- package/dist-types/commands/UpdateFlowCommand.d.ts +48 -13
- package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +15 -9
- package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +13 -7
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +22 -12
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +18 -10
- package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +16 -8
- package/dist-types/index.d.ts +26 -1
- package/dist-types/models/models_0.d.ts +1955 -1327
- package/dist-types/ts3.4/models/models_0.d.ts +221 -185
- package/package.json +1 -1
|
@@ -27,7 +27,7 @@ declare const CreateFlowCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50)
|
|
30
|
+
* <p> Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50).</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -53,7 +53,7 @@ declare const CreateFlowCommand_base: {
|
|
|
53
53
|
* },
|
|
54
54
|
* EntitlementStatus: "ENABLED" || "DISABLED",
|
|
55
55
|
* Name: "STRING_VALUE",
|
|
56
|
-
* Subscribers: [ //
|
|
56
|
+
* Subscribers: [ // __listOfString // required
|
|
57
57
|
* "STRING_VALUE",
|
|
58
58
|
* ],
|
|
59
59
|
* },
|
|
@@ -122,7 +122,7 @@ declare const CreateFlowCommand_base: {
|
|
|
122
122
|
* MinLatency: Number("int"),
|
|
123
123
|
* Name: "STRING_VALUE",
|
|
124
124
|
* Port: Number("int"),
|
|
125
|
-
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
125
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq", // required
|
|
126
126
|
* RemoteId: "STRING_VALUE",
|
|
127
127
|
* SenderControlPort: Number("int"),
|
|
128
128
|
* SmoothingLatency: Number("int"),
|
|
@@ -131,6 +131,8 @@ declare const CreateFlowCommand_base: {
|
|
|
131
131
|
* VpcInterfaceName: "STRING_VALUE",
|
|
132
132
|
* },
|
|
133
133
|
* OutputStatus: "ENABLED" || "DISABLED",
|
|
134
|
+
* NdiSpeedHqQuality: Number("int"),
|
|
135
|
+
* NdiProgramName: "STRING_VALUE",
|
|
134
136
|
* },
|
|
135
137
|
* ],
|
|
136
138
|
* Source: { // SetSourceRequest
|
|
@@ -167,7 +169,7 @@ declare const CreateFlowCommand_base: {
|
|
|
167
169
|
* ],
|
|
168
170
|
* MinLatency: Number("int"),
|
|
169
171
|
* Name: "STRING_VALUE",
|
|
170
|
-
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp",
|
|
172
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq",
|
|
171
173
|
* SenderControlPort: Number("int"),
|
|
172
174
|
* SenderIpAddress: "STRING_VALUE",
|
|
173
175
|
* SourceListenerAddress: "STRING_VALUE",
|
|
@@ -225,7 +227,7 @@ declare const CreateFlowCommand_base: {
|
|
|
225
227
|
* ],
|
|
226
228
|
* MinLatency: Number("int"),
|
|
227
229
|
* Name: "STRING_VALUE",
|
|
228
|
-
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp",
|
|
230
|
+
* Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq",
|
|
229
231
|
* SenderControlPort: Number("int"),
|
|
230
232
|
* SenderIpAddress: "STRING_VALUE",
|
|
231
233
|
* SourceListenerAddress: "STRING_VALUE",
|
|
@@ -280,6 +282,18 @@ declare const CreateFlowCommand_base: {
|
|
|
280
282
|
* },
|
|
281
283
|
* ],
|
|
282
284
|
* },
|
|
285
|
+
* FlowSize: "MEDIUM" || "LARGE",
|
|
286
|
+
* NdiConfig: { // NdiConfig
|
|
287
|
+
* NdiState: "ENABLED" || "DISABLED",
|
|
288
|
+
* MachineName: "STRING_VALUE",
|
|
289
|
+
* NdiDiscoveryServers: [ // __listOfNdiDiscoveryServerConfig
|
|
290
|
+
* { // NdiDiscoveryServerConfig
|
|
291
|
+
* DiscoveryServerAddress: "STRING_VALUE", // required
|
|
292
|
+
* DiscoveryServerPort: Number("int"),
|
|
293
|
+
* VpcInterfaceAdapter: "STRING_VALUE", // required
|
|
294
|
+
* },
|
|
295
|
+
* ],
|
|
296
|
+
* },
|
|
283
297
|
* };
|
|
284
298
|
* const command = new CreateFlowCommand(input);
|
|
285
299
|
* const response = await client.send(command);
|
|
@@ -306,7 +320,7 @@ declare const CreateFlowCommand_base: {
|
|
|
306
320
|
* // EntitlementArn: "STRING_VALUE", // required
|
|
307
321
|
* // EntitlementStatus: "ENABLED" || "DISABLED",
|
|
308
322
|
* // Name: "STRING_VALUE", // required
|
|
309
|
-
* // Subscribers: [ //
|
|
323
|
+
* // Subscribers: [ // __listOfString // required
|
|
310
324
|
* // "STRING_VALUE",
|
|
311
325
|
* // ],
|
|
312
326
|
* // },
|
|
@@ -386,7 +400,7 @@ declare const CreateFlowCommand_base: {
|
|
|
386
400
|
* // MaxLatency: Number("int"),
|
|
387
401
|
* // MaxSyncBuffer: Number("int"),
|
|
388
402
|
* // MinLatency: Number("int"),
|
|
389
|
-
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
403
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq", // required
|
|
390
404
|
* // RemoteId: "STRING_VALUE",
|
|
391
405
|
* // SenderControlPort: Number("int"),
|
|
392
406
|
* // SenderIpAddress: "STRING_VALUE",
|
|
@@ -394,12 +408,14 @@ declare const CreateFlowCommand_base: {
|
|
|
394
408
|
* // SourceListenerAddress: "STRING_VALUE",
|
|
395
409
|
* // SourceListenerPort: Number("int"),
|
|
396
410
|
* // StreamId: "STRING_VALUE",
|
|
411
|
+
* // NdiSpeedHqQuality: Number("int"),
|
|
412
|
+
* // NdiProgramName: "STRING_VALUE",
|
|
397
413
|
* // },
|
|
398
414
|
* // VpcInterfaceAttachment: { // VpcInterfaceAttachment
|
|
399
415
|
* // VpcInterfaceName: "STRING_VALUE",
|
|
400
416
|
* // },
|
|
401
417
|
* // BridgeArn: "STRING_VALUE",
|
|
402
|
-
* // BridgePorts: [ //
|
|
418
|
+
* // BridgePorts: [ // __listOfInteger
|
|
403
419
|
* // Number("int"),
|
|
404
420
|
* // ],
|
|
405
421
|
* // OutputStatus: "ENABLED" || "DISABLED",
|
|
@@ -449,7 +465,7 @@ declare const CreateFlowCommand_base: {
|
|
|
449
465
|
* // MaxLatency: Number("int"),
|
|
450
466
|
* // MaxSyncBuffer: Number("int"),
|
|
451
467
|
* // MinLatency: Number("int"),
|
|
452
|
-
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
468
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq", // required
|
|
453
469
|
* // RemoteId: "STRING_VALUE",
|
|
454
470
|
* // SenderControlPort: Number("int"),
|
|
455
471
|
* // SenderIpAddress: "STRING_VALUE",
|
|
@@ -457,6 +473,8 @@ declare const CreateFlowCommand_base: {
|
|
|
457
473
|
* // SourceListenerAddress: "STRING_VALUE",
|
|
458
474
|
* // SourceListenerPort: Number("int"),
|
|
459
475
|
* // StreamId: "STRING_VALUE",
|
|
476
|
+
* // NdiSpeedHqQuality: Number("int"),
|
|
477
|
+
* // NdiProgramName: "STRING_VALUE",
|
|
460
478
|
* // },
|
|
461
479
|
* // VpcInterfaceName: "STRING_VALUE",
|
|
462
480
|
* // WhitelistCidr: "STRING_VALUE",
|
|
@@ -520,7 +538,7 @@ declare const CreateFlowCommand_base: {
|
|
|
520
538
|
* // MaxLatency: Number("int"),
|
|
521
539
|
* // MaxSyncBuffer: Number("int"),
|
|
522
540
|
* // MinLatency: Number("int"),
|
|
523
|
-
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
541
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq", // required
|
|
524
542
|
* // RemoteId: "STRING_VALUE",
|
|
525
543
|
* // SenderControlPort: Number("int"),
|
|
526
544
|
* // SenderIpAddress: "STRING_VALUE",
|
|
@@ -528,6 +546,8 @@ declare const CreateFlowCommand_base: {
|
|
|
528
546
|
* // SourceListenerAddress: "STRING_VALUE",
|
|
529
547
|
* // SourceListenerPort: Number("int"),
|
|
530
548
|
* // StreamId: "STRING_VALUE",
|
|
549
|
+
* // NdiSpeedHqQuality: Number("int"),
|
|
550
|
+
* // NdiProgramName: "STRING_VALUE",
|
|
531
551
|
* // },
|
|
532
552
|
* // VpcInterfaceName: "STRING_VALUE",
|
|
533
553
|
* // WhitelistCidr: "STRING_VALUE",
|
|
@@ -548,7 +568,7 @@ declare const CreateFlowCommand_base: {
|
|
|
548
568
|
* // ],
|
|
549
569
|
* // NetworkInterfaceType: "ena" || "efa", // required
|
|
550
570
|
* // RoleArn: "STRING_VALUE", // required
|
|
551
|
-
* // SecurityGroupIds: "<
|
|
571
|
+
* // SecurityGroupIds: "<__listOfString>", // required
|
|
552
572
|
* // SubnetId: "STRING_VALUE", // required
|
|
553
573
|
* // },
|
|
554
574
|
* // ],
|
|
@@ -582,6 +602,18 @@ declare const CreateFlowCommand_base: {
|
|
|
582
602
|
* // },
|
|
583
603
|
* // ],
|
|
584
604
|
* // },
|
|
605
|
+
* // FlowSize: "MEDIUM" || "LARGE",
|
|
606
|
+
* // NdiConfig: { // NdiConfig
|
|
607
|
+
* // NdiState: "ENABLED" || "DISABLED",
|
|
608
|
+
* // MachineName: "STRING_VALUE",
|
|
609
|
+
* // NdiDiscoveryServers: [ // __listOfNdiDiscoveryServerConfig
|
|
610
|
+
* // { // NdiDiscoveryServerConfig
|
|
611
|
+
* // DiscoveryServerAddress: "STRING_VALUE", // required
|
|
612
|
+
* // DiscoveryServerPort: Number("int"),
|
|
613
|
+
* // VpcInterfaceAdapter: "STRING_VALUE", // required
|
|
614
|
+
* // },
|
|
615
|
+
* // ],
|
|
616
|
+
* // },
|
|
585
617
|
* // },
|
|
586
618
|
* // };
|
|
587
619
|
*
|
|
@@ -594,22 +626,28 @@ declare const CreateFlowCommand_base: {
|
|
|
594
626
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
595
627
|
*
|
|
596
628
|
* @throws {@link BadRequestException} (client fault)
|
|
597
|
-
*
|
|
629
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
630
|
+
* </p>
|
|
598
631
|
*
|
|
599
632
|
* @throws {@link CreateFlow420Exception} (client fault)
|
|
600
|
-
* Exception raised by
|
|
633
|
+
* <p>Exception raised by Elemental MediaConnect when creating the flow. See the error message for the operation for more information on the cause of this exception.
|
|
634
|
+
* </p>
|
|
601
635
|
*
|
|
602
636
|
* @throws {@link ForbiddenException} (client fault)
|
|
603
|
-
*
|
|
637
|
+
* <p>You do not have sufficient access to perform this action.
|
|
638
|
+
* </p>
|
|
604
639
|
*
|
|
605
640
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
606
|
-
*
|
|
641
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
642
|
+
* </p>
|
|
607
643
|
*
|
|
608
644
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
609
|
-
*
|
|
645
|
+
* <p>The service is currently unavailable or busy.
|
|
646
|
+
* </p>
|
|
610
647
|
*
|
|
611
648
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
612
|
-
*
|
|
649
|
+
* <p>The request was denied due to request throttling.
|
|
650
|
+
* </p>
|
|
613
651
|
*
|
|
614
652
|
* @throws {@link MediaConnectServiceException}
|
|
615
653
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const CreateGatewayCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Creates a new gateway. The request must include at least one network (up to
|
|
30
|
+
* <p> Creates a new gateway. The request must include at least one network (up to four).</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -35,7 +35,7 @@ declare const CreateGatewayCommand_base: {
|
|
|
35
35
|
* // const { MediaConnectClient, CreateGatewayCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
|
|
36
36
|
* const client = new MediaConnectClient(config);
|
|
37
37
|
* const input = { // CreateGatewayRequest
|
|
38
|
-
* EgressCidrBlocks: [ //
|
|
38
|
+
* EgressCidrBlocks: [ // __listOfString // required
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* Name: "STRING_VALUE", // required
|
|
@@ -50,7 +50,7 @@ declare const CreateGatewayCommand_base: {
|
|
|
50
50
|
* const response = await client.send(command);
|
|
51
51
|
* // { // CreateGatewayResponse
|
|
52
52
|
* // Gateway: { // Gateway
|
|
53
|
-
* // EgressCidrBlocks: [ //
|
|
53
|
+
* // EgressCidrBlocks: [ // __listOfString // required
|
|
54
54
|
* // "STRING_VALUE",
|
|
55
55
|
* // ],
|
|
56
56
|
* // GatewayArn: "STRING_VALUE", // required
|
|
@@ -81,25 +81,32 @@ declare const CreateGatewayCommand_base: {
|
|
|
81
81
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
82
82
|
*
|
|
83
83
|
* @throws {@link BadRequestException} (client fault)
|
|
84
|
-
*
|
|
84
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
85
|
+
* </p>
|
|
85
86
|
*
|
|
86
87
|
* @throws {@link ConflictException} (client fault)
|
|
87
|
-
*
|
|
88
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
89
|
+
* </p>
|
|
88
90
|
*
|
|
89
91
|
* @throws {@link CreateGateway420Exception} (client fault)
|
|
90
|
-
* Exception raised by
|
|
92
|
+
* <p>Exception raised by Elemental MediaConnect when creating the gateway. See the error message for the operation for more information on the cause of this exception.
|
|
93
|
+
* </p>
|
|
91
94
|
*
|
|
92
95
|
* @throws {@link ForbiddenException} (client fault)
|
|
93
|
-
*
|
|
96
|
+
* <p>You do not have sufficient access to perform this action.
|
|
97
|
+
* </p>
|
|
94
98
|
*
|
|
95
99
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
96
|
-
*
|
|
100
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
101
|
+
* </p>
|
|
97
102
|
*
|
|
98
103
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
99
|
-
*
|
|
104
|
+
* <p>The service is currently unavailable or busy.
|
|
105
|
+
* </p>
|
|
100
106
|
*
|
|
101
107
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
102
|
-
*
|
|
108
|
+
* <p>The request was denied due to request throttling.
|
|
109
|
+
* </p>
|
|
103
110
|
*
|
|
104
111
|
* @throws {@link MediaConnectServiceException}
|
|
105
112
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const DeleteBridgeCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Deletes a bridge. Before you can delete a bridge, you must stop the bridge
|
|
30
|
+
* <p> Deletes a bridge. Before you can delete a bridge, you must stop the bridge.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -52,25 +52,32 @@ declare const DeleteBridgeCommand_base: {
|
|
|
52
52
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
53
53
|
*
|
|
54
54
|
* @throws {@link BadRequestException} (client fault)
|
|
55
|
-
*
|
|
55
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
56
|
+
* </p>
|
|
56
57
|
*
|
|
57
58
|
* @throws {@link ConflictException} (client fault)
|
|
58
|
-
*
|
|
59
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
60
|
+
* </p>
|
|
59
61
|
*
|
|
60
62
|
* @throws {@link ForbiddenException} (client fault)
|
|
61
|
-
*
|
|
63
|
+
* <p>You do not have sufficient access to perform this action.
|
|
64
|
+
* </p>
|
|
62
65
|
*
|
|
63
66
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
64
|
-
*
|
|
67
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
68
|
+
* </p>
|
|
65
69
|
*
|
|
66
70
|
* @throws {@link NotFoundException} (client fault)
|
|
67
|
-
*
|
|
71
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
72
|
+
* </p>
|
|
68
73
|
*
|
|
69
74
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
70
|
-
*
|
|
75
|
+
* <p>The service is currently unavailable or busy.
|
|
76
|
+
* </p>
|
|
71
77
|
*
|
|
72
78
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
73
|
-
*
|
|
79
|
+
* <p>The request was denied due to request throttling.
|
|
80
|
+
* </p>
|
|
74
81
|
*
|
|
75
82
|
* @throws {@link MediaConnectServiceException}
|
|
76
83
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const DeleteFlowCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Deletes a flow. Before you can delete a flow, you must stop the flow
|
|
30
|
+
* <p> Deletes a flow. Before you can delete a flow, you must stop the flow.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -53,22 +53,28 @@ declare const DeleteFlowCommand_base: {
|
|
|
53
53
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
54
54
|
*
|
|
55
55
|
* @throws {@link BadRequestException} (client fault)
|
|
56
|
-
*
|
|
56
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
57
|
+
* </p>
|
|
57
58
|
*
|
|
58
59
|
* @throws {@link ForbiddenException} (client fault)
|
|
59
|
-
*
|
|
60
|
+
* <p>You do not have sufficient access to perform this action.
|
|
61
|
+
* </p>
|
|
60
62
|
*
|
|
61
63
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
62
|
-
*
|
|
64
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
65
|
+
* </p>
|
|
63
66
|
*
|
|
64
67
|
* @throws {@link NotFoundException} (client fault)
|
|
65
|
-
*
|
|
68
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
69
|
+
* </p>
|
|
66
70
|
*
|
|
67
71
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
68
|
-
*
|
|
72
|
+
* <p>The service is currently unavailable or busy.
|
|
73
|
+
* </p>
|
|
69
74
|
*
|
|
70
75
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
71
|
-
*
|
|
76
|
+
* <p>The request was denied due to request throttling.
|
|
77
|
+
* </p>
|
|
72
78
|
*
|
|
73
79
|
* @throws {@link MediaConnectServiceException}
|
|
74
80
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const DeleteGatewayCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Deletes a gateway. Before you can delete a gateway, you must deregister its instances and delete its bridges
|
|
30
|
+
* <p> Deletes a gateway. Before you can delete a gateway, you must deregister its instances and delete its bridges.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -52,25 +52,32 @@ declare const DeleteGatewayCommand_base: {
|
|
|
52
52
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
53
53
|
*
|
|
54
54
|
* @throws {@link BadRequestException} (client fault)
|
|
55
|
-
*
|
|
55
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
56
|
+
* </p>
|
|
56
57
|
*
|
|
57
58
|
* @throws {@link ConflictException} (client fault)
|
|
58
|
-
*
|
|
59
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
60
|
+
* </p>
|
|
59
61
|
*
|
|
60
62
|
* @throws {@link ForbiddenException} (client fault)
|
|
61
|
-
*
|
|
63
|
+
* <p>You do not have sufficient access to perform this action.
|
|
64
|
+
* </p>
|
|
62
65
|
*
|
|
63
66
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
64
|
-
*
|
|
67
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
68
|
+
* </p>
|
|
65
69
|
*
|
|
66
70
|
* @throws {@link NotFoundException} (client fault)
|
|
67
|
-
*
|
|
71
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
72
|
+
* </p>
|
|
68
73
|
*
|
|
69
74
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
70
|
-
*
|
|
75
|
+
* <p>The service is currently unavailable or busy.
|
|
76
|
+
* </p>
|
|
71
77
|
*
|
|
72
78
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
73
|
-
*
|
|
79
|
+
* <p>The request was denied due to request throttling.
|
|
80
|
+
* </p>
|
|
74
81
|
*
|
|
75
82
|
* @throws {@link MediaConnectServiceException}
|
|
76
83
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const DeregisterGatewayInstanceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Deregisters an instance. Before you deregister an instance, all bridges running on the instance must be stopped. If you want to deregister an instance without stopping the bridges, you must use the --force option
|
|
30
|
+
* <p> Deregisters an instance. Before you deregister an instance, all bridges running on the instance must be stopped. If you want to deregister an instance without stopping the bridges, you must use the --force option.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -54,25 +54,32 @@ declare const DeregisterGatewayInstanceCommand_base: {
|
|
|
54
54
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link BadRequestException} (client fault)
|
|
57
|
-
*
|
|
57
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
58
|
+
* </p>
|
|
58
59
|
*
|
|
59
60
|
* @throws {@link ConflictException} (client fault)
|
|
60
|
-
*
|
|
61
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
62
|
+
* </p>
|
|
61
63
|
*
|
|
62
64
|
* @throws {@link ForbiddenException} (client fault)
|
|
63
|
-
*
|
|
65
|
+
* <p>You do not have sufficient access to perform this action.
|
|
66
|
+
* </p>
|
|
64
67
|
*
|
|
65
68
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
66
|
-
*
|
|
69
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
70
|
+
* </p>
|
|
67
71
|
*
|
|
68
72
|
* @throws {@link NotFoundException} (client fault)
|
|
69
|
-
*
|
|
73
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
74
|
+
* </p>
|
|
70
75
|
*
|
|
71
76
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
72
|
-
*
|
|
77
|
+
* <p>The service is currently unavailable or busy.
|
|
78
|
+
* </p>
|
|
73
79
|
*
|
|
74
80
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
75
|
-
*
|
|
81
|
+
* <p>The request was denied due to request throttling.
|
|
82
|
+
* </p>
|
|
76
83
|
*
|
|
77
84
|
* @throws {@link MediaConnectServiceException}
|
|
78
85
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
@@ -27,7 +27,7 @@ declare const DescribeBridgeCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Displays the details of a bridge
|
|
30
|
+
* <p> Displays the details of a bridge.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -72,7 +72,7 @@ declare const DescribeBridgeCommand_base: {
|
|
|
72
72
|
* // Name: "STRING_VALUE", // required
|
|
73
73
|
* // NetworkName: "STRING_VALUE", // required
|
|
74
74
|
* // Port: Number("int"), // required
|
|
75
|
-
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
75
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq", // required
|
|
76
76
|
* // Ttl: Number("int"), // required
|
|
77
77
|
* // },
|
|
78
78
|
* // },
|
|
@@ -104,7 +104,7 @@ declare const DescribeBridgeCommand_base: {
|
|
|
104
104
|
* // Name: "STRING_VALUE", // required
|
|
105
105
|
* // NetworkName: "STRING_VALUE", // required
|
|
106
106
|
* // Port: Number("int"), // required
|
|
107
|
-
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
|
|
107
|
+
* // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp" || "ndi-speed-hq", // required
|
|
108
108
|
* // },
|
|
109
109
|
* // },
|
|
110
110
|
* // ],
|
|
@@ -120,25 +120,32 @@ declare const DescribeBridgeCommand_base: {
|
|
|
120
120
|
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
121
121
|
*
|
|
122
122
|
* @throws {@link BadRequestException} (client fault)
|
|
123
|
-
*
|
|
123
|
+
* <p>This exception is thrown if the request contains a semantic error. The precise meaning depends on the API, and is documented in the error message.
|
|
124
|
+
* </p>
|
|
124
125
|
*
|
|
125
126
|
* @throws {@link ConflictException} (client fault)
|
|
126
|
-
*
|
|
127
|
+
* <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
128
|
+
* </p>
|
|
127
129
|
*
|
|
128
130
|
* @throws {@link ForbiddenException} (client fault)
|
|
129
|
-
*
|
|
131
|
+
* <p>You do not have sufficient access to perform this action.
|
|
132
|
+
* </p>
|
|
130
133
|
*
|
|
131
134
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
132
|
-
*
|
|
135
|
+
* <p>The server encountered an internal error and is unable to complete the request.
|
|
136
|
+
* </p>
|
|
133
137
|
*
|
|
134
138
|
* @throws {@link NotFoundException} (client fault)
|
|
135
|
-
*
|
|
139
|
+
* <p>One or more of the resources in the request does not exist in the system.
|
|
140
|
+
* </p>
|
|
136
141
|
*
|
|
137
142
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
138
|
-
*
|
|
143
|
+
* <p>The service is currently unavailable or busy.
|
|
144
|
+
* </p>
|
|
139
145
|
*
|
|
140
146
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
141
|
-
*
|
|
147
|
+
* <p>The request was denied due to request throttling.
|
|
148
|
+
* </p>
|
|
142
149
|
*
|
|
143
150
|
* @throws {@link MediaConnectServiceException}
|
|
144
151
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|