@aws-sdk/client-medialive 3.300.0 → 3.303.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/models/models_0.js +779 -935
- package/dist-cjs/models/models_1.js +532 -641
- package/dist-es/models/models_0.js +779 -935
- package/dist-es/models/models_1.js +532 -641
- package/dist-types/commands/AcceptInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/commands/BatchDeleteCommand.d.ts +2 -2
- package/dist-types/commands/BatchStartCommand.d.ts +2 -2
- package/dist-types/commands/BatchStopCommand.d.ts +2 -2
- package/dist-types/commands/BatchUpdateScheduleCommand.d.ts +33 -33
- package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/commands/ClaimDeviceCommand.d.ts +1 -1
- package/dist-types/commands/CreateChannelCommand.d.ts +164 -182
- package/dist-types/commands/CreateInputCommand.d.ts +12 -12
- package/dist-types/commands/CreateInputSecurityGroupCommand.d.ts +4 -4
- package/dist-types/commands/CreateMultiplexCommand.d.ts +4 -4
- package/dist-types/commands/CreateMultiplexProgramCommand.d.ts +5 -5
- package/dist-types/commands/CreatePartnerInputCommand.d.ts +2 -2
- package/dist-types/commands/CreateTagsCommand.d.ts +2 -2
- package/dist-types/commands/DeleteChannelCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInputCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInputSecurityGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMultiplexCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMultiplexProgramCommand.d.ts +1 -1
- package/dist-types/commands/DeleteReservationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeChannelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInputCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInputDeviceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInputDeviceThumbnailCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInputSecurityGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMultiplexCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOfferingCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
- package/dist-types/commands/ListChannelsCommand.d.ts +1 -1
- package/dist-types/commands/ListInputDeviceTransfersCommand.d.ts +1 -1
- package/dist-types/commands/ListInputDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListInputSecurityGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListInputsCommand.d.ts +1 -1
- package/dist-types/commands/ListMultiplexProgramsCommand.d.ts +1 -1
- package/dist-types/commands/ListMultiplexesCommand.d.ts +1 -1
- package/dist-types/commands/ListOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/ListReservationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +3 -3
- package/dist-types/commands/RebootInputDeviceCommand.d.ts +1 -1
- package/dist-types/commands/RejectInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/commands/StartChannelCommand.d.ts +1 -1
- package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +1 -1
- package/dist-types/commands/StartMultiplexCommand.d.ts +1 -1
- package/dist-types/commands/StopChannelCommand.d.ts +1 -1
- package/dist-types/commands/StopMultiplexCommand.d.ts +1 -1
- package/dist-types/commands/TransferInputDeviceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +8 -8
- package/dist-types/commands/UpdateChannelCommand.d.ts +162 -180
- package/dist-types/commands/UpdateInputCommand.d.ts +10 -10
- package/dist-types/commands/UpdateInputDeviceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateInputSecurityGroupCommand.d.ts +4 -4
- package/dist-types/commands/UpdateMultiplexCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMultiplexProgramCommand.d.ts +5 -5
- package/dist-types/commands/UpdateReservationCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +1559 -779
- package/dist-types/models/models_1.d.ts +1077 -532
- package/dist-types/ts3.4/models/models_0.d.ts +1060 -779
- package/dist-types/ts3.4/models/models_1.d.ts +729 -532
- package/package.json +37 -37
|
@@ -26,40 +26,40 @@ export interface CreateInputCommandOutput extends CreateInputResponse, __Metadat
|
|
|
26
26
|
* import { MediaLiveClient, CreateInputCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, CreateInputCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Destinations: [
|
|
31
|
-
* {
|
|
29
|
+
* const input = { // CreateInputRequest
|
|
30
|
+
* Destinations: [ // __listOfInputDestinationRequest
|
|
31
|
+
* { // InputDestinationRequest
|
|
32
32
|
* StreamName: "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* ],
|
|
35
|
-
* InputDevices: [
|
|
36
|
-
* {
|
|
35
|
+
* InputDevices: [ // __listOfInputDeviceSettings
|
|
36
|
+
* { // InputDeviceSettings
|
|
37
37
|
* Id: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* ],
|
|
40
|
-
* InputSecurityGroups: [
|
|
40
|
+
* InputSecurityGroups: [ // __listOf__string
|
|
41
41
|
* "STRING_VALUE",
|
|
42
42
|
* ],
|
|
43
|
-
* MediaConnectFlows: [
|
|
44
|
-
* {
|
|
43
|
+
* MediaConnectFlows: [ // __listOfMediaConnectFlowRequest
|
|
44
|
+
* { // MediaConnectFlowRequest
|
|
45
45
|
* FlowArn: "STRING_VALUE",
|
|
46
46
|
* },
|
|
47
47
|
* ],
|
|
48
48
|
* Name: "STRING_VALUE",
|
|
49
49
|
* RequestId: "STRING_VALUE",
|
|
50
50
|
* RoleArn: "STRING_VALUE",
|
|
51
|
-
* Sources: [
|
|
52
|
-
* {
|
|
51
|
+
* Sources: [ // __listOfInputSourceRequest
|
|
52
|
+
* { // InputSourceRequest
|
|
53
53
|
* PasswordParam: "STRING_VALUE",
|
|
54
54
|
* Url: "STRING_VALUE",
|
|
55
55
|
* Username: "STRING_VALUE",
|
|
56
56
|
* },
|
|
57
57
|
* ],
|
|
58
|
-
* Tags: {
|
|
58
|
+
* Tags: { // Tags
|
|
59
59
|
* "<keys>": "STRING_VALUE",
|
|
60
60
|
* },
|
|
61
61
|
* Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE",
|
|
62
|
-
* Vpc: {
|
|
62
|
+
* Vpc: { // InputVpcRequest
|
|
63
63
|
* SecurityGroupIds: [
|
|
64
64
|
* "STRING_VALUE",
|
|
65
65
|
* ],
|
|
@@ -26,12 +26,12 @@ export interface CreateInputSecurityGroupCommandOutput extends CreateInputSecuri
|
|
|
26
26
|
* import { MediaLiveClient, CreateInputSecurityGroupCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, CreateInputSecurityGroupCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Tags: {
|
|
29
|
+
* const input = { // CreateInputSecurityGroupRequest
|
|
30
|
+
* Tags: { // Tags
|
|
31
31
|
* "<keys>": "STRING_VALUE",
|
|
32
32
|
* },
|
|
33
|
-
* WhitelistRules: [
|
|
34
|
-
* {
|
|
33
|
+
* WhitelistRules: [ // __listOfInputWhitelistRuleCidr
|
|
34
|
+
* { // InputWhitelistRuleCidr
|
|
35
35
|
* Cidr: "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* ],
|
|
@@ -26,11 +26,11 @@ export interface CreateMultiplexCommandOutput extends CreateMultiplexResponse, _
|
|
|
26
26
|
* import { MediaLiveClient, CreateMultiplexCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, CreateMultiplexCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* AvailabilityZones: [ // required
|
|
29
|
+
* const input = { // CreateMultiplexRequest
|
|
30
|
+
* AvailabilityZones: [ // __listOf__string // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
|
-
* MultiplexSettings: {
|
|
33
|
+
* MultiplexSettings: { // MultiplexSettings
|
|
34
34
|
* MaximumVideoBufferDelayMilliseconds: Number("int"),
|
|
35
35
|
* TransportStreamBitrate: Number("int"), // required
|
|
36
36
|
* TransportStreamId: Number("int"), // required
|
|
@@ -38,7 +38,7 @@ export interface CreateMultiplexCommandOutput extends CreateMultiplexResponse, _
|
|
|
38
38
|
* },
|
|
39
39
|
* Name: "STRING_VALUE", // required
|
|
40
40
|
* RequestId: "STRING_VALUE", // required
|
|
41
|
-
* Tags: {
|
|
41
|
+
* Tags: { // Tags
|
|
42
42
|
* "<keys>": "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* };
|
|
@@ -26,18 +26,18 @@ export interface CreateMultiplexProgramCommandOutput extends CreateMultiplexProg
|
|
|
26
26
|
* import { MediaLiveClient, CreateMultiplexProgramCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, CreateMultiplexProgramCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateMultiplexProgramRequest
|
|
30
30
|
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
-
* MultiplexProgramSettings: {
|
|
31
|
+
* MultiplexProgramSettings: { // MultiplexProgramSettings
|
|
32
32
|
* PreferredChannelPipeline: "CURRENTLY_ACTIVE" || "PIPELINE_0" || "PIPELINE_1",
|
|
33
33
|
* ProgramNumber: Number("int"), // required
|
|
34
|
-
* ServiceDescriptor: {
|
|
34
|
+
* ServiceDescriptor: { // MultiplexProgramServiceDescriptor
|
|
35
35
|
* ProviderName: "STRING_VALUE", // required
|
|
36
36
|
* ServiceName: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
38
|
-
* VideoSettings: {
|
|
38
|
+
* VideoSettings: { // MultiplexVideoSettings
|
|
39
39
|
* ConstantBitrate: Number("int"),
|
|
40
|
-
* StatmuxSettings: {
|
|
40
|
+
* StatmuxSettings: { // MultiplexStatmuxVideoSettings
|
|
41
41
|
* MaximumBitrate: Number("int"),
|
|
42
42
|
* MinimumBitrate: Number("int"),
|
|
43
43
|
* Priority: Number("int"),
|
|
@@ -26,10 +26,10 @@ export interface CreatePartnerInputCommandOutput extends CreatePartnerInputRespo
|
|
|
26
26
|
* import { MediaLiveClient, CreatePartnerInputCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, CreatePartnerInputCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreatePartnerInputRequest
|
|
30
30
|
* InputId: "STRING_VALUE", // required
|
|
31
31
|
* RequestId: "STRING_VALUE",
|
|
32
|
-
* Tags: {
|
|
32
|
+
* Tags: { // Tags
|
|
33
33
|
* "<keys>": "STRING_VALUE",
|
|
34
34
|
* },
|
|
35
35
|
* };
|
|
@@ -26,9 +26,9 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { MediaLiveClient, CreateTagsCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, CreateTagsCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateTagsRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: {
|
|
31
|
+
* Tags: { // Tags
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
|
|
|
26
26
|
* import { MediaLiveClient, DeleteChannelCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DeleteChannelCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteChannelRequest
|
|
30
30
|
* ChannelId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteChannelCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteInputCommandOutput extends DeleteInputResponse, __Metadat
|
|
|
26
26
|
* import { MediaLiveClient, DeleteInputCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DeleteInputCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteInputRequest
|
|
30
30
|
* InputId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteInputCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteInputSecurityGroupCommandOutput extends DeleteInputSecuri
|
|
|
26
26
|
* import { MediaLiveClient, DeleteInputSecurityGroupCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DeleteInputSecurityGroupCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteInputSecurityGroupRequest
|
|
30
30
|
* InputSecurityGroupId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteInputSecurityGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteMultiplexCommandOutput extends DeleteMultiplexResponse, _
|
|
|
26
26
|
* import { MediaLiveClient, DeleteMultiplexCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DeleteMultiplexCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteMultiplexRequest
|
|
30
30
|
* MultiplexId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteMultiplexCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteMultiplexProgramCommandOutput extends DeleteMultiplexProg
|
|
|
26
26
|
* import { MediaLiveClient, DeleteMultiplexProgramCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DeleteMultiplexProgramCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteMultiplexProgramRequest
|
|
30
30
|
* MultiplexId: "STRING_VALUE", // required
|
|
31
31
|
* ProgramName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteReservationCommandOutput extends DeleteReservationRespons
|
|
|
26
26
|
* import { MediaLiveClient, DeleteReservationCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DeleteReservationCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteReservationRequest
|
|
30
30
|
* ReservationId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteReservationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleResponse, __M
|
|
|
26
26
|
* import { MediaLiveClient, DeleteScheduleCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DeleteScheduleCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteScheduleRequest
|
|
30
30
|
* ChannelId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteScheduleCommand(input);
|
|
@@ -26,9 +26,9 @@ export interface DeleteTagsCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { MediaLiveClient, DeleteTagsCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DeleteTagsCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteTagsRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // __listOf__string // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
|
|
|
26
26
|
* import { MediaLiveClient, DescribeChannelCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DescribeChannelCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeChannelRequest
|
|
30
30
|
* ChannelId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeChannelCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeInputCommandOutput extends DescribeInputResponse, __Met
|
|
|
26
26
|
* import { MediaLiveClient, DescribeInputCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DescribeInputCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeInputRequest
|
|
30
30
|
* InputId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeInputCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeInputDeviceCommandOutput extends DescribeInputDeviceRes
|
|
|
26
26
|
* import { MediaLiveClient, DescribeInputDeviceCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DescribeInputDeviceCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeInputDeviceRequest
|
|
30
30
|
* InputDeviceId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeInputDeviceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeInputDeviceThumbnailCommandOutput extends __WithSdkStre
|
|
|
26
26
|
* import { MediaLiveClient, DescribeInputDeviceThumbnailCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DescribeInputDeviceThumbnailCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeInputDeviceThumbnailRequest
|
|
30
30
|
* InputDeviceId: "STRING_VALUE", // required
|
|
31
31
|
* Accept: "image/jpeg", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeInputSecurityGroupCommandOutput extends DescribeInputSe
|
|
|
26
26
|
* import { MediaLiveClient, DescribeInputSecurityGroupCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DescribeInputSecurityGroupCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeInputSecurityGroupRequest
|
|
30
30
|
* InputSecurityGroupId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeInputSecurityGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeMultiplexCommandOutput extends DescribeMultiplexRespons
|
|
|
26
26
|
* import { MediaLiveClient, DescribeMultiplexCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DescribeMultiplexCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeMultiplexRequest
|
|
30
30
|
* MultiplexId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeMultiplexCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeMultiplexProgramCommandOutput extends DescribeMultiplex
|
|
|
26
26
|
* import { MediaLiveClient, DescribeMultiplexProgramCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DescribeMultiplexProgramCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeMultiplexProgramRequest
|
|
30
30
|
* MultiplexId: "STRING_VALUE", // required
|
|
31
31
|
* ProgramName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse,
|
|
|
26
26
|
* import { MediaLiveClient, DescribeOfferingCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DescribeOfferingCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeOfferingRequest
|
|
30
30
|
* OfferingId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeOfferingCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeReservationCommandOutput extends DescribeReservationRes
|
|
|
26
26
|
* import { MediaLiveClient, DescribeReservationCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DescribeReservationCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeReservationRequest
|
|
30
30
|
* ReservationId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeReservationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeScheduleCommandOutput extends DescribeScheduleResponse,
|
|
|
26
26
|
* import { MediaLiveClient, DescribeScheduleCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, DescribeScheduleCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeScheduleRequest
|
|
30
30
|
* ChannelId: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
|
|
|
26
26
|
* import { MediaLiveClient, ListChannelsCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, ListChannelsCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListChannelsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListInputDeviceTransfersCommandOutput extends ListInputDeviceTr
|
|
|
26
26
|
* import { MediaLiveClient, ListInputDeviceTransfersCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, ListInputDeviceTransfersCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListInputDeviceTransfersRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* TransferType: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface ListInputDevicesCommandOutput extends ListInputDevicesResponse,
|
|
|
26
26
|
* import { MediaLiveClient, ListInputDevicesCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, ListInputDevicesCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListInputDevicesRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListInputSecurityGroupsCommandOutput extends ListInputSecurityG
|
|
|
26
26
|
* import { MediaLiveClient, ListInputSecurityGroupsCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, ListInputSecurityGroupsCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListInputSecurityGroupsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListInputsCommandOutput extends ListInputsResponse, __MetadataB
|
|
|
26
26
|
* import { MediaLiveClient, ListInputsCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, ListInputsCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListInputsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListMultiplexProgramsCommandOutput extends ListMultiplexProgram
|
|
|
26
26
|
* import { MediaLiveClient, ListMultiplexProgramsCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, ListMultiplexProgramsCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListMultiplexProgramsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* MultiplexId: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListMultiplexesCommandOutput extends ListMultiplexesResponse, _
|
|
|
26
26
|
* import { MediaLiveClient, ListMultiplexesCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, ListMultiplexesCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListMultiplexesRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListOfferingsCommandOutput extends ListOfferingsResponse, __Met
|
|
|
26
26
|
* import { MediaLiveClient, ListOfferingsCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, ListOfferingsCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListOfferingsRequest
|
|
30
30
|
* ChannelClass: "STRING_VALUE",
|
|
31
31
|
* ChannelConfiguration: "STRING_VALUE",
|
|
32
32
|
* Codec: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListReservationsCommandOutput extends ListReservationsResponse,
|
|
|
26
26
|
* import { MediaLiveClient, ListReservationsCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, ListReservationsCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListReservationsRequest
|
|
30
30
|
* ChannelClass: "STRING_VALUE",
|
|
31
31
|
* Codec: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { MediaLiveClient, ListTagsForResourceCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, ListTagsForResourceCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,17 +26,17 @@ export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResponse,
|
|
|
26
26
|
* import { MediaLiveClient, PurchaseOfferingCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, PurchaseOfferingCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // PurchaseOfferingRequest
|
|
30
30
|
* Count: Number("int"), // required
|
|
31
31
|
* Name: "STRING_VALUE",
|
|
32
32
|
* OfferingId: "STRING_VALUE", // required
|
|
33
|
-
* RenewalSettings: {
|
|
33
|
+
* RenewalSettings: { // RenewalSettings
|
|
34
34
|
* AutomaticRenewal: "DISABLED" || "ENABLED" || "UNAVAILABLE",
|
|
35
35
|
* RenewalCount: Number("int"),
|
|
36
36
|
* },
|
|
37
37
|
* RequestId: "STRING_VALUE",
|
|
38
38
|
* Start: "STRING_VALUE",
|
|
39
|
-
* Tags: {
|
|
39
|
+
* Tags: { // Tags
|
|
40
40
|
* "<keys>": "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
42
|
* };
|
|
@@ -26,7 +26,7 @@ export interface RebootInputDeviceCommandOutput extends RebootInputDeviceRespons
|
|
|
26
26
|
* import { MediaLiveClient, RebootInputDeviceCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, RebootInputDeviceCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RebootInputDeviceRequest
|
|
30
30
|
* Force: "NO" || "YES",
|
|
31
31
|
* InputDeviceId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface RejectInputDeviceTransferCommandOutput extends RejectInputDevic
|
|
|
26
26
|
* import { MediaLiveClient, RejectInputDeviceTransferCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, RejectInputDeviceTransferCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RejectInputDeviceTransferRequest
|
|
30
30
|
* InputDeviceId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new RejectInputDeviceTransferCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface StartChannelCommandOutput extends StartChannelResponse, __Metad
|
|
|
26
26
|
* import { MediaLiveClient, StartChannelCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, StartChannelCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartChannelRequest
|
|
30
30
|
* ChannelId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartChannelCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface StartInputDeviceMaintenanceWindowCommandOutput extends StartInp
|
|
|
27
27
|
* import { MediaLiveClient, StartInputDeviceMaintenanceWindowCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
28
28
|
* // const { MediaLiveClient, StartInputDeviceMaintenanceWindowCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
29
29
|
* const client = new MediaLiveClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // StartInputDeviceMaintenanceWindowRequest
|
|
31
31
|
* InputDeviceId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new StartInputDeviceMaintenanceWindowCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface StartMultiplexCommandOutput extends StartMultiplexResponse, __M
|
|
|
26
26
|
* import { MediaLiveClient, StartMultiplexCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, StartMultiplexCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartMultiplexRequest
|
|
30
30
|
* MultiplexId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartMultiplexCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface StopChannelCommandOutput extends StopChannelResponse, __Metadat
|
|
|
26
26
|
* import { MediaLiveClient, StopChannelCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, StopChannelCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StopChannelRequest
|
|
30
30
|
* ChannelId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopChannelCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface StopMultiplexCommandOutput extends StopMultiplexResponse, __Met
|
|
|
26
26
|
* import { MediaLiveClient, StopMultiplexCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, StopMultiplexCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StopMultiplexRequest
|
|
30
30
|
* MultiplexId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopMultiplexCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface TransferInputDeviceCommandOutput extends TransferInputDeviceRes
|
|
|
26
26
|
* import { MediaLiveClient, TransferInputDeviceCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, TransferInputDeviceCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TransferInputDeviceRequest
|
|
30
30
|
* InputDeviceId: "STRING_VALUE", // required
|
|
31
31
|
* TargetCustomerId: "STRING_VALUE",
|
|
32
32
|
* TargetRegion: "STRING_VALUE",
|
|
@@ -26,23 +26,23 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateChannelClassRequest
|
|
30
30
|
* ChannelClass: "STANDARD" || "SINGLE_PIPELINE", // required
|
|
31
31
|
* ChannelId: "STRING_VALUE", // required
|
|
32
|
-
* Destinations: [
|
|
33
|
-
* {
|
|
32
|
+
* Destinations: [ // __listOfOutputDestination
|
|
33
|
+
* { // OutputDestination
|
|
34
34
|
* Id: "STRING_VALUE",
|
|
35
|
-
* MediaPackageSettings: [
|
|
36
|
-
* {
|
|
35
|
+
* MediaPackageSettings: [ // __listOfMediaPackageOutputDestinationSettings
|
|
36
|
+
* { // MediaPackageOutputDestinationSettings
|
|
37
37
|
* ChannelId: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* ],
|
|
40
|
-
* MultiplexSettings: {
|
|
40
|
+
* MultiplexSettings: { // MultiplexProgramChannelDestinationSettings
|
|
41
41
|
* MultiplexId: "STRING_VALUE",
|
|
42
42
|
* ProgramName: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
|
-
* Settings: [
|
|
45
|
-
* {
|
|
44
|
+
* Settings: [ // __listOfOutputDestinationSettings
|
|
45
|
+
* { // OutputDestinationSettings
|
|
46
46
|
* PasswordParam: "STRING_VALUE",
|
|
47
47
|
* StreamName: "STRING_VALUE",
|
|
48
48
|
* Url: "STRING_VALUE",
|