@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,30 +26,30 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat
|
|
|
26
26
|
* import { MediaLiveClient, UpdateInputCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateInputCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Destinations: [
|
|
31
|
-
* {
|
|
29
|
+
* const input = { // UpdateInputRequest
|
|
30
|
+
* Destinations: [ // __listOfInputDestinationRequest
|
|
31
|
+
* { // InputDestinationRequest
|
|
32
32
|
* StreamName: "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* ],
|
|
35
|
-
* InputDevices: [
|
|
36
|
-
* {
|
|
35
|
+
* InputDevices: [ // __listOfInputDeviceRequest
|
|
36
|
+
* { // InputDeviceRequest
|
|
37
37
|
* Id: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* ],
|
|
40
40
|
* InputId: "STRING_VALUE", // required
|
|
41
|
-
* InputSecurityGroups: [
|
|
41
|
+
* InputSecurityGroups: [ // __listOf__string
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
|
-
* MediaConnectFlows: [
|
|
45
|
-
* {
|
|
44
|
+
* MediaConnectFlows: [ // __listOfMediaConnectFlowRequest
|
|
45
|
+
* { // MediaConnectFlowRequest
|
|
46
46
|
* FlowArn: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* ],
|
|
49
49
|
* Name: "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",
|
|
@@ -26,8 +26,8 @@ export interface UpdateInputDeviceCommandOutput extends UpdateInputDeviceRespons
|
|
|
26
26
|
* import { MediaLiveClient, UpdateInputDeviceCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateInputDeviceCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* HdDeviceSettings: {
|
|
29
|
+
* const input = { // UpdateInputDeviceRequest
|
|
30
|
+
* HdDeviceSettings: { // InputDeviceConfigurableSettings
|
|
31
31
|
* ConfiguredInput: "AUTO" || "HDMI" || "SDI",
|
|
32
32
|
* MaxBitrate: Number("int"),
|
|
33
33
|
* LatencyMs: Number("int"),
|
|
@@ -26,13 +26,13 @@ export interface UpdateInputSecurityGroupCommandOutput extends UpdateInputSecuri
|
|
|
26
26
|
* import { MediaLiveClient, UpdateInputSecurityGroupCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateInputSecurityGroupCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateInputSecurityGroupRequest
|
|
30
30
|
* InputSecurityGroupId: "STRING_VALUE", // required
|
|
31
|
-
* Tags: {
|
|
31
|
+
* Tags: { // Tags
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
|
-
* WhitelistRules: [
|
|
35
|
-
* {
|
|
34
|
+
* WhitelistRules: [ // __listOfInputWhitelistRuleCidr
|
|
35
|
+
* { // InputWhitelistRuleCidr
|
|
36
36
|
* Cidr: "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
38
|
* ],
|
|
@@ -26,9 +26,9 @@ export interface UpdateMultiplexCommandOutput extends UpdateMultiplexResponse, _
|
|
|
26
26
|
* import { MediaLiveClient, UpdateMultiplexCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateMultiplexCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateMultiplexRequest
|
|
30
30
|
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
-
* MultiplexSettings: {
|
|
31
|
+
* MultiplexSettings: { // MultiplexSettings
|
|
32
32
|
* MaximumVideoBufferDelayMilliseconds: Number("int"),
|
|
33
33
|
* TransportStreamBitrate: Number("int"), // required
|
|
34
34
|
* TransportStreamId: Number("int"), // required
|
|
@@ -26,18 +26,18 @@ export interface UpdateMultiplexProgramCommandOutput extends UpdateMultiplexProg
|
|
|
26
26
|
* import { MediaLiveClient, UpdateMultiplexProgramCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateMultiplexProgramCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateMultiplexProgramRequest
|
|
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,9 +26,9 @@ export interface UpdateReservationCommandOutput extends UpdateReservationRespons
|
|
|
26
26
|
* import { MediaLiveClient, UpdateReservationCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateReservationCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateReservationRequest
|
|
30
30
|
* Name: "STRING_VALUE",
|
|
31
|
-
* RenewalSettings: {
|
|
31
|
+
* RenewalSettings: { // RenewalSettings
|
|
32
32
|
* AutomaticRenewal: "DISABLED" || "ENABLED" || "UNAVAILABLE",
|
|
33
33
|
* RenewalCount: Number("int"),
|
|
34
34
|
* },
|