@aws-sdk/client-medialive 3.298.0 → 3.300.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-cjs/protocols/Aws_restJson1.js +9 -0
- package/dist-es/protocols/Aws_restJson1.js +9 -0
- package/dist-types/commands/AcceptInputDeviceTransferCommand.d.ts +3 -0
- package/dist-types/commands/BatchDeleteCommand.d.ts +14 -0
- package/dist-types/commands/BatchStartCommand.d.ts +8 -0
- package/dist-types/commands/BatchStopCommand.d.ts +8 -0
- package/dist-types/commands/BatchUpdateScheduleCommand.d.ts +137 -0
- package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +3 -0
- package/dist-types/commands/ClaimDeviceCommand.d.ts +3 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +1005 -0
- package/dist-types/commands/CreateInputCommand.d.ts +42 -0
- package/dist-types/commands/CreateInputSecurityGroupCommand.d.ts +10 -0
- package/dist-types/commands/CreateMultiplexCommand.d.ts +16 -0
- package/dist-types/commands/CreateMultiplexProgramCommand.d.ts +21 -0
- package/dist-types/commands/CreatePartnerInputCommand.d.ts +7 -0
- package/dist-types/commands/CreateTagsCommand.d.ts +6 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +3 -0
- package/dist-types/commands/DeleteInputCommand.d.ts +3 -0
- package/dist-types/commands/DeleteInputSecurityGroupCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMultiplexCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMultiplexProgramCommand.d.ts +4 -0
- package/dist-types/commands/DeleteReservationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteScheduleCommand.d.ts +3 -0
- package/dist-types/commands/DeleteTagsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +3 -0
- package/dist-types/commands/DescribeInputCommand.d.ts +3 -0
- package/dist-types/commands/DescribeInputDeviceCommand.d.ts +3 -0
- package/dist-types/commands/DescribeInputDeviceThumbnailCommand.d.ts +4 -0
- package/dist-types/commands/DescribeInputSecurityGroupCommand.d.ts +3 -0
- package/dist-types/commands/DescribeMultiplexCommand.d.ts +3 -0
- package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +4 -0
- package/dist-types/commands/DescribeOfferingCommand.d.ts +3 -0
- package/dist-types/commands/DescribeReservationCommand.d.ts +3 -0
- package/dist-types/commands/DescribeScheduleCommand.d.ts +5 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +4 -0
- package/dist-types/commands/ListInputDeviceTransfersCommand.d.ts +5 -0
- package/dist-types/commands/ListInputDevicesCommand.d.ts +4 -0
- package/dist-types/commands/ListInputSecurityGroupsCommand.d.ts +4 -0
- package/dist-types/commands/ListInputsCommand.d.ts +4 -0
- package/dist-types/commands/ListMultiplexProgramsCommand.d.ts +5 -0
- package/dist-types/commands/ListMultiplexesCommand.d.ts +4 -0
- package/dist-types/commands/ListOfferingsCommand.d.ts +14 -0
- package/dist-types/commands/ListReservationsCommand.d.ts +12 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +14 -0
- package/dist-types/commands/RebootInputDeviceCommand.d.ts +4 -0
- package/dist-types/commands/RejectInputDeviceTransferCommand.d.ts +3 -0
- package/dist-types/commands/StartChannelCommand.d.ts +3 -0
- package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +3 -0
- package/dist-types/commands/StartMultiplexCommand.d.ts +3 -0
- package/dist-types/commands/StopChannelCommand.d.ts +3 -0
- package/dist-types/commands/StopMultiplexCommand.d.ts +3 -0
- package/dist-types/commands/TransferInputDeviceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +26 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +990 -0
- package/dist-types/commands/UpdateInputCommand.d.ts +30 -0
- package/dist-types/commands/UpdateInputDeviceCommand.d.ts +14 -0
- package/dist-types/commands/UpdateInputSecurityGroupCommand.d.ts +11 -0
- package/dist-types/commands/UpdateMultiplexCommand.d.ts +10 -0
- package/dist-types/commands/UpdateMultiplexProgramCommand.d.ts +20 -0
- package/dist-types/commands/UpdateReservationCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +4 -0
- package/dist-types/models/models_1.d.ts +9 -1
- package/dist-types/models/models_2.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +3 -1
- package/dist-types/ts3.4/models/models_2.d.ts +1 -0
- package/package.json +12 -12
|
@@ -26,6 +26,32 @@ export interface UpdateChannelClassCommandOutput extends UpdateChannelClassRespo
|
|
|
26
26
|
* import { MediaLiveClient, UpdateChannelClassCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateChannelClassCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ChannelClass: "STANDARD" || "SINGLE_PIPELINE", // required
|
|
31
|
+
* ChannelId: "STRING_VALUE", // required
|
|
32
|
+
* Destinations: [
|
|
33
|
+
* {
|
|
34
|
+
* Id: "STRING_VALUE",
|
|
35
|
+
* MediaPackageSettings: [
|
|
36
|
+
* {
|
|
37
|
+
* ChannelId: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* MultiplexSettings: {
|
|
41
|
+
* MultiplexId: "STRING_VALUE",
|
|
42
|
+
* ProgramName: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* Settings: [
|
|
45
|
+
* {
|
|
46
|
+
* PasswordParam: "STRING_VALUE",
|
|
47
|
+
* StreamName: "STRING_VALUE",
|
|
48
|
+
* Url: "STRING_VALUE",
|
|
49
|
+
* Username: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* ],
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* };
|
|
29
55
|
* const command = new UpdateChannelClassCommand(input);
|
|
30
56
|
* const response = await client.send(command);
|
|
31
57
|
* ```
|