@aws-sdk/client-medialive 3.299.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 +8 -8
|
@@ -26,6 +26,48 @@ 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
|
+
* {
|
|
32
|
+
* StreamName: "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* ],
|
|
35
|
+
* InputDevices: [
|
|
36
|
+
* {
|
|
37
|
+
* Id: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* InputSecurityGroups: [
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* MediaConnectFlows: [
|
|
44
|
+
* {
|
|
45
|
+
* FlowArn: "STRING_VALUE",
|
|
46
|
+
* },
|
|
47
|
+
* ],
|
|
48
|
+
* Name: "STRING_VALUE",
|
|
49
|
+
* RequestId: "STRING_VALUE",
|
|
50
|
+
* RoleArn: "STRING_VALUE",
|
|
51
|
+
* Sources: [
|
|
52
|
+
* {
|
|
53
|
+
* PasswordParam: "STRING_VALUE",
|
|
54
|
+
* Url: "STRING_VALUE",
|
|
55
|
+
* Username: "STRING_VALUE",
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* Tags: {
|
|
59
|
+
* "<keys>": "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE",
|
|
62
|
+
* Vpc: {
|
|
63
|
+
* SecurityGroupIds: [
|
|
64
|
+
* "STRING_VALUE",
|
|
65
|
+
* ],
|
|
66
|
+
* SubnetIds: [ // required
|
|
67
|
+
* "STRING_VALUE",
|
|
68
|
+
* ],
|
|
69
|
+
* },
|
|
70
|
+
* };
|
|
29
71
|
* const command = new CreateInputCommand(input);
|
|
30
72
|
* const response = await client.send(command);
|
|
31
73
|
* ```
|
|
@@ -26,6 +26,16 @@ 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: {
|
|
31
|
+
* "<keys>": "STRING_VALUE",
|
|
32
|
+
* },
|
|
33
|
+
* WhitelistRules: [
|
|
34
|
+
* {
|
|
35
|
+
* Cidr: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
29
39
|
* const command = new CreateInputSecurityGroupCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,22 @@ 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
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* MultiplexSettings: {
|
|
34
|
+
* MaximumVideoBufferDelayMilliseconds: Number("int"),
|
|
35
|
+
* TransportStreamBitrate: Number("int"), // required
|
|
36
|
+
* TransportStreamId: Number("int"), // required
|
|
37
|
+
* TransportStreamReservedBitrate: Number("int"),
|
|
38
|
+
* },
|
|
39
|
+
* Name: "STRING_VALUE", // required
|
|
40
|
+
* RequestId: "STRING_VALUE", // required
|
|
41
|
+
* Tags: {
|
|
42
|
+
* "<keys>": "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* };
|
|
29
45
|
* const command = new CreateMultiplexCommand(input);
|
|
30
46
|
* const response = await client.send(command);
|
|
31
47
|
* ```
|
|
@@ -26,6 +26,27 @@ 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 = {
|
|
30
|
+
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
+
* MultiplexProgramSettings: {
|
|
32
|
+
* PreferredChannelPipeline: "CURRENTLY_ACTIVE" || "PIPELINE_0" || "PIPELINE_1",
|
|
33
|
+
* ProgramNumber: Number("int"), // required
|
|
34
|
+
* ServiceDescriptor: {
|
|
35
|
+
* ProviderName: "STRING_VALUE", // required
|
|
36
|
+
* ServiceName: "STRING_VALUE", // required
|
|
37
|
+
* },
|
|
38
|
+
* VideoSettings: {
|
|
39
|
+
* ConstantBitrate: Number("int"),
|
|
40
|
+
* StatmuxSettings: {
|
|
41
|
+
* MaximumBitrate: Number("int"),
|
|
42
|
+
* MinimumBitrate: Number("int"),
|
|
43
|
+
* Priority: Number("int"),
|
|
44
|
+
* },
|
|
45
|
+
* },
|
|
46
|
+
* },
|
|
47
|
+
* ProgramName: "STRING_VALUE", // required
|
|
48
|
+
* RequestId: "STRING_VALUE", // required
|
|
49
|
+
* };
|
|
29
50
|
* const command = new CreateMultiplexProgramCommand(input);
|
|
30
51
|
* const response = await client.send(command);
|
|
31
52
|
* ```
|
|
@@ -26,6 +26,13 @@ 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 = {
|
|
30
|
+
* InputId: "STRING_VALUE", // required
|
|
31
|
+
* RequestId: "STRING_VALUE",
|
|
32
|
+
* Tags: {
|
|
33
|
+
* "<keys>": "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* };
|
|
29
36
|
* const command = new CreatePartnerInputCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,12 @@ 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 = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* Tags: {
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* };
|
|
29
35
|
* const command = new CreateTagsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* ChannelId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteChannelCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* InputId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteInputCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* InputSecurityGroupId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteInputSecurityGroupCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteMultiplexCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
+
* ProgramName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteMultiplexProgramCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* ReservationId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteReservationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* ChannelId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteScheduleCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,12 @@ 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 = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new DeleteTagsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* ChannelId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeChannelCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* InputId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeInputCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* InputDeviceId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeInputDeviceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* InputDeviceId: "STRING_VALUE", // required
|
|
31
|
+
* Accept: "image/jpeg", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeInputDeviceThumbnailCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* InputSecurityGroupId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeInputSecurityGroupCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeMultiplexCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
+
* ProgramName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeMultiplexProgramCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* OfferingId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeOfferingCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* ReservationId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeReservationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ 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 = {
|
|
30
|
+
* ChannelId: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeScheduleCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListChannelsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ 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 = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* TransferType: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListInputDeviceTransfersCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListInputDevicesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListInputSecurityGroupsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListInputsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ 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 = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* MultiplexId: "STRING_VALUE", // required
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListMultiplexProgramsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListMultiplexesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,20 @@ 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 = {
|
|
30
|
+
* ChannelClass: "STRING_VALUE",
|
|
31
|
+
* ChannelConfiguration: "STRING_VALUE",
|
|
32
|
+
* Codec: "STRING_VALUE",
|
|
33
|
+
* Duration: "STRING_VALUE",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* MaximumBitrate: "STRING_VALUE",
|
|
36
|
+
* MaximumFramerate: "STRING_VALUE",
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* Resolution: "STRING_VALUE",
|
|
39
|
+
* ResourceType: "STRING_VALUE",
|
|
40
|
+
* SpecialFeature: "STRING_VALUE",
|
|
41
|
+
* VideoQuality: "STRING_VALUE",
|
|
42
|
+
* };
|
|
29
43
|
* const command = new ListOfferingsCommand(input);
|
|
30
44
|
* const response = await client.send(command);
|
|
31
45
|
* ```
|
|
@@ -26,6 +26,18 @@ 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 = {
|
|
30
|
+
* ChannelClass: "STRING_VALUE",
|
|
31
|
+
* Codec: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* MaximumBitrate: "STRING_VALUE",
|
|
34
|
+
* MaximumFramerate: "STRING_VALUE",
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* Resolution: "STRING_VALUE",
|
|
37
|
+
* ResourceType: "STRING_VALUE",
|
|
38
|
+
* SpecialFeature: "STRING_VALUE",
|
|
39
|
+
* VideoQuality: "STRING_VALUE",
|
|
40
|
+
* };
|
|
29
41
|
* const command = new ListReservationsCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,20 @@ 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 = {
|
|
30
|
+
* Count: Number("int"), // required
|
|
31
|
+
* Name: "STRING_VALUE",
|
|
32
|
+
* OfferingId: "STRING_VALUE", // required
|
|
33
|
+
* RenewalSettings: {
|
|
34
|
+
* AutomaticRenewal: "DISABLED" || "ENABLED" || "UNAVAILABLE",
|
|
35
|
+
* RenewalCount: Number("int"),
|
|
36
|
+
* },
|
|
37
|
+
* RequestId: "STRING_VALUE",
|
|
38
|
+
* Start: "STRING_VALUE",
|
|
39
|
+
* Tags: {
|
|
40
|
+
* "<keys>": "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
29
43
|
* const command = new PurchaseOfferingCommand(input);
|
|
30
44
|
* const response = await client.send(command);
|
|
31
45
|
* ```
|
|
@@ -26,6 +26,10 @@ 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 = {
|
|
30
|
+
* Force: "NO" || "YES",
|
|
31
|
+
* InputDeviceId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new RebootInputDeviceCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* InputDeviceId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new RejectInputDeviceTransferCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* ChannelId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StartChannelCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,9 @@ 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 = {
|
|
31
|
+
* InputDeviceId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new StartInputDeviceMaintenanceWindowCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StartMultiplexCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* ChannelId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StopChannelCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ 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 = {
|
|
30
|
+
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StopMultiplexCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,12 @@ 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 = {
|
|
30
|
+
* InputDeviceId: "STRING_VALUE", // required
|
|
31
|
+
* TargetCustomerId: "STRING_VALUE",
|
|
32
|
+
* TargetRegion: "STRING_VALUE",
|
|
33
|
+
* TransferMessage: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TransferInputDeviceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|