@aws-sdk/client-medialive 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/AcceptInputDeviceTransferCommand.d.ts +4 -0
- package/dist-types/commands/BatchDeleteCommand.d.ts +20 -0
- package/dist-types/commands/BatchStartCommand.d.ts +20 -0
- package/dist-types/commands/BatchStopCommand.d.ts +20 -0
- package/dist-types/commands/BatchUpdateScheduleCommand.d.ts +263 -0
- package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +4 -0
- package/dist-types/commands/ClaimDeviceCommand.d.ts +4 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +1011 -0
- package/dist-types/commands/CreateInputCommand.d.ts +55 -0
- package/dist-types/commands/CreateInputSecurityGroupCommand.d.ts +21 -0
- package/dist-types/commands/CreateMultiplexCommand.d.ts +32 -0
- package/dist-types/commands/CreateMultiplexProgramCommand.d.ts +54 -0
- package/dist-types/commands/CreatePartnerInputCommand.d.ts +55 -0
- package/dist-types/commands/CreateTagsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +1009 -0
- package/dist-types/commands/DeleteInputCommand.d.ts +4 -0
- package/dist-types/commands/DeleteInputSecurityGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteMultiplexCommand.d.ts +30 -0
- package/dist-types/commands/DeleteMultiplexProgramCommand.d.ts +52 -0
- package/dist-types/commands/DeleteReservationCommand.d.ts +38 -0
- package/dist-types/commands/DeleteScheduleCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTagsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +1009 -0
- package/dist-types/commands/DescribeInputCommand.d.ts +53 -0
- package/dist-types/commands/DescribeInputDeviceCommand.d.ts +48 -0
- package/dist-types/commands/DescribeInputDeviceThumbnailCommand.d.ts +10 -0
- package/dist-types/commands/DescribeInputSecurityGroupCommand.d.ts +19 -0
- package/dist-types/commands/DescribeMultiplexCommand.d.ts +30 -0
- package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +52 -0
- package/dist-types/commands/DescribeOfferingCommand.d.ts +25 -0
- package/dist-types/commands/DescribeReservationCommand.d.ts +38 -0
- package/dist-types/commands/DescribeScheduleCommand.d.ts +133 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +208 -0
- package/dist-types/commands/ListInputDeviceTransfersCommand.d.ts +14 -0
- package/dist-types/commands/ListInputDevicesCommand.d.ts +53 -0
- package/dist-types/commands/ListInputSecurityGroupsCommand.d.ts +24 -0
- package/dist-types/commands/ListInputsCommand.d.ts +58 -0
- package/dist-types/commands/ListMultiplexProgramsCommand.d.ts +12 -0
- package/dist-types/commands/ListMultiplexesCommand.d.ts +25 -0
- package/dist-types/commands/ListOfferingsCommand.d.ts +30 -0
- package/dist-types/commands/ListReservationsCommand.d.ts +43 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +40 -0
- package/dist-types/commands/RebootInputDeviceCommand.d.ts +4 -0
- package/dist-types/commands/RejectInputDeviceTransferCommand.d.ts +4 -0
- package/dist-types/commands/StartChannelCommand.d.ts +1009 -0
- package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +4 -0
- package/dist-types/commands/StartMultiplexCommand.d.ts +30 -0
- package/dist-types/commands/StopChannelCommand.d.ts +1009 -0
- package/dist-types/commands/StopMultiplexCommand.d.ts +30 -0
- package/dist-types/commands/TransferInputDeviceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +1011 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +1011 -0
- package/dist-types/commands/UpdateInputCommand.d.ts +55 -0
- package/dist-types/commands/UpdateInputDeviceCommand.d.ts +48 -0
- package/dist-types/commands/UpdateInputSecurityGroupCommand.d.ts +21 -0
- package/dist-types/commands/UpdateMultiplexCommand.d.ts +32 -0
- package/dist-types/commands/UpdateMultiplexProgramCommand.d.ts +54 -0
- package/dist-types/commands/UpdateReservationCommand.d.ts +40 -0
- package/package.json +7 -7
|
@@ -31,6 +31,34 @@ export interface StopMultiplexCommandOutput extends StopMultiplexResponse, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopMultiplexCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StopMultiplexResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // AvailabilityZones: [ // __listOf__string
|
|
37
|
+
* // "STRING_VALUE",
|
|
38
|
+
* // ],
|
|
39
|
+
* // Destinations: [ // __listOfMultiplexOutputDestination
|
|
40
|
+
* // { // MultiplexOutputDestination
|
|
41
|
+
* // MediaConnectSettings: { // MultiplexMediaConnectOutputDestinationSettings
|
|
42
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // Id: "STRING_VALUE",
|
|
47
|
+
* // MultiplexSettings: { // MultiplexSettings
|
|
48
|
+
* // MaximumVideoBufferDelayMilliseconds: Number("int"),
|
|
49
|
+
* // TransportStreamBitrate: Number("int"), // required
|
|
50
|
+
* // TransportStreamId: Number("int"), // required
|
|
51
|
+
* // TransportStreamReservedBitrate: Number("int"),
|
|
52
|
+
* // },
|
|
53
|
+
* // Name: "STRING_VALUE",
|
|
54
|
+
* // PipelinesRunningCount: Number("int"),
|
|
55
|
+
* // ProgramCount: Number("int"),
|
|
56
|
+
* // State: "CREATING" || "CREATE_FAILED" || "IDLE" || "STARTING" || "RUNNING" || "RECOVERING" || "STOPPING" || "DELETING" || "DELETED",
|
|
57
|
+
* // Tags: { // Tags
|
|
58
|
+
* // "<keys>": "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
34
62
|
* ```
|
|
35
63
|
*
|
|
36
64
|
* @param StopMultiplexCommandInput - {@link StopMultiplexCommandInput}
|
|
@@ -63,6 +91,8 @@ export interface StopMultiplexCommandOutput extends StopMultiplexResponse, __Met
|
|
|
63
91
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
64
92
|
* Placeholder documentation for TooManyRequestsException
|
|
65
93
|
*
|
|
94
|
+
* @throws {@link MediaLiveServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
66
96
|
*
|
|
67
97
|
*/
|
|
68
98
|
export declare class StopMultiplexCommand extends $Command<StopMultiplexCommandInput, StopMultiplexCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TransferInputDeviceCommandOutput extends TransferInputDeviceRes
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TransferInputDeviceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TransferInputDeviceCommandInput - {@link TransferInputDeviceCommandInput}
|
|
@@ -69,6 +71,8 @@ export interface TransferInputDeviceCommandOutput extends TransferInputDeviceRes
|
|
|
69
71
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
70
72
|
* Placeholder documentation for UnprocessableEntityException
|
|
71
73
|
*
|
|
74
|
+
* @throws {@link MediaLiveServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
72
76
|
*
|
|
73
77
|
*/
|
|
74
78
|
export declare class TransferInputDeviceCommand extends $Command<TransferInputDeviceCommandInput, TransferInputDeviceCommandOutput, MediaLiveClientResolvedConfig> {
|