@aws-sdk/client-mediaconvert 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 +1160 -1353
- package/dist-cjs/models/models_1.js +1011 -1216
- package/dist-cjs/models/models_2.js +22 -27
- package/dist-es/models/models_0.js +1160 -1353
- package/dist-es/models/models_1.js +1011 -1216
- package/dist-es/models/models_2.js +22 -27
- package/dist-types/commands/AssociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +187 -187
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +184 -184
- package/dist-types/commands/CreatePresetCommand.d.ts +94 -94
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -3
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeletePresetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/commands/GetJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetPresetCommand.d.ts +1 -1
- package/dist-types/commands/GetQueueCommand.d.ts +1 -1
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListPresetsCommand.d.ts +1 -1
- package/dist-types/commands/ListQueuesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +183 -183
- package/dist-types/commands/UpdatePresetCommand.d.ts +93 -93
- package/dist-types/commands/UpdateQueueCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +2131 -1166
- package/dist-types/models/models_1.d.ts +2036 -1011
- package/dist-types/models/models_2.d.ts +47 -22
- package/dist-types/ts3.4/models/models_0.d.ts +1524 -1160
- package/dist-types/ts3.4/models/models_1.d.ts +1381 -1011
- package/dist-types/ts3.4/models/models_2.d.ts +28 -22
- package/package.json +34 -34
|
@@ -26,17 +26,17 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
26
26
|
* import { MediaConvertClient, CreatePresetCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
|
|
27
27
|
* // const { MediaConvertClient, CreatePresetCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
|
|
28
28
|
* const client = new MediaConvertClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreatePresetRequest
|
|
30
30
|
* Category: "STRING_VALUE",
|
|
31
31
|
* Description: "STRING_VALUE",
|
|
32
32
|
* Name: "STRING_VALUE", // required
|
|
33
|
-
* Settings: {
|
|
34
|
-
* AudioDescriptions: [
|
|
35
|
-
* {
|
|
36
|
-
* AudioChannelTaggingSettings: {
|
|
33
|
+
* Settings: { // PresetSettings
|
|
34
|
+
* AudioDescriptions: [ // __listOfAudioDescription
|
|
35
|
+
* { // AudioDescription
|
|
36
|
+
* AudioChannelTaggingSettings: { // AudioChannelTaggingSettings
|
|
37
37
|
* ChannelTag: "L" || "R" || "C" || "LFE" || "LS" || "RS" || "LC" || "RC" || "CS" || "LSD" || "RSD" || "TCS" || "VHL" || "VHC" || "VHR",
|
|
38
38
|
* },
|
|
39
|
-
* AudioNormalizationSettings: {
|
|
39
|
+
* AudioNormalizationSettings: { // AudioNormalizationSettings
|
|
40
40
|
* Algorithm: "ITU_BS_1770_1" || "ITU_BS_1770_2" || "ITU_BS_1770_3" || "ITU_BS_1770_4",
|
|
41
41
|
* AlgorithmControl: "CORRECT_AUDIO" || "MEASURE_ONLY",
|
|
42
42
|
* CorrectionGateLevel: Number("int"),
|
|
@@ -48,8 +48,8 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
48
48
|
* AudioSourceName: "STRING_VALUE",
|
|
49
49
|
* AudioType: Number("int"),
|
|
50
50
|
* AudioTypeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
51
|
-
* CodecSettings: {
|
|
52
|
-
* AacSettings: {
|
|
51
|
+
* CodecSettings: { // AudioCodecSettings
|
|
52
|
+
* AacSettings: { // AacSettings
|
|
53
53
|
* AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
54
54
|
* Bitrate: Number("int"),
|
|
55
55
|
* CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
@@ -60,7 +60,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
60
60
|
* Specification: "MPEG2" || "MPEG4",
|
|
61
61
|
* VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
62
62
|
* },
|
|
63
|
-
* Ac3Settings: {
|
|
63
|
+
* Ac3Settings: { // Ac3Settings
|
|
64
64
|
* Bitrate: Number("int"),
|
|
65
65
|
* BitstreamMode: "COMPLETE_MAIN" || "COMMENTARY" || "DIALOGUE" || "EMERGENCY" || "HEARING_IMPAIRED" || "MUSIC_AND_EFFECTS" || "VISUALLY_IMPAIRED" || "VOICE_OVER",
|
|
66
66
|
* CodingMode: "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_3_2_LFE",
|
|
@@ -72,13 +72,13 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
72
72
|
* MetadataControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
73
73
|
* SampleRate: Number("int"),
|
|
74
74
|
* },
|
|
75
|
-
* AiffSettings: {
|
|
75
|
+
* AiffSettings: { // AiffSettings
|
|
76
76
|
* BitDepth: Number("int"),
|
|
77
77
|
* Channels: Number("int"),
|
|
78
78
|
* SampleRate: Number("int"),
|
|
79
79
|
* },
|
|
80
80
|
* Codec: "AAC" || "MP2" || "MP3" || "WAV" || "AIFF" || "AC3" || "EAC3" || "EAC3_ATMOS" || "VORBIS" || "OPUS" || "PASSTHROUGH",
|
|
81
|
-
* Eac3AtmosSettings: {
|
|
81
|
+
* Eac3AtmosSettings: { // Eac3AtmosSettings
|
|
82
82
|
* Bitrate: Number("int"),
|
|
83
83
|
* BitstreamMode: "COMPLETE_MAIN",
|
|
84
84
|
* CodingMode: "CODING_MODE_AUTO" || "CODING_MODE_5_1_4" || "CODING_MODE_7_1_4" || "CODING_MODE_9_1_6",
|
|
@@ -97,7 +97,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
97
97
|
* StereoDownmix: "NOT_INDICATED" || "STEREO" || "SURROUND" || "DPL2",
|
|
98
98
|
* SurroundExMode: "NOT_INDICATED" || "ENABLED" || "DISABLED",
|
|
99
99
|
* },
|
|
100
|
-
* Eac3Settings: {
|
|
100
|
+
* Eac3Settings: { // Eac3Settings
|
|
101
101
|
* AttenuationControl: "ATTENUATE_3_DB" || "NONE",
|
|
102
102
|
* Bitrate: Number("int"),
|
|
103
103
|
* BitstreamMode: "COMPLETE_MAIN" || "COMMENTARY" || "EMERGENCY" || "HEARING_IMPAIRED" || "VISUALLY_IMPAIRED",
|
|
@@ -120,29 +120,29 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
120
120
|
* SurroundExMode: "NOT_INDICATED" || "ENABLED" || "DISABLED",
|
|
121
121
|
* SurroundMode: "NOT_INDICATED" || "ENABLED" || "DISABLED",
|
|
122
122
|
* },
|
|
123
|
-
* Mp2Settings: {
|
|
123
|
+
* Mp2Settings: { // Mp2Settings
|
|
124
124
|
* Bitrate: Number("int"),
|
|
125
125
|
* Channels: Number("int"),
|
|
126
126
|
* SampleRate: Number("int"),
|
|
127
127
|
* },
|
|
128
|
-
* Mp3Settings: {
|
|
128
|
+
* Mp3Settings: { // Mp3Settings
|
|
129
129
|
* Bitrate: Number("int"),
|
|
130
130
|
* Channels: Number("int"),
|
|
131
131
|
* RateControlMode: "CBR" || "VBR",
|
|
132
132
|
* SampleRate: Number("int"),
|
|
133
133
|
* VbrQuality: Number("int"),
|
|
134
134
|
* },
|
|
135
|
-
* OpusSettings: {
|
|
135
|
+
* OpusSettings: { // OpusSettings
|
|
136
136
|
* Bitrate: Number("int"),
|
|
137
137
|
* Channels: Number("int"),
|
|
138
138
|
* SampleRate: Number("int"),
|
|
139
139
|
* },
|
|
140
|
-
* VorbisSettings: {
|
|
140
|
+
* VorbisSettings: { // VorbisSettings
|
|
141
141
|
* Channels: Number("int"),
|
|
142
142
|
* SampleRate: Number("int"),
|
|
143
143
|
* VbrQuality: Number("int"),
|
|
144
144
|
* },
|
|
145
|
-
* WavSettings: {
|
|
145
|
+
* WavSettings: { // WavSettings
|
|
146
146
|
* BitDepth: Number("int"),
|
|
147
147
|
* Channels: Number("int"),
|
|
148
148
|
* Format: "RIFF" || "RF64",
|
|
@@ -152,14 +152,14 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
152
152
|
* CustomLanguageCode: "STRING_VALUE",
|
|
153
153
|
* LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
154
154
|
* LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
155
|
-
* RemixSettings: {
|
|
156
|
-
* ChannelMapping: {
|
|
157
|
-
* OutputChannels: [
|
|
158
|
-
* {
|
|
159
|
-
* InputChannels: [
|
|
155
|
+
* RemixSettings: { // RemixSettings
|
|
156
|
+
* ChannelMapping: { // ChannelMapping
|
|
157
|
+
* OutputChannels: [ // __listOfOutputChannelMapping
|
|
158
|
+
* { // OutputChannelMapping
|
|
159
|
+
* InputChannels: [ // __listOf__integerMinNegative60Max6
|
|
160
160
|
* Number("int"),
|
|
161
161
|
* ],
|
|
162
|
-
* InputChannelsFineTune: [
|
|
162
|
+
* InputChannelsFineTune: [ // __listOf__doubleMinNegative60Max6
|
|
163
163
|
* Number("double"),
|
|
164
164
|
* ],
|
|
165
165
|
* },
|
|
@@ -171,11 +171,11 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
171
171
|
* StreamName: "STRING_VALUE",
|
|
172
172
|
* },
|
|
173
173
|
* ],
|
|
174
|
-
* CaptionDescriptions: [
|
|
175
|
-
* {
|
|
174
|
+
* CaptionDescriptions: [ // __listOfCaptionDescriptionPreset
|
|
175
|
+
* { // CaptionDescriptionPreset
|
|
176
176
|
* CustomLanguageCode: "STRING_VALUE",
|
|
177
|
-
* DestinationSettings: {
|
|
178
|
-
* BurninDestinationSettings: {
|
|
177
|
+
* DestinationSettings: { // CaptionDestinationSettings
|
|
178
|
+
* BurninDestinationSettings: { // BurninDestinationSettings
|
|
179
179
|
* Alignment: "CENTERED" || "LEFT" || "AUTO",
|
|
180
180
|
* ApplyFontColor: "WHITE_TEXT_ONLY" || "ALL_TEXT",
|
|
181
181
|
* BackgroundColor: "NONE" || "BLACK" || "WHITE" || "AUTO",
|
|
@@ -199,7 +199,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
199
199
|
* YPosition: Number("int"),
|
|
200
200
|
* },
|
|
201
201
|
* DestinationType: "BURN_IN" || "DVB_SUB" || "EMBEDDED" || "EMBEDDED_PLUS_SCTE20" || "IMSC" || "SCTE20_PLUS_EMBEDDED" || "SCC" || "SRT" || "SMI" || "TELETEXT" || "TTML" || "WEBVTT",
|
|
202
|
-
* DvbSubDestinationSettings: {
|
|
202
|
+
* DvbSubDestinationSettings: { // DvbSubDestinationSettings
|
|
203
203
|
* Alignment: "CENTERED" || "LEFT" || "AUTO",
|
|
204
204
|
* ApplyFontColor: "WHITE_TEXT_ONLY" || "ALL_TEXT",
|
|
205
205
|
* BackgroundColor: "NONE" || "BLACK" || "WHITE" || "AUTO",
|
|
@@ -228,30 +228,30 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
228
228
|
* XPosition: Number("int"),
|
|
229
229
|
* YPosition: Number("int"),
|
|
230
230
|
* },
|
|
231
|
-
* EmbeddedDestinationSettings: {
|
|
231
|
+
* EmbeddedDestinationSettings: { // EmbeddedDestinationSettings
|
|
232
232
|
* Destination608ChannelNumber: Number("int"),
|
|
233
233
|
* Destination708ServiceNumber: Number("int"),
|
|
234
234
|
* },
|
|
235
|
-
* ImscDestinationSettings: {
|
|
235
|
+
* ImscDestinationSettings: { // ImscDestinationSettings
|
|
236
236
|
* Accessibility: "DISABLED" || "ENABLED",
|
|
237
237
|
* StylePassthrough: "ENABLED" || "DISABLED",
|
|
238
238
|
* },
|
|
239
|
-
* SccDestinationSettings: {
|
|
239
|
+
* SccDestinationSettings: { // SccDestinationSettings
|
|
240
240
|
* Framerate: "FRAMERATE_23_97" || "FRAMERATE_24" || "FRAMERATE_25" || "FRAMERATE_29_97_DROPFRAME" || "FRAMERATE_29_97_NON_DROPFRAME",
|
|
241
241
|
* },
|
|
242
|
-
* SrtDestinationSettings: {
|
|
242
|
+
* SrtDestinationSettings: { // SrtDestinationSettings
|
|
243
243
|
* StylePassthrough: "ENABLED" || "DISABLED",
|
|
244
244
|
* },
|
|
245
|
-
* TeletextDestinationSettings: {
|
|
245
|
+
* TeletextDestinationSettings: { // TeletextDestinationSettings
|
|
246
246
|
* PageNumber: "STRING_VALUE",
|
|
247
|
-
* PageTypes: [
|
|
247
|
+
* PageTypes: [ // __listOfTeletextPageType
|
|
248
248
|
* "PAGE_TYPE_INITIAL" || "PAGE_TYPE_SUBTITLE" || "PAGE_TYPE_ADDL_INFO" || "PAGE_TYPE_PROGRAM_SCHEDULE" || "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE",
|
|
249
249
|
* ],
|
|
250
250
|
* },
|
|
251
|
-
* TtmlDestinationSettings: {
|
|
251
|
+
* TtmlDestinationSettings: { // TtmlDestinationSettings
|
|
252
252
|
* StylePassthrough: "ENABLED" || "DISABLED",
|
|
253
253
|
* },
|
|
254
|
-
* WebvttDestinationSettings: {
|
|
254
|
+
* WebvttDestinationSettings: { // WebvttDestinationSettings
|
|
255
255
|
* Accessibility: "DISABLED" || "ENABLED",
|
|
256
256
|
* StylePassthrough: "ENABLED" || "DISABLED" || "STRICT",
|
|
257
257
|
* },
|
|
@@ -260,8 +260,8 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
260
260
|
* LanguageDescription: "STRING_VALUE",
|
|
261
261
|
* },
|
|
262
262
|
* ],
|
|
263
|
-
* ContainerSettings: {
|
|
264
|
-
* CmfcSettings: {
|
|
263
|
+
* ContainerSettings: { // ContainerSettings
|
|
264
|
+
* CmfcSettings: { // CmfcSettings
|
|
265
265
|
* AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
266
266
|
* AudioGroupId: "STRING_VALUE",
|
|
267
267
|
* AudioRenditionSets: "STRING_VALUE",
|
|
@@ -278,25 +278,25 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
278
278
|
* TimedMetadataValue: "STRING_VALUE",
|
|
279
279
|
* },
|
|
280
280
|
* Container: "F4V" || "ISMV" || "M2TS" || "M3U8" || "CMFC" || "MOV" || "MP4" || "MPD" || "MXF" || "WEBM" || "RAW",
|
|
281
|
-
* F4vSettings: {
|
|
281
|
+
* F4vSettings: { // F4vSettings
|
|
282
282
|
* MoovPlacement: "PROGRESSIVE_DOWNLOAD" || "NORMAL",
|
|
283
283
|
* },
|
|
284
|
-
* M2tsSettings: {
|
|
284
|
+
* M2tsSettings: { // M2tsSettings
|
|
285
285
|
* AudioBufferModel: "DVB" || "ATSC",
|
|
286
286
|
* AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
287
287
|
* AudioFramesPerPes: Number("int"),
|
|
288
|
-
* AudioPids: [
|
|
288
|
+
* AudioPids: [ // __listOf__integerMin32Max8182
|
|
289
289
|
* Number("int"),
|
|
290
290
|
* ],
|
|
291
291
|
* Bitrate: Number("int"),
|
|
292
292
|
* BufferModel: "MULTIPLEX" || "NONE",
|
|
293
293
|
* DataPTSControl: "AUTO" || "ALIGN_TO_VIDEO",
|
|
294
|
-
* DvbNitSettings: {
|
|
294
|
+
* DvbNitSettings: { // DvbNitSettings
|
|
295
295
|
* NetworkId: Number("int"),
|
|
296
296
|
* NetworkName: "STRING_VALUE",
|
|
297
297
|
* NitInterval: Number("int"),
|
|
298
298
|
* },
|
|
299
|
-
* DvbSdtSettings: {
|
|
299
|
+
* DvbSdtSettings: { // DvbSdtSettings
|
|
300
300
|
* OutputSdt: "SDT_FOLLOW" || "SDT_FOLLOW_IF_PRESENT" || "SDT_MANUAL" || "SDT_NONE",
|
|
301
301
|
* SdtInterval: Number("int"),
|
|
302
302
|
* ServiceName: "STRING_VALUE",
|
|
@@ -305,7 +305,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
305
305
|
* DvbSubPids: [
|
|
306
306
|
* Number("int"),
|
|
307
307
|
* ],
|
|
308
|
-
* DvbTdtSettings: {
|
|
308
|
+
* DvbTdtSettings: { // DvbTdtSettings
|
|
309
309
|
* TdtInterval: Number("int"),
|
|
310
310
|
* },
|
|
311
311
|
* DvbTeletextPid: Number("int"),
|
|
@@ -327,7 +327,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
327
327
|
* PrivateMetadataPid: Number("int"),
|
|
328
328
|
* ProgramNumber: Number("int"),
|
|
329
329
|
* RateMode: "VBR" || "CBR",
|
|
330
|
-
* Scte35Esam: {
|
|
330
|
+
* Scte35Esam: { // M2tsScte35Esam
|
|
331
331
|
* Scte35EsamPid: Number("int"),
|
|
332
332
|
* },
|
|
333
333
|
* Scte35Pid: Number("int"),
|
|
@@ -339,7 +339,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
339
339
|
* TransportStreamId: Number("int"),
|
|
340
340
|
* VideoPid: Number("int"),
|
|
341
341
|
* },
|
|
342
|
-
* M3u8Settings: {
|
|
342
|
+
* M3u8Settings: { // M3u8Settings
|
|
343
343
|
* AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
344
344
|
* AudioFramesPerPes: Number("int"),
|
|
345
345
|
* AudioPids: [
|
|
@@ -362,14 +362,14 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
362
362
|
* TransportStreamId: Number("int"),
|
|
363
363
|
* VideoPid: Number("int"),
|
|
364
364
|
* },
|
|
365
|
-
* MovSettings: {
|
|
365
|
+
* MovSettings: { // MovSettings
|
|
366
366
|
* ClapAtom: "INCLUDE" || "EXCLUDE",
|
|
367
367
|
* CslgAtom: "INCLUDE" || "EXCLUDE",
|
|
368
368
|
* Mpeg2FourCCControl: "XDCAM" || "MPEG",
|
|
369
369
|
* PaddingControl: "OMNEON" || "NONE",
|
|
370
370
|
* Reference: "SELF_CONTAINED" || "EXTERNAL",
|
|
371
371
|
* },
|
|
372
|
-
* Mp4Settings: {
|
|
372
|
+
* Mp4Settings: { // Mp4Settings
|
|
373
373
|
* AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
374
374
|
* CslgAtom: "INCLUDE" || "EXCLUDE",
|
|
375
375
|
* CttsVersion: Number("int"),
|
|
@@ -377,7 +377,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
377
377
|
* MoovPlacement: "PROGRESSIVE_DOWNLOAD" || "NORMAL",
|
|
378
378
|
* Mp4MajorBrand: "STRING_VALUE",
|
|
379
379
|
* },
|
|
380
|
-
* MpdSettings: {
|
|
380
|
+
* MpdSettings: { // MpdSettings
|
|
381
381
|
* AccessibilityCaptionHints: "INCLUDE" || "EXCLUDE",
|
|
382
382
|
* AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
383
383
|
* CaptionContainerType: "RAW" || "FRAGMENTED_MP4",
|
|
@@ -390,20 +390,20 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
390
390
|
* TimedMetadataSchemeIdUri: "STRING_VALUE",
|
|
391
391
|
* TimedMetadataValue: "STRING_VALUE",
|
|
392
392
|
* },
|
|
393
|
-
* MxfSettings: {
|
|
393
|
+
* MxfSettings: { // MxfSettings
|
|
394
394
|
* AfdSignaling: "NO_COPY" || "COPY_FROM_VIDEO",
|
|
395
395
|
* Profile: "D_10" || "XDCAM" || "OP1A" || "XAVC",
|
|
396
|
-
* XavcProfileSettings: {
|
|
396
|
+
* XavcProfileSettings: { // MxfXavcProfileSettings
|
|
397
397
|
* DurationMode: "ALLOW_ANY_DURATION" || "DROP_FRAMES_FOR_COMPLIANCE",
|
|
398
398
|
* MaxAncDataSize: Number("int"),
|
|
399
399
|
* },
|
|
400
400
|
* },
|
|
401
401
|
* },
|
|
402
|
-
* VideoDescription: {
|
|
402
|
+
* VideoDescription: { // VideoDescription
|
|
403
403
|
* AfdSignaling: "NONE" || "AUTO" || "FIXED",
|
|
404
404
|
* AntiAlias: "DISABLED" || "ENABLED",
|
|
405
|
-
* CodecSettings: {
|
|
406
|
-
* Av1Settings: {
|
|
405
|
+
* CodecSettings: { // VideoCodecSettings
|
|
406
|
+
* Av1Settings: { // Av1Settings
|
|
407
407
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX",
|
|
408
408
|
* BitDepth: "BIT_8" || "BIT_10",
|
|
409
409
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
@@ -413,7 +413,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
413
413
|
* GopSize: Number("double"),
|
|
414
414
|
* MaxBitrate: Number("int"),
|
|
415
415
|
* NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
416
|
-
* QvbrSettings: {
|
|
416
|
+
* QvbrSettings: { // Av1QvbrSettings
|
|
417
417
|
* QvbrQualityLevel: Number("int"),
|
|
418
418
|
* QvbrQualityLevelFineTune: Number("double"),
|
|
419
419
|
* },
|
|
@@ -421,9 +421,9 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
421
421
|
* Slices: Number("int"),
|
|
422
422
|
* SpatialAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
423
423
|
* },
|
|
424
|
-
* AvcIntraSettings: {
|
|
424
|
+
* AvcIntraSettings: { // AvcIntraSettings
|
|
425
425
|
* AvcIntraClass: "CLASS_50" || "CLASS_100" || "CLASS_200" || "CLASS_4K_2K",
|
|
426
|
-
* AvcIntraUhdSettings: {
|
|
426
|
+
* AvcIntraUhdSettings: { // AvcIntraUhdSettings
|
|
427
427
|
* QualityTuningLevel: "SINGLE_PASS" || "MULTI_PASS",
|
|
428
428
|
* },
|
|
429
429
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
@@ -436,15 +436,15 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
436
436
|
* Telecine: "NONE" || "HARD",
|
|
437
437
|
* },
|
|
438
438
|
* Codec: "AV1" || "AVC_INTRA" || "FRAME_CAPTURE" || "H_264" || "H_265" || "MPEG2" || "PRORES" || "VC3" || "VP8" || "VP9" || "XAVC",
|
|
439
|
-
* FrameCaptureSettings: {
|
|
439
|
+
* FrameCaptureSettings: { // FrameCaptureSettings
|
|
440
440
|
* FramerateDenominator: Number("int"),
|
|
441
441
|
* FramerateNumerator: Number("int"),
|
|
442
442
|
* MaxCaptures: Number("int"),
|
|
443
443
|
* Quality: Number("int"),
|
|
444
444
|
* },
|
|
445
|
-
* H264Settings: {
|
|
445
|
+
* H264Settings: { // H264Settings
|
|
446
446
|
* AdaptiveQuantization: "OFF" || "AUTO" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX",
|
|
447
|
-
* BandwidthReductionFilter: {
|
|
447
|
+
* BandwidthReductionFilter: { // BandwidthReductionFilter
|
|
448
448
|
* Sharpening: "LOW" || "MEDIUM" || "HIGH" || "OFF",
|
|
449
449
|
* Strength: "LOW" || "MEDIUM" || "HIGH" || "AUTO" || "OFF",
|
|
450
450
|
* },
|
|
@@ -475,7 +475,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
475
475
|
* ParDenominator: Number("int"),
|
|
476
476
|
* ParNumerator: Number("int"),
|
|
477
477
|
* QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
478
|
-
* QvbrSettings: {
|
|
478
|
+
* QvbrSettings: { // H264QvbrSettings
|
|
479
479
|
* MaxAverageBitrate: Number("int"),
|
|
480
480
|
* QvbrQualityLevel: Number("int"),
|
|
481
481
|
* QvbrQualityLevelFineTune: Number("double"),
|
|
@@ -493,7 +493,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
493
493
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
494
494
|
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
495
495
|
* },
|
|
496
|
-
* H265Settings: {
|
|
496
|
+
* H265Settings: { // H265Settings
|
|
497
497
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
498
498
|
* AlternateTransferFunctionSei: "DISABLED" || "ENABLED",
|
|
499
499
|
* Bitrate: Number("int"),
|
|
@@ -521,7 +521,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
521
521
|
* ParDenominator: Number("int"),
|
|
522
522
|
* ParNumerator: Number("int"),
|
|
523
523
|
* QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
524
|
-
* QvbrSettings: {
|
|
524
|
+
* QvbrSettings: { // H265QvbrSettings
|
|
525
525
|
* MaxAverageBitrate: Number("int"),
|
|
526
526
|
* QvbrQualityLevel: Number("int"),
|
|
527
527
|
* QvbrQualityLevelFineTune: Number("double"),
|
|
@@ -540,7 +540,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
540
540
|
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
541
541
|
* WriteMp4PackagingType: "HVC1" || "HEV1",
|
|
542
542
|
* },
|
|
543
|
-
* Mpeg2Settings: {
|
|
543
|
+
* Mpeg2Settings: { // Mpeg2Settings
|
|
544
544
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH",
|
|
545
545
|
* Bitrate: Number("int"),
|
|
546
546
|
* CodecLevel: "AUTO" || "LOW" || "MAIN" || "HIGH1440" || "HIGH",
|
|
@@ -575,7 +575,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
575
575
|
* Telecine: "NONE" || "SOFT" || "HARD",
|
|
576
576
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
577
577
|
* },
|
|
578
|
-
* ProresSettings: {
|
|
578
|
+
* ProresSettings: { // ProresSettings
|
|
579
579
|
* ChromaSampling: "PRESERVE_444_SAMPLING" || "SUBSAMPLE_TO_422",
|
|
580
580
|
* CodecProfile: "APPLE_PRORES_422" || "APPLE_PRORES_422_HQ" || "APPLE_PRORES_422_LT" || "APPLE_PRORES_422_PROXY" || "APPLE_PRORES_4444" || "APPLE_PRORES_4444_XQ",
|
|
581
581
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
@@ -590,7 +590,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
590
590
|
* SlowPal: "DISABLED" || "ENABLED",
|
|
591
591
|
* Telecine: "NONE" || "HARD",
|
|
592
592
|
* },
|
|
593
|
-
* Vc3Settings: {
|
|
593
|
+
* Vc3Settings: { // Vc3Settings
|
|
594
594
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
595
595
|
* FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
596
596
|
* FramerateDenominator: Number("int"),
|
|
@@ -601,7 +601,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
601
601
|
* Telecine: "NONE" || "HARD",
|
|
602
602
|
* Vc3Class: "CLASS_145_8BIT" || "CLASS_220_8BIT" || "CLASS_220_10BIT",
|
|
603
603
|
* },
|
|
604
|
-
* Vp8Settings: {
|
|
604
|
+
* Vp8Settings: { // Vp8Settings
|
|
605
605
|
* Bitrate: Number("int"),
|
|
606
606
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
607
607
|
* FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
@@ -616,7 +616,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
616
616
|
* QualityTuningLevel: "MULTI_PASS" || "MULTI_PASS_HQ",
|
|
617
617
|
* RateControlMode: "VBR",
|
|
618
618
|
* },
|
|
619
|
-
* Vp9Settings: {
|
|
619
|
+
* Vp9Settings: { // Vp9Settings
|
|
620
620
|
* Bitrate: Number("int"),
|
|
621
621
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
622
622
|
* FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
@@ -631,7 +631,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
631
631
|
* QualityTuningLevel: "MULTI_PASS" || "MULTI_PASS_HQ",
|
|
632
632
|
* RateControlMode: "VBR",
|
|
633
633
|
* },
|
|
634
|
-
* XavcSettings: {
|
|
634
|
+
* XavcSettings: { // XavcSettings
|
|
635
635
|
* AdaptiveQuantization: "OFF" || "AUTO" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX",
|
|
636
636
|
* EntropyEncoding: "AUTO" || "CABAC" || "CAVLC",
|
|
637
637
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
@@ -643,13 +643,13 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
643
643
|
* Softness: Number("int"),
|
|
644
644
|
* SpatialAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
645
645
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
646
|
-
* Xavc4kIntraCbgProfileSettings: {
|
|
646
|
+
* Xavc4kIntraCbgProfileSettings: { // Xavc4kIntraCbgProfileSettings
|
|
647
647
|
* XavcClass: "CLASS_100" || "CLASS_300" || "CLASS_480",
|
|
648
648
|
* },
|
|
649
|
-
* Xavc4kIntraVbrProfileSettings: {
|
|
649
|
+
* Xavc4kIntraVbrProfileSettings: { // Xavc4kIntraVbrProfileSettings
|
|
650
650
|
* XavcClass: "CLASS_100" || "CLASS_300" || "CLASS_480",
|
|
651
651
|
* },
|
|
652
|
-
* Xavc4kProfileSettings: {
|
|
652
|
+
* Xavc4kProfileSettings: { // Xavc4kProfileSettings
|
|
653
653
|
* BitrateClass: "BITRATE_CLASS_100" || "BITRATE_CLASS_140" || "BITRATE_CLASS_200",
|
|
654
654
|
* CodecProfile: "HIGH" || "HIGH_422",
|
|
655
655
|
* FlickerAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
@@ -659,10 +659,10 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
659
659
|
* QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
660
660
|
* Slices: Number("int"),
|
|
661
661
|
* },
|
|
662
|
-
* XavcHdIntraCbgProfileSettings: {
|
|
662
|
+
* XavcHdIntraCbgProfileSettings: { // XavcHdIntraCbgProfileSettings
|
|
663
663
|
* XavcClass: "CLASS_50" || "CLASS_100" || "CLASS_200",
|
|
664
664
|
* },
|
|
665
|
-
* XavcHdProfileSettings: {
|
|
665
|
+
* XavcHdProfileSettings: { // XavcHdProfileSettings
|
|
666
666
|
* BitrateClass: "BITRATE_CLASS_25" || "BITRATE_CLASS_35" || "BITRATE_CLASS_50",
|
|
667
667
|
* FlickerAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
668
668
|
* GopBReference: "DISABLED" || "ENABLED",
|
|
@@ -676,7 +676,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
676
676
|
* },
|
|
677
677
|
* },
|
|
678
678
|
* ColorMetadata: "IGNORE" || "INSERT",
|
|
679
|
-
* Crop: {
|
|
679
|
+
* Crop: { // Rectangle
|
|
680
680
|
* Height: Number("int"),
|
|
681
681
|
* Width: Number("int"),
|
|
682
682
|
* X: Number("int"),
|
|
@@ -695,10 +695,10 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
695
695
|
* ScalingBehavior: "DEFAULT" || "STRETCH_TO_OUTPUT",
|
|
696
696
|
* Sharpness: Number("int"),
|
|
697
697
|
* TimecodeInsertion: "DISABLED" || "PIC_TIMING_SEI",
|
|
698
|
-
* VideoPreprocessors: {
|
|
699
|
-
* ColorCorrector: {
|
|
698
|
+
* VideoPreprocessors: { // VideoPreprocessor
|
|
699
|
+
* ColorCorrector: { // ColorCorrector
|
|
700
700
|
* Brightness: Number("int"),
|
|
701
|
-
* ClipLimits: {
|
|
701
|
+
* ClipLimits: { // ClipLimits
|
|
702
702
|
* MaximumRGBTolerance: Number("int"),
|
|
703
703
|
* MaximumYUV: Number("int"),
|
|
704
704
|
* MinimumRGBTolerance: Number("int"),
|
|
@@ -706,7 +706,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
706
706
|
* },
|
|
707
707
|
* ColorSpaceConversion: "NONE" || "FORCE_601" || "FORCE_709" || "FORCE_HDR10" || "FORCE_HLG_2020" || "FORCE_P3DCI" || "FORCE_P3D65_SDR" || "FORCE_P3D65_HDR",
|
|
708
708
|
* Contrast: Number("int"),
|
|
709
|
-
* Hdr10Metadata: {
|
|
709
|
+
* Hdr10Metadata: { // Hdr10Metadata
|
|
710
710
|
* BluePrimaryX: Number("int"),
|
|
711
711
|
* BluePrimaryY: Number("int"),
|
|
712
712
|
* GreenPrimaryX: Number("int"),
|
|
@@ -726,13 +726,13 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
726
726
|
* Saturation: Number("int"),
|
|
727
727
|
* SdrReferenceWhiteLevel: Number("int"),
|
|
728
728
|
* },
|
|
729
|
-
* Deinterlacer: {
|
|
729
|
+
* Deinterlacer: { // Deinterlacer
|
|
730
730
|
* Algorithm: "INTERPOLATE" || "INTERPOLATE_TICKER" || "BLEND" || "BLEND_TICKER",
|
|
731
731
|
* Control: "FORCE_ALL_FRAMES" || "NORMAL",
|
|
732
732
|
* Mode: "DEINTERLACE" || "INVERSE_TELECINE" || "ADAPTIVE",
|
|
733
733
|
* },
|
|
734
|
-
* DolbyVision: {
|
|
735
|
-
* L6Metadata: {
|
|
734
|
+
* DolbyVision: { // DolbyVision
|
|
735
|
+
* L6Metadata: { // DolbyVisionLevel6Metadata
|
|
736
736
|
* MaxCll: Number("int"),
|
|
737
737
|
* MaxFall: Number("int"),
|
|
738
738
|
* },
|
|
@@ -740,13 +740,13 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
740
740
|
* Mapping: "HDR10_NOMAP" || "HDR10_1000",
|
|
741
741
|
* Profile: "PROFILE_5" || "PROFILE_8_1",
|
|
742
742
|
* },
|
|
743
|
-
* Hdr10Plus: {
|
|
743
|
+
* Hdr10Plus: { // Hdr10Plus
|
|
744
744
|
* MasteringMonitorNits: Number("int"),
|
|
745
745
|
* TargetMonitorNits: Number("int"),
|
|
746
746
|
* },
|
|
747
|
-
* ImageInserter: {
|
|
748
|
-
* InsertableImages: [
|
|
749
|
-
* {
|
|
747
|
+
* ImageInserter: { // ImageInserter
|
|
748
|
+
* InsertableImages: [ // __listOfInsertableImage
|
|
749
|
+
* { // InsertableImage
|
|
750
750
|
* Duration: Number("int"),
|
|
751
751
|
* FadeIn: Number("int"),
|
|
752
752
|
* FadeOut: Number("int"),
|
|
@@ -762,17 +762,17 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
762
762
|
* ],
|
|
763
763
|
* SdrReferenceWhiteLevel: Number("int"),
|
|
764
764
|
* },
|
|
765
|
-
* NoiseReducer: {
|
|
765
|
+
* NoiseReducer: { // NoiseReducer
|
|
766
766
|
* Filter: "BILATERAL" || "MEAN" || "GAUSSIAN" || "LANCZOS" || "SHARPEN" || "CONSERVE" || "SPATIAL" || "TEMPORAL",
|
|
767
|
-
* FilterSettings: {
|
|
767
|
+
* FilterSettings: { // NoiseReducerFilterSettings
|
|
768
768
|
* Strength: Number("int"),
|
|
769
769
|
* },
|
|
770
|
-
* SpatialFilterSettings: {
|
|
770
|
+
* SpatialFilterSettings: { // NoiseReducerSpatialFilterSettings
|
|
771
771
|
* PostFilterSharpenStrength: Number("int"),
|
|
772
772
|
* Speed: Number("int"),
|
|
773
773
|
* Strength: Number("int"),
|
|
774
774
|
* },
|
|
775
|
-
* TemporalFilterSettings: {
|
|
775
|
+
* TemporalFilterSettings: { // NoiseReducerTemporalFilterSettings
|
|
776
776
|
* AggressiveMode: Number("int"),
|
|
777
777
|
* PostTemporalSharpening: "DISABLED" || "ENABLED" || "AUTO",
|
|
778
778
|
* PostTemporalSharpeningStrength: "LOW" || "MEDIUM" || "HIGH",
|
|
@@ -780,15 +780,15 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
780
780
|
* Strength: Number("int"),
|
|
781
781
|
* },
|
|
782
782
|
* },
|
|
783
|
-
* PartnerWatermarking: {
|
|
784
|
-
* NexguardFileMarkerSettings: {
|
|
783
|
+
* PartnerWatermarking: { // PartnerWatermarking
|
|
784
|
+
* NexguardFileMarkerSettings: { // NexGuardFileMarkerSettings
|
|
785
785
|
* License: "STRING_VALUE",
|
|
786
786
|
* Payload: Number("int"),
|
|
787
787
|
* Preset: "STRING_VALUE",
|
|
788
788
|
* Strength: "LIGHTEST" || "LIGHTER" || "DEFAULT" || "STRONGER" || "STRONGEST",
|
|
789
789
|
* },
|
|
790
790
|
* },
|
|
791
|
-
* TimecodeBurnin: {
|
|
791
|
+
* TimecodeBurnin: { // TimecodeBurnin
|
|
792
792
|
* FontSize: Number("int"),
|
|
793
793
|
* Position: "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT" || "MIDDLE_LEFT" || "MIDDLE_CENTER" || "MIDDLE_RIGHT" || "BOTTOM_LEFT" || "BOTTOM_CENTER" || "BOTTOM_RIGHT",
|
|
794
794
|
* Prefix: "STRING_VALUE",
|
|
@@ -797,7 +797,7 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
797
797
|
* Width: Number("int"),
|
|
798
798
|
* },
|
|
799
799
|
* },
|
|
800
|
-
* Tags: {
|
|
800
|
+
* Tags: { // __mapOf__string
|
|
801
801
|
* "<keys>": "STRING_VALUE",
|
|
802
802
|
* },
|
|
803
803
|
* };
|
|
@@ -26,17 +26,17 @@ export interface CreateQueueCommandOutput extends CreateQueueResponse, __Metadat
|
|
|
26
26
|
* import { MediaConvertClient, CreateQueueCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
|
|
27
27
|
* // const { MediaConvertClient, CreateQueueCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
|
|
28
28
|
* const client = new MediaConvertClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateQueueRequest
|
|
30
30
|
* Description: "STRING_VALUE",
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* PricingPlan: "ON_DEMAND" || "RESERVED",
|
|
33
|
-
* ReservationPlanSettings: {
|
|
33
|
+
* ReservationPlanSettings: { // ReservationPlanSettings
|
|
34
34
|
* Commitment: "ONE_YEAR", // required
|
|
35
35
|
* RenewalType: "AUTO_RENEW" || "EXPIRE", // required
|
|
36
36
|
* ReservedSlots: Number("int"), // required
|
|
37
37
|
* },
|
|
38
38
|
* Status: "ACTIVE" || "PAUSED",
|
|
39
|
-
* Tags: {
|
|
39
|
+
* Tags: { // __mapOf__string
|
|
40
40
|
* "<keys>": "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
42
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
|
|
|
26
26
|
* import { MediaConvertClient, DeleteJobTemplateCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
|
|
27
27
|
* // const { MediaConvertClient, DeleteJobTemplateCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
|
|
28
28
|
* const client = new MediaConvertClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteJobTemplateRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteJobTemplateCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeletePresetCommandOutput extends DeletePresetResponse, __Metad
|
|
|
26
26
|
* import { MediaConvertClient, DeletePresetCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
|
|
27
27
|
* // const { MediaConvertClient, DeletePresetCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
|
|
28
28
|
* const client = new MediaConvertClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeletePresetRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeletePresetCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __Metadat
|
|
|
26
26
|
* import { MediaConvertClient, DeleteQueueCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
|
|
27
27
|
* // const { MediaConvertClient, DeleteQueueCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
|
|
28
28
|
* const client = new MediaConvertClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteQueueRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteQueueCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
|
|
|
26
26
|
* import { MediaConvertClient, DescribeEndpointsCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
|
|
27
27
|
* // const { MediaConvertClient, DescribeEndpointsCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
|
|
28
28
|
* const client = new MediaConvertClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeEndpointsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* Mode: "DEFAULT" || "GET_ONLY",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|