@aws-sdk/client-medialive 3.325.0 → 3.326.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 +3 -3
|
@@ -32,6 +32,8 @@ export interface StartInputDeviceMaintenanceWindowCommandOutput extends StartInp
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new StartInputDeviceMaintenanceWindowCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param StartInputDeviceMaintenanceWindowCommandInput - {@link StartInputDeviceMaintenanceWindowCommandInput}
|
|
@@ -64,6 +66,8 @@ export interface StartInputDeviceMaintenanceWindowCommandOutput extends StartInp
|
|
|
64
66
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
65
67
|
* Placeholder documentation for UnprocessableEntityException
|
|
66
68
|
*
|
|
69
|
+
* @throws {@link MediaLiveServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
67
71
|
*
|
|
68
72
|
*/
|
|
69
73
|
export declare class StartInputDeviceMaintenanceWindowCommand extends $Command<StartInputDeviceMaintenanceWindowCommandInput, StartInputDeviceMaintenanceWindowCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -31,6 +31,34 @@ export interface StartMultiplexCommandOutput extends StartMultiplexResponse, __M
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartMultiplexCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StartMultiplexResponse
|
|
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 StartMultiplexCommandInput - {@link StartMultiplexCommandInput}
|
|
@@ -63,6 +91,8 @@ export interface StartMultiplexCommandOutput extends StartMultiplexResponse, __M
|
|
|
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 StartMultiplexCommand extends $Command<StartMultiplexCommandInput, StartMultiplexCommandOutput, MediaLiveClientResolvedConfig> {
|