@aws-sdk/client-medialive 3.325.0 → 3.327.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 +7 -7
|
@@ -58,6 +58,59 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat
|
|
|
58
58
|
* };
|
|
59
59
|
* const command = new UpdateInputCommand(input);
|
|
60
60
|
* const response = await client.send(command);
|
|
61
|
+
* // { // UpdateInputResponse
|
|
62
|
+
* // Input: { // Input
|
|
63
|
+
* // Arn: "STRING_VALUE",
|
|
64
|
+
* // AttachedChannels: [ // __listOf__string
|
|
65
|
+
* // "STRING_VALUE",
|
|
66
|
+
* // ],
|
|
67
|
+
* // Destinations: [ // __listOfInputDestination
|
|
68
|
+
* // { // InputDestination
|
|
69
|
+
* // Ip: "STRING_VALUE",
|
|
70
|
+
* // Port: "STRING_VALUE",
|
|
71
|
+
* // Url: "STRING_VALUE",
|
|
72
|
+
* // Vpc: { // InputDestinationVpc
|
|
73
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
74
|
+
* // NetworkInterfaceId: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // Id: "STRING_VALUE",
|
|
79
|
+
* // InputClass: "STANDARD" || "SINGLE_PIPELINE",
|
|
80
|
+
* // InputDevices: [ // __listOfInputDeviceSettings
|
|
81
|
+
* // { // InputDeviceSettings
|
|
82
|
+
* // Id: "STRING_VALUE",
|
|
83
|
+
* // },
|
|
84
|
+
* // ],
|
|
85
|
+
* // InputPartnerIds: [
|
|
86
|
+
* // "STRING_VALUE",
|
|
87
|
+
* // ],
|
|
88
|
+
* // InputSourceType: "STATIC" || "DYNAMIC",
|
|
89
|
+
* // MediaConnectFlows: [ // __listOfMediaConnectFlow
|
|
90
|
+
* // { // MediaConnectFlow
|
|
91
|
+
* // FlowArn: "STRING_VALUE",
|
|
92
|
+
* // },
|
|
93
|
+
* // ],
|
|
94
|
+
* // Name: "STRING_VALUE",
|
|
95
|
+
* // RoleArn: "STRING_VALUE",
|
|
96
|
+
* // SecurityGroups: [
|
|
97
|
+
* // "STRING_VALUE",
|
|
98
|
+
* // ],
|
|
99
|
+
* // Sources: [ // __listOfInputSource
|
|
100
|
+
* // { // InputSource
|
|
101
|
+
* // PasswordParam: "STRING_VALUE",
|
|
102
|
+
* // Url: "STRING_VALUE",
|
|
103
|
+
* // Username: "STRING_VALUE",
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // State: "CREATING" || "DETACHED" || "ATTACHED" || "DELETING" || "DELETED",
|
|
107
|
+
* // Tags: { // Tags
|
|
108
|
+
* // "<keys>": "STRING_VALUE",
|
|
109
|
+
* // },
|
|
110
|
+
* // Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE",
|
|
111
|
+
* // },
|
|
112
|
+
* // };
|
|
113
|
+
*
|
|
61
114
|
* ```
|
|
62
115
|
*
|
|
63
116
|
* @param UpdateInputCommandInput - {@link UpdateInputCommandInput}
|
|
@@ -87,6 +140,8 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat
|
|
|
87
140
|
* @throws {@link NotFoundException} (client fault)
|
|
88
141
|
* Placeholder documentation for NotFoundException
|
|
89
142
|
*
|
|
143
|
+
* @throws {@link MediaLiveServiceException}
|
|
144
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
90
145
|
*
|
|
91
146
|
*/
|
|
92
147
|
export declare class UpdateInputCommand extends $Command<UpdateInputCommandInput, UpdateInputCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -42,6 +42,52 @@ export interface UpdateInputDeviceCommandOutput extends UpdateInputDeviceRespons
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new UpdateInputDeviceCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // UpdateInputDeviceResponse
|
|
46
|
+
* // Arn: "STRING_VALUE",
|
|
47
|
+
* // ConnectionState: "DISCONNECTED" || "CONNECTED",
|
|
48
|
+
* // DeviceSettingsSyncState: "SYNCED" || "SYNCING",
|
|
49
|
+
* // DeviceUpdateStatus: "UP_TO_DATE" || "NOT_UP_TO_DATE" || "UPDATING",
|
|
50
|
+
* // HdDeviceSettings: { // InputDeviceHdSettings
|
|
51
|
+
* // ActiveInput: "HDMI" || "SDI",
|
|
52
|
+
* // ConfiguredInput: "AUTO" || "HDMI" || "SDI",
|
|
53
|
+
* // DeviceState: "IDLE" || "STREAMING",
|
|
54
|
+
* // Framerate: Number("double"),
|
|
55
|
+
* // Height: Number("int"),
|
|
56
|
+
* // MaxBitrate: Number("int"),
|
|
57
|
+
* // ScanType: "INTERLACED" || "PROGRESSIVE",
|
|
58
|
+
* // Width: Number("int"),
|
|
59
|
+
* // LatencyMs: Number("int"),
|
|
60
|
+
* // },
|
|
61
|
+
* // Id: "STRING_VALUE",
|
|
62
|
+
* // MacAddress: "STRING_VALUE",
|
|
63
|
+
* // Name: "STRING_VALUE",
|
|
64
|
+
* // NetworkSettings: { // InputDeviceNetworkSettings
|
|
65
|
+
* // DnsAddresses: [ // __listOf__string
|
|
66
|
+
* // "STRING_VALUE",
|
|
67
|
+
* // ],
|
|
68
|
+
* // Gateway: "STRING_VALUE",
|
|
69
|
+
* // IpAddress: "STRING_VALUE",
|
|
70
|
+
* // IpScheme: "STATIC" || "DHCP",
|
|
71
|
+
* // SubnetMask: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // SerialNumber: "STRING_VALUE",
|
|
74
|
+
* // Type: "HD" || "UHD",
|
|
75
|
+
* // UhdDeviceSettings: { // InputDeviceUhdSettings
|
|
76
|
+
* // ActiveInput: "HDMI" || "SDI",
|
|
77
|
+
* // ConfiguredInput: "AUTO" || "HDMI" || "SDI",
|
|
78
|
+
* // DeviceState: "IDLE" || "STREAMING",
|
|
79
|
+
* // Framerate: Number("double"),
|
|
80
|
+
* // Height: Number("int"),
|
|
81
|
+
* // MaxBitrate: Number("int"),
|
|
82
|
+
* // ScanType: "INTERLACED" || "PROGRESSIVE",
|
|
83
|
+
* // Width: Number("int"),
|
|
84
|
+
* // LatencyMs: Number("int"),
|
|
85
|
+
* // },
|
|
86
|
+
* // Tags: { // Tags
|
|
87
|
+
* // "<keys>": "STRING_VALUE",
|
|
88
|
+
* // },
|
|
89
|
+
* // };
|
|
90
|
+
*
|
|
45
91
|
* ```
|
|
46
92
|
*
|
|
47
93
|
* @param UpdateInputDeviceCommandInput - {@link UpdateInputDeviceCommandInput}
|
|
@@ -74,6 +120,8 @@ export interface UpdateInputDeviceCommandOutput extends UpdateInputDeviceRespons
|
|
|
74
120
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
75
121
|
* Placeholder documentation for UnprocessableEntityException
|
|
76
122
|
*
|
|
123
|
+
* @throws {@link MediaLiveServiceException}
|
|
124
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
77
125
|
*
|
|
78
126
|
*/
|
|
79
127
|
export declare class UpdateInputDeviceCommand extends $Command<UpdateInputDeviceCommandInput, UpdateInputDeviceCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -39,6 +39,25 @@ export interface UpdateInputSecurityGroupCommandOutput extends UpdateInputSecuri
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new UpdateInputSecurityGroupCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // UpdateInputSecurityGroupResponse
|
|
43
|
+
* // SecurityGroup: { // InputSecurityGroup
|
|
44
|
+
* // Arn: "STRING_VALUE",
|
|
45
|
+
* // Id: "STRING_VALUE",
|
|
46
|
+
* // Inputs: [ // __listOf__string
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // State: "IDLE" || "IN_USE" || "UPDATING" || "DELETED",
|
|
50
|
+
* // Tags: { // Tags
|
|
51
|
+
* // "<keys>": "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // WhitelistRules: [ // __listOfInputWhitelistRule
|
|
54
|
+
* // { // InputWhitelistRule
|
|
55
|
+
* // Cidr: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
42
61
|
* ```
|
|
43
62
|
*
|
|
44
63
|
* @param UpdateInputSecurityGroupCommandInput - {@link UpdateInputSecurityGroupCommandInput}
|
|
@@ -68,6 +87,8 @@ export interface UpdateInputSecurityGroupCommandOutput extends UpdateInputSecuri
|
|
|
68
87
|
* @throws {@link NotFoundException} (client fault)
|
|
69
88
|
* Placeholder documentation for NotFoundException
|
|
70
89
|
*
|
|
90
|
+
* @throws {@link MediaLiveServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
71
92
|
*
|
|
72
93
|
*/
|
|
73
94
|
export declare class UpdateInputSecurityGroupCommand extends $Command<UpdateInputSecurityGroupCommandInput, UpdateInputSecurityGroupCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -38,6 +38,36 @@ export interface UpdateMultiplexCommandOutput extends UpdateMultiplexResponse, _
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateMultiplexCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // UpdateMultiplexResponse
|
|
42
|
+
* // Multiplex: { // Multiplex
|
|
43
|
+
* // Arn: "STRING_VALUE",
|
|
44
|
+
* // AvailabilityZones: [ // __listOf__string
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // Destinations: [ // __listOfMultiplexOutputDestination
|
|
48
|
+
* // { // MultiplexOutputDestination
|
|
49
|
+
* // MediaConnectSettings: { // MultiplexMediaConnectOutputDestinationSettings
|
|
50
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // Id: "STRING_VALUE",
|
|
55
|
+
* // MultiplexSettings: { // MultiplexSettings
|
|
56
|
+
* // MaximumVideoBufferDelayMilliseconds: Number("int"),
|
|
57
|
+
* // TransportStreamBitrate: Number("int"), // required
|
|
58
|
+
* // TransportStreamId: Number("int"), // required
|
|
59
|
+
* // TransportStreamReservedBitrate: Number("int"),
|
|
60
|
+
* // },
|
|
61
|
+
* // Name: "STRING_VALUE",
|
|
62
|
+
* // PipelinesRunningCount: Number("int"),
|
|
63
|
+
* // ProgramCount: Number("int"),
|
|
64
|
+
* // State: "CREATING" || "CREATE_FAILED" || "IDLE" || "STARTING" || "RUNNING" || "RECOVERING" || "STOPPING" || "DELETING" || "DELETED",
|
|
65
|
+
* // Tags: { // Tags
|
|
66
|
+
* // "<keys>": "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
41
71
|
* ```
|
|
42
72
|
*
|
|
43
73
|
* @param UpdateMultiplexCommandInput - {@link UpdateMultiplexCommandInput}
|
|
@@ -70,6 +100,8 @@ export interface UpdateMultiplexCommandOutput extends UpdateMultiplexResponse, _
|
|
|
70
100
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
71
101
|
* Placeholder documentation for UnprocessableEntityException
|
|
72
102
|
*
|
|
103
|
+
* @throws {@link MediaLiveServiceException}
|
|
104
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
73
105
|
*
|
|
74
106
|
*/
|
|
75
107
|
export declare class UpdateMultiplexCommand extends $Command<UpdateMultiplexCommandInput, UpdateMultiplexCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -48,6 +48,58 @@ export interface UpdateMultiplexProgramCommandOutput extends UpdateMultiplexProg
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new UpdateMultiplexProgramCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // UpdateMultiplexProgramResponse
|
|
52
|
+
* // MultiplexProgram: { // MultiplexProgram
|
|
53
|
+
* // ChannelId: "STRING_VALUE",
|
|
54
|
+
* // MultiplexProgramSettings: { // MultiplexProgramSettings
|
|
55
|
+
* // PreferredChannelPipeline: "CURRENTLY_ACTIVE" || "PIPELINE_0" || "PIPELINE_1",
|
|
56
|
+
* // ProgramNumber: Number("int"), // required
|
|
57
|
+
* // ServiceDescriptor: { // MultiplexProgramServiceDescriptor
|
|
58
|
+
* // ProviderName: "STRING_VALUE", // required
|
|
59
|
+
* // ServiceName: "STRING_VALUE", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // VideoSettings: { // MultiplexVideoSettings
|
|
62
|
+
* // ConstantBitrate: Number("int"),
|
|
63
|
+
* // StatmuxSettings: { // MultiplexStatmuxVideoSettings
|
|
64
|
+
* // MaximumBitrate: Number("int"),
|
|
65
|
+
* // MinimumBitrate: Number("int"),
|
|
66
|
+
* // Priority: Number("int"),
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // PacketIdentifiersMap: { // MultiplexProgramPacketIdentifiersMap
|
|
71
|
+
* // AudioPids: [ // __listOf__integer
|
|
72
|
+
* // Number("int"),
|
|
73
|
+
* // ],
|
|
74
|
+
* // DvbSubPids: [
|
|
75
|
+
* // Number("int"),
|
|
76
|
+
* // ],
|
|
77
|
+
* // DvbTeletextPid: Number("int"),
|
|
78
|
+
* // EtvPlatformPid: Number("int"),
|
|
79
|
+
* // EtvSignalPid: Number("int"),
|
|
80
|
+
* // KlvDataPids: [
|
|
81
|
+
* // Number("int"),
|
|
82
|
+
* // ],
|
|
83
|
+
* // PcrPid: Number("int"),
|
|
84
|
+
* // PmtPid: Number("int"),
|
|
85
|
+
* // PrivateMetadataPid: Number("int"),
|
|
86
|
+
* // Scte27Pids: [
|
|
87
|
+
* // Number("int"),
|
|
88
|
+
* // ],
|
|
89
|
+
* // Scte35Pid: Number("int"),
|
|
90
|
+
* // TimedMetadataPid: Number("int"),
|
|
91
|
+
* // VideoPid: Number("int"),
|
|
92
|
+
* // },
|
|
93
|
+
* // PipelineDetails: [ // __listOfMultiplexProgramPipelineDetail
|
|
94
|
+
* // { // MultiplexProgramPipelineDetail
|
|
95
|
+
* // ActiveChannelPipeline: "STRING_VALUE",
|
|
96
|
+
* // PipelineId: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
99
|
+
* // ProgramName: "STRING_VALUE",
|
|
100
|
+
* // },
|
|
101
|
+
* // };
|
|
102
|
+
*
|
|
51
103
|
* ```
|
|
52
104
|
*
|
|
53
105
|
* @param UpdateMultiplexProgramCommandInput - {@link UpdateMultiplexProgramCommandInput}
|
|
@@ -80,6 +132,8 @@ export interface UpdateMultiplexProgramCommandOutput extends UpdateMultiplexProg
|
|
|
80
132
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
81
133
|
* Placeholder documentation for UnprocessableEntityException
|
|
82
134
|
*
|
|
135
|
+
* @throws {@link MediaLiveServiceException}
|
|
136
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
83
137
|
*
|
|
84
138
|
*/
|
|
85
139
|
export declare class UpdateMultiplexProgramCommand extends $Command<UpdateMultiplexProgramCommandInput, UpdateMultiplexProgramCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -36,6 +36,44 @@ export interface UpdateReservationCommandOutput extends UpdateReservationRespons
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new UpdateReservationCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // UpdateReservationResponse
|
|
40
|
+
* // Reservation: { // Reservation
|
|
41
|
+
* // Arn: "STRING_VALUE",
|
|
42
|
+
* // Count: Number("int"),
|
|
43
|
+
* // CurrencyCode: "STRING_VALUE",
|
|
44
|
+
* // Duration: Number("int"),
|
|
45
|
+
* // DurationUnits: "MONTHS",
|
|
46
|
+
* // End: "STRING_VALUE",
|
|
47
|
+
* // FixedPrice: Number("double"),
|
|
48
|
+
* // Name: "STRING_VALUE",
|
|
49
|
+
* // OfferingDescription: "STRING_VALUE",
|
|
50
|
+
* // OfferingId: "STRING_VALUE",
|
|
51
|
+
* // OfferingType: "NO_UPFRONT",
|
|
52
|
+
* // Region: "STRING_VALUE",
|
|
53
|
+
* // RenewalSettings: { // RenewalSettings
|
|
54
|
+
* // AutomaticRenewal: "DISABLED" || "ENABLED" || "UNAVAILABLE",
|
|
55
|
+
* // RenewalCount: Number("int"),
|
|
56
|
+
* // },
|
|
57
|
+
* // ReservationId: "STRING_VALUE",
|
|
58
|
+
* // ResourceSpecification: { // ReservationResourceSpecification
|
|
59
|
+
* // ChannelClass: "STANDARD" || "SINGLE_PIPELINE",
|
|
60
|
+
* // Codec: "MPEG2" || "AVC" || "HEVC" || "AUDIO" || "LINK",
|
|
61
|
+
* // MaximumBitrate: "MAX_10_MBPS" || "MAX_20_MBPS" || "MAX_50_MBPS",
|
|
62
|
+
* // MaximumFramerate: "MAX_30_FPS" || "MAX_60_FPS",
|
|
63
|
+
* // Resolution: "SD" || "HD" || "FHD" || "UHD",
|
|
64
|
+
* // ResourceType: "INPUT" || "OUTPUT" || "MULTIPLEX" || "CHANNEL",
|
|
65
|
+
* // SpecialFeature: "ADVANCED_AUDIO" || "AUDIO_NORMALIZATION" || "MGHD" || "MGUHD",
|
|
66
|
+
* // VideoQuality: "STANDARD" || "ENHANCED" || "PREMIUM",
|
|
67
|
+
* // },
|
|
68
|
+
* // Start: "STRING_VALUE",
|
|
69
|
+
* // State: "ACTIVE" || "EXPIRED" || "CANCELED" || "DELETED",
|
|
70
|
+
* // Tags: { // Tags
|
|
71
|
+
* // "<keys>": "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // UsagePrice: Number("double"),
|
|
74
|
+
* // },
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
39
77
|
* ```
|
|
40
78
|
*
|
|
41
79
|
* @param UpdateReservationCommandInput - {@link UpdateReservationCommandInput}
|
|
@@ -68,6 +106,8 @@ export interface UpdateReservationCommandOutput extends UpdateReservationRespons
|
|
|
68
106
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
69
107
|
* Placeholder documentation for TooManyRequestsException
|
|
70
108
|
*
|
|
109
|
+
* @throws {@link MediaLiveServiceException}
|
|
110
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
71
111
|
*
|
|
72
112
|
*/
|
|
73
113
|
export declare class UpdateReservationCommand extends $Command<UpdateReservationCommandInput, UpdateReservationCommandOutput, MediaLiveClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-medialive",
|
|
3
3
|
"description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.327.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-stream-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-stream-node": "3.321.1",
|
|
55
55
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|