@aws-sdk/client-mediaconvert 3.36.1 → 3.40.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/CHANGELOG.md +43 -0
- package/dist-cjs/MediaConvert.js +45 -0
- package/dist-cjs/commands/DeletePolicyCommand.js +36 -0
- package/dist-cjs/commands/GetPolicyCommand.js +36 -0
- package/dist-cjs/commands/PutPolicyCommand.js +36 -0
- package/dist-cjs/commands/UpdateQueueCommand.js +3 -3
- package/dist-cjs/commands/index.js +31 -0
- package/dist-cjs/endpoints.js +142 -26
- package/dist-cjs/index.js +4 -33
- package/dist-cjs/models/index.js +1 -0
- package/dist-cjs/models/models_0.js +9 -9
- package/dist-cjs/models/models_1.js +58 -18
- package/dist-cjs/models/models_2.js +15 -0
- package/dist-cjs/pagination/index.js +9 -0
- package/dist-cjs/protocols/Aws_restJson1.js +339 -1
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/MediaConvert.js +45 -0
- package/dist-es/commands/DeletePolicyCommand.js +39 -0
- package/dist-es/commands/GetPolicyCommand.js +39 -0
- package/dist-es/commands/PutPolicyCommand.js +39 -0
- package/dist-es/commands/UpdateQueueCommand.js +1 -1
- package/dist-es/commands/index.js +28 -0
- package/dist-es/endpoints.js +142 -26
- package/dist-es/index.js +4 -33
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +5 -5
- package/dist-es/models/models_1.js +38 -8
- package/dist-es/models/models_2.js +9 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +387 -2
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/MediaConvert.d.ts +21 -0
- package/dist-types/MediaConvertClient.d.ts +13 -2
- package/dist-types/commands/DeletePolicyCommand.d.ts +35 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +35 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +35 -0
- package/dist-types/commands/UpdateQueueCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +28 -0
- package/dist-types/index.d.ts +4 -33
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +64 -66
- package/dist-types/models/models_1.d.ts +92 -37
- package/dist-types/models/models_2.d.ts +37 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/MediaConvert.d.ts +15 -0
- package/dist-types/ts3.4/MediaConvertClient.d.ts +9 -2
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +28 -0
- package/dist-types/ts3.4/index.d.ts +4 -33
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +6 -4
- package/dist-types/ts3.4/models/models_1.d.ts +64 -23
- package/dist-types/ts3.4/models/models_2.d.ts +23 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +32 -32
|
@@ -1161,95 +1161,91 @@ export declare enum BurninSubtitleTeletextSpacing {
|
|
|
1161
1161
|
PROPORTIONAL = "PROPORTIONAL"
|
|
1162
1162
|
}
|
|
1163
1163
|
/**
|
|
1164
|
-
*
|
|
1164
|
+
* Burn-in is a captions delivery method, rather than a captions format. Burn-in writes the captions directly on your video frames, replacing pixels of video content with the captions. Set up burn-in captions in the same output as your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/burn-in-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to BURN_IN.
|
|
1165
1165
|
*/
|
|
1166
1166
|
export interface BurninDestinationSettings {
|
|
1167
1167
|
/**
|
|
1168
|
-
* If no explicit x_position
|
|
1168
|
+
* Specify the alignment of your captions. If no explicit x_position is provided, setting alignment to centered will placethe captions at the bottom center of the output. Similarly, setting a left alignment willalign captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates.
|
|
1169
1169
|
*/
|
|
1170
1170
|
Alignment?: BurninSubtitleAlignment | string;
|
|
1171
1171
|
/**
|
|
1172
|
-
* Ignore this setting unless
|
|
1172
|
+
* Ignore this setting unless Style passthrough (StylePassthrough) is set to Enabled and Font color (FontColor) set to Black, Yellow, Red, Green, Blue, or Hex. Use Apply font color (ApplyFontColor) for additional font color controls. When you choose White text only (WHITE_TEXT_ONLY), or leave blank, your font color setting only applies to white text in your input captions. For example, if your font color setting is Yellow, and your input captions have red and white text, your output captions will have red and yellow text. When you choose ALL_TEXT, your font color setting applies to all of your output captions text.
|
|
1173
1173
|
*/
|
|
1174
1174
|
ApplyFontColor?: BurninSubtitleApplyFontColor | string;
|
|
1175
1175
|
/**
|
|
1176
|
-
*
|
|
1177
|
-
* All burn-in and DVB-Sub font settings must match.
|
|
1176
|
+
* Specify the color of the rectangle behind the captions. Leave background color (BackgroundColor) blank and set Style passthrough (StylePassthrough) to enabled to use the background color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1178
1177
|
*/
|
|
1179
1178
|
BackgroundColor?: BurninSubtitleBackgroundColor | string;
|
|
1180
1179
|
/**
|
|
1181
|
-
*
|
|
1180
|
+
* Specify the opacity of the background rectangle. Enter a value from 0 to 255, where 0 is transparent and 255 is opaque. If Style passthrough (StylePassthrough) is set to enabled, leave blank to pass through the background style information in your input captions to your output captions. If Style passthrough is set to disabled, leave blank to use a value of 0 and remove all backgrounds from your output captions.
|
|
1182
1181
|
*/
|
|
1183
1182
|
BackgroundOpacity?: number;
|
|
1184
1183
|
/**
|
|
1185
|
-
* Specify the font that you want the service to use for your burn in captions when your input captions specify a font that MediaConvert doesn't support. When you
|
|
1184
|
+
* Specify the font that you want the service to use for your burn in captions when your input captions specify a font that MediaConvert doesn't support. When you set Fallback font (FallbackFont) to best match (BEST_MATCH), or leave blank, MediaConvert uses a supported font that most closely matches the font that your input captions specify. When there are multiple unsupported fonts in your input captions, MediaConvert matches each font with the supported font that matches best. When you explicitly choose a replacement font, MediaConvert uses that font to replace all unsupported fonts from your input.
|
|
1186
1185
|
*/
|
|
1187
1186
|
FallbackFont?: BurninSubtitleFallbackFont | string;
|
|
1188
1187
|
/**
|
|
1189
|
-
*
|
|
1188
|
+
* Specify the color of the burned-in captions text. Leave Font color (FontColor) blank and set Style passthrough (StylePassthrough) to enabled to use the font color data from your input captions, if present.
|
|
1190
1189
|
*/
|
|
1191
1190
|
FontColor?: BurninSubtitleFontColor | string;
|
|
1192
1191
|
/**
|
|
1193
|
-
*
|
|
1194
|
-
* All burn-in and DVB-Sub font settings must match.
|
|
1192
|
+
* Specify the opacity of the burned-in captions. 255 is opaque; 0 is transparent.
|
|
1195
1193
|
*/
|
|
1196
1194
|
FontOpacity?: number;
|
|
1197
1195
|
/**
|
|
1198
|
-
* Font resolution in DPI (dots per inch)
|
|
1199
|
-
* All burn-in and DVB-Sub font settings must match.
|
|
1196
|
+
* Specify the Font resolution (FontResolution) in DPI (dots per inch).
|
|
1200
1197
|
*/
|
|
1201
1198
|
FontResolution?: number;
|
|
1202
1199
|
/**
|
|
1203
|
-
*
|
|
1200
|
+
* Set Font script (FontScript) to Automatically determined (AUTOMATIC), or leave blank, to automatically determine the font script in your input captions. Otherwise, set to Simplified Chinese (HANS) or Traditional Chinese (HANT) if your input font script uses Simplified or Traditional Chinese.
|
|
1204
1201
|
*/
|
|
1205
1202
|
FontScript?: FontScript | string;
|
|
1206
1203
|
/**
|
|
1207
|
-
*
|
|
1204
|
+
* Specify the Font size (FontSize) in pixels. Must be a positive integer. Set to 0, or leave blank, for automatic font size.
|
|
1208
1205
|
*/
|
|
1209
1206
|
FontSize?: number;
|
|
1210
1207
|
/**
|
|
1211
|
-
* Ignore this setting unless your
|
|
1208
|
+
* Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexidecimal digits, representing red, green, and blue, with two optional extra digits for alpha. For example a value of 1122AABB is a red value of 0x11, a green value of 0x22, a blue value of 0xAA, and an alpha value of 0xBB.
|
|
1212
1209
|
*/
|
|
1213
1210
|
HexFontColor?: string;
|
|
1214
1211
|
/**
|
|
1215
|
-
*
|
|
1212
|
+
* Specify font outline color. Leave Outline color (OutlineColor) blank and set Style passthrough (StylePassthrough) to enabled to use the font outline color data from your input captions, if present.
|
|
1216
1213
|
*/
|
|
1217
1214
|
OutlineColor?: BurninSubtitleOutlineColor | string;
|
|
1218
1215
|
/**
|
|
1219
|
-
*
|
|
1216
|
+
* Specify the Outline size (OutlineSize) of the caption text, in pixels. Leave Outline size blank and set Style passthrough (StylePassthrough) to enabled to use the outline size data from your input captions, if present.
|
|
1220
1217
|
*/
|
|
1221
1218
|
OutlineSize?: number;
|
|
1222
1219
|
/**
|
|
1223
|
-
*
|
|
1224
|
-
* All burn-in and DVB-Sub font settings must match.
|
|
1220
|
+
* Specify the color of the shadow cast by the captions. Leave Shadow color (ShadowColor) blank and set Style passthrough (StylePassthrough) to enabled to use the shadow color data from your input captions, if present.
|
|
1225
1221
|
*/
|
|
1226
1222
|
ShadowColor?: BurninSubtitleShadowColor | string;
|
|
1227
1223
|
/**
|
|
1228
|
-
*
|
|
1224
|
+
* Specify the opacity of the shadow. Enter a value from 0 to 255, where 0 is transparent and 255 is opaque. If Style passthrough (StylePassthrough) is set to Enabled, leave Shadow opacity (ShadowOpacity) blank to pass through the shadow style information in your input captions to your output captions. If Style passthrough is set to disabled, leave blank to use a value of 0 and remove all shadows from your output captions.
|
|
1229
1225
|
*/
|
|
1230
1226
|
ShadowOpacity?: number;
|
|
1231
1227
|
/**
|
|
1232
|
-
*
|
|
1228
|
+
* Specify the horizontal offset of the shadow, relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left.
|
|
1233
1229
|
*/
|
|
1234
1230
|
ShadowXOffset?: number;
|
|
1235
1231
|
/**
|
|
1236
|
-
*
|
|
1232
|
+
* Specify the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. Leave Shadow y-offset (ShadowYOffset) blank and set Style passthrough (StylePassthrough) to enabled to use the shadow y-offset data from your input captions, if present.
|
|
1237
1233
|
*/
|
|
1238
1234
|
ShadowYOffset?: number;
|
|
1239
1235
|
/**
|
|
1240
|
-
*
|
|
1236
|
+
* Set Style passthrough (StylePassthrough) to ENABLED to use the available style, color, and position information from your input captions. MediaConvert uses default settings for any missing style and position information in your input captions. Set Style passthrough to DISABLED, or leave blank, to ignore the style and position information from your input captions and use default settings: white text with black outlining, bottom-center positioning, and automatic sizing. Whether you set Style passthrough to enabled or not, you can also choose to manually override any of the individual style and position settings.
|
|
1241
1237
|
*/
|
|
1242
1238
|
StylePassthrough?: BurnInSubtitleStylePassthrough | string;
|
|
1243
1239
|
/**
|
|
1244
|
-
*
|
|
1240
|
+
* Specify whether the text spacing (TeletextSpacing) in your captions is set by the captions grid, or varies depending on letter width. Choose fixed grid (FIXED_GRID) to conform to the spacing specified in the captions file more accurately. Choose proportional (PROPORTIONAL) to make the text easier to read for closed captions.
|
|
1245
1241
|
*/
|
|
1246
1242
|
TeletextSpacing?: BurninSubtitleTeletextSpacing | string;
|
|
1247
1243
|
/**
|
|
1248
|
-
*
|
|
1244
|
+
* Specify the horizontal position (XPosition) of the captions, relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit x_position is provided, the horizontal caption position will be determined by the alignment parameter.
|
|
1249
1245
|
*/
|
|
1250
1246
|
XPosition?: number;
|
|
1251
1247
|
/**
|
|
1252
|
-
*
|
|
1248
|
+
* Specify the vertical position (YPosition) of the captions, relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit y_position is provided, the caption will be positioned towards the bottom of the output.
|
|
1253
1249
|
*/
|
|
1254
1250
|
YPosition?: number;
|
|
1255
1251
|
}
|
|
@@ -1343,20 +1339,19 @@ export declare enum DvbSubtitleTeletextSpacing {
|
|
|
1343
1339
|
*/
|
|
1344
1340
|
export interface DvbSubDestinationSettings {
|
|
1345
1341
|
/**
|
|
1346
|
-
* If no explicit x_position
|
|
1342
|
+
* Specify the alignment of your captions. If no explicit x_position is provided, setting alignment to centered will placethe captions at the bottom center of the output. Similarly, setting a left alignment willalign captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1347
1343
|
*/
|
|
1348
1344
|
Alignment?: DvbSubtitleAlignment | string;
|
|
1349
1345
|
/**
|
|
1350
|
-
* Ignore this setting unless
|
|
1346
|
+
* Ignore this setting unless Style Passthrough (StylePassthrough) is set to Enabled and Font color (FontColor) set to Black, Yellow, Red, Green, Blue, or Hex. Use Apply font color (ApplyFontColor) for additional font color controls. When you choose White text only (WHITE_TEXT_ONLY), or leave blank, your font color setting only applies to white text in your input captions. For example, if your font color setting is Yellow, and your input captions have red and white text, your output captions will have red and yellow text. When you choose ALL_TEXT, your font color setting applies to all of your output captions text.
|
|
1351
1347
|
*/
|
|
1352
1348
|
ApplyFontColor?: DvbSubtitleApplyFontColor | string;
|
|
1353
1349
|
/**
|
|
1354
|
-
*
|
|
1355
|
-
* All burn-in and DVB-Sub font settings must match.
|
|
1350
|
+
* Specify the color of the rectangle behind the captions. Leave background color (BackgroundColor) blank and set Style passthrough (StylePassthrough) to enabled to use the background color data from your input captions, if present.
|
|
1356
1351
|
*/
|
|
1357
1352
|
BackgroundColor?: DvbSubtitleBackgroundColor | string;
|
|
1358
1353
|
/**
|
|
1359
|
-
*
|
|
1354
|
+
* Specify the opacity of the background rectangle. Enter a value from 0 to 255, where 0 is transparent and 255 is opaque. If Style passthrough (StylePassthrough) is set to enabled, leave blank to pass through the background style information in your input captions to your output captions. If Style passthrough is set to disabled, leave blank to use a value of 0 and remove all backgrounds from your output captions. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1360
1355
|
*/
|
|
1361
1356
|
BackgroundOpacity?: number;
|
|
1362
1357
|
/**
|
|
@@ -1372,29 +1367,29 @@ export interface DvbSubDestinationSettings {
|
|
|
1372
1367
|
*/
|
|
1373
1368
|
DdsYCoordinate?: number;
|
|
1374
1369
|
/**
|
|
1375
|
-
* Specify the font that you want the service to use for your burn in captions when your input captions specify a font that MediaConvert doesn't support. When you
|
|
1370
|
+
* Specify the font that you want the service to use for your burn in captions when your input captions specify a font that MediaConvert doesn't support. When you set Fallback font (FallbackFont) to best match (BEST_MATCH), or leave blank, MediaConvert uses a supported font that most closely matches the font that your input captions specify. When there are multiple unsupported fonts in your input captions, MediaConvert matches each font with the supported font that matches best. When you explicitly choose a replacement font, MediaConvert uses that font to replace all unsupported fonts from your input.
|
|
1376
1371
|
*/
|
|
1377
1372
|
FallbackFont?: DvbSubSubtitleFallbackFont | string;
|
|
1378
1373
|
/**
|
|
1379
|
-
*
|
|
1374
|
+
* Specify the color of the captions text. Leave Font color (FontColor) blank and set Style passthrough (StylePassthrough) to enabled to use the font color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1380
1375
|
*/
|
|
1381
1376
|
FontColor?: DvbSubtitleFontColor | string;
|
|
1382
1377
|
/**
|
|
1383
|
-
*
|
|
1384
|
-
*
|
|
1378
|
+
* Specify the opacity of the burned-in captions. 255 is opaque; 0 is transparent.
|
|
1379
|
+
* Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1385
1380
|
*/
|
|
1386
1381
|
FontOpacity?: number;
|
|
1387
1382
|
/**
|
|
1388
|
-
* Font resolution in DPI (dots per inch)
|
|
1389
|
-
*
|
|
1383
|
+
* Specify the Font resolution (FontResolution) in DPI (dots per inch).
|
|
1384
|
+
* Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1390
1385
|
*/
|
|
1391
1386
|
FontResolution?: number;
|
|
1392
1387
|
/**
|
|
1393
|
-
*
|
|
1388
|
+
* Set Font script (FontScript) to Automatically determined (AUTOMATIC), or leave blank, to automatically determine the font script in your input captions. Otherwise, set to Simplified Chinese (HANS) or Traditional Chinese (HANT) if your input font script uses Simplified or Traditional Chinese. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1394
1389
|
*/
|
|
1395
1390
|
FontScript?: FontScript | string;
|
|
1396
1391
|
/**
|
|
1397
|
-
*
|
|
1392
|
+
* Specify the Font size (FontSize) in pixels. Must be a positive integer. Set to 0, or leave blank, for automatic font size. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1398
1393
|
*/
|
|
1399
1394
|
FontSize?: number;
|
|
1400
1395
|
/**
|
|
@@ -1402,36 +1397,35 @@ export interface DvbSubDestinationSettings {
|
|
|
1402
1397
|
*/
|
|
1403
1398
|
Height?: number;
|
|
1404
1399
|
/**
|
|
1405
|
-
* Ignore this setting unless your
|
|
1400
|
+
* Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexidecimal digits, representing red, green, and blue, with two optional extra digits for alpha. For example a value of 1122AABB is a red value of 0x11, a green value of 0x22, a blue value of 0xAA, and an alpha value of 0xBB.
|
|
1406
1401
|
*/
|
|
1407
1402
|
HexFontColor?: string;
|
|
1408
1403
|
/**
|
|
1409
|
-
*
|
|
1404
|
+
* Specify font outline color. Leave Outline color (OutlineColor) blank and set Style passthrough (StylePassthrough) to enabled to use the font outline color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1410
1405
|
*/
|
|
1411
1406
|
OutlineColor?: DvbSubtitleOutlineColor | string;
|
|
1412
1407
|
/**
|
|
1413
|
-
*
|
|
1408
|
+
* Specify the Outline size (OutlineSize) of the caption text, in pixels. Leave Outline size blank and set Style passthrough (StylePassthrough) to enabled to use the outline size data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1414
1409
|
*/
|
|
1415
1410
|
OutlineSize?: number;
|
|
1416
1411
|
/**
|
|
1417
|
-
*
|
|
1418
|
-
* All burn-in and DVB-Sub font settings must match.
|
|
1412
|
+
* Specify the color of the shadow cast by the captions. Leave Shadow color (ShadowColor) blank and set Style passthrough (StylePassthrough) to enabled to use the shadow color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1419
1413
|
*/
|
|
1420
1414
|
ShadowColor?: DvbSubtitleShadowColor | string;
|
|
1421
1415
|
/**
|
|
1422
|
-
*
|
|
1416
|
+
* Specify the opacity of the shadow. Enter a value from 0 to 255, where 0 is transparent and 255 is opaque. If Style passthrough (StylePassthrough) is set to Enabled, leave Shadow opacity (ShadowOpacity) blank to pass through the shadow style information in your input captions to your output captions. If Style passthrough is set to disabled, leave blank to use a value of 0 and remove all shadows from your output captions. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1423
1417
|
*/
|
|
1424
1418
|
ShadowOpacity?: number;
|
|
1425
1419
|
/**
|
|
1426
|
-
*
|
|
1420
|
+
* Specify the horizontal offset of the shadow, relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1427
1421
|
*/
|
|
1428
1422
|
ShadowXOffset?: number;
|
|
1429
1423
|
/**
|
|
1430
|
-
*
|
|
1424
|
+
* Specify the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. Leave Shadow y-offset (ShadowYOffset) blank and set Style passthrough (StylePassthrough) to enabled to use the shadow y-offset data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1431
1425
|
*/
|
|
1432
1426
|
ShadowYOffset?: number;
|
|
1433
1427
|
/**
|
|
1434
|
-
*
|
|
1428
|
+
* Set Style passthrough (StylePassthrough) to ENABLED to use the available style, color, and position information from your input captions. MediaConvert uses default settings for any missing style and position information in your input captions. Set Style passthrough to DISABLED, or leave blank, to ignore the style and position information from your input captions and use default settings: white text with black outlining, bottom-center positioning, and automatic sizing. Whether you set Style passthrough to enabled or not, you can also choose to manually override any of the individual style and position settings.
|
|
1435
1429
|
*/
|
|
1436
1430
|
StylePassthrough?: DvbSubtitleStylePassthrough | string;
|
|
1437
1431
|
/**
|
|
@@ -1439,7 +1433,7 @@ export interface DvbSubDestinationSettings {
|
|
|
1439
1433
|
*/
|
|
1440
1434
|
SubtitlingType?: DvbSubtitlingType | string;
|
|
1441
1435
|
/**
|
|
1442
|
-
*
|
|
1436
|
+
* Specify whether the Text spacing (TextSpacing) in your captions is set by the captions grid, or varies depending on letter width. Choose fixed grid (FIXED_GRID) to conform to the spacing specified in the captions file more accurately. Choose proportional (PROPORTIONAL) to make the text easier to read for closed captions. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1443
1437
|
*/
|
|
1444
1438
|
TeletextSpacing?: DvbSubtitleTeletextSpacing | string;
|
|
1445
1439
|
/**
|
|
@@ -1447,11 +1441,11 @@ export interface DvbSubDestinationSettings {
|
|
|
1447
1441
|
*/
|
|
1448
1442
|
Width?: number;
|
|
1449
1443
|
/**
|
|
1450
|
-
*
|
|
1444
|
+
* Specify the horizontal position (XPosition) of the captions, relative to the left side of the outputin pixels. A value of 10 would result in the captions starting 10 pixels from the left ofthe output. If no explicit x_position is provided, the horizontal caption position will bedetermined by the alignment parameter. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1451
1445
|
*/
|
|
1452
1446
|
XPosition?: number;
|
|
1453
1447
|
/**
|
|
1454
|
-
*
|
|
1448
|
+
* Specify the vertical position (YPosition) of the captions, relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit y_position is provided, the caption will be positioned towards the bottom of the output. Within your job settings, all of your DVB-Sub settings must be identical.
|
|
1455
1449
|
*/
|
|
1456
1450
|
YPosition?: number;
|
|
1457
1451
|
}
|
|
@@ -1526,11 +1520,11 @@ export declare enum SrtStylePassthrough {
|
|
|
1526
1520
|
ENABLED = "ENABLED"
|
|
1527
1521
|
}
|
|
1528
1522
|
/**
|
|
1529
|
-
* SRT
|
|
1523
|
+
* Settings related to SRT captions. SRT is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to SRT.
|
|
1530
1524
|
*/
|
|
1531
1525
|
export interface SrtDestinationSettings {
|
|
1532
1526
|
/**
|
|
1533
|
-
*
|
|
1527
|
+
* Set Style passthrough (StylePassthrough) to ENABLED to use the available style, color, and position information from your input captions. MediaConvert uses default settings for any missing style and position information in your input captions. Set Style passthrough to DISABLED, or leave blank, to ignore the style and position information from your input captions and use simplified output captions.
|
|
1534
1528
|
*/
|
|
1535
1529
|
StylePassthrough?: SrtStylePassthrough | string;
|
|
1536
1530
|
}
|
|
@@ -1590,11 +1584,11 @@ export declare enum WebvttStylePassthrough {
|
|
|
1590
1584
|
ENABLED = "ENABLED"
|
|
1591
1585
|
}
|
|
1592
1586
|
/**
|
|
1593
|
-
*
|
|
1587
|
+
* Settings related to WebVTT captions. WebVTT is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/ttml-and-webvtt-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to WebVTT.
|
|
1594
1588
|
*/
|
|
1595
1589
|
export interface WebvttDestinationSettings {
|
|
1596
1590
|
/**
|
|
1597
|
-
*
|
|
1591
|
+
* Set Style passthrough (StylePassthrough) to ENABLED to use the available style, color, and position information from your input captions. MediaConvert uses default settings for any missing style and position information in your input captions. Set Style passthrough to DISABLED, or leave blank, to ignore the style and position information from your input captions and use simplified output captions.
|
|
1598
1592
|
*/
|
|
1599
1593
|
StylePassthrough?: WebvttStylePassthrough | string;
|
|
1600
1594
|
}
|
|
@@ -1609,7 +1603,7 @@ export declare namespace WebvttDestinationSettings {
|
|
|
1609
1603
|
*/
|
|
1610
1604
|
export interface CaptionDestinationSettings {
|
|
1611
1605
|
/**
|
|
1612
|
-
*
|
|
1606
|
+
* Burn-in is a captions delivery method, rather than a captions format. Burn-in writes the captions directly on your video frames, replacing pixels of video content with the captions. Set up burn-in captions in the same output as your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/burn-in-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to BURN_IN.
|
|
1613
1607
|
*/
|
|
1614
1608
|
BurninDestinationSettings?: BurninDestinationSettings;
|
|
1615
1609
|
/**
|
|
@@ -1633,7 +1627,7 @@ export interface CaptionDestinationSettings {
|
|
|
1633
1627
|
*/
|
|
1634
1628
|
SccDestinationSettings?: SccDestinationSettings;
|
|
1635
1629
|
/**
|
|
1636
|
-
* SRT
|
|
1630
|
+
* Settings related to SRT captions. SRT is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to SRT.
|
|
1637
1631
|
*/
|
|
1638
1632
|
SrtDestinationSettings?: SrtDestinationSettings;
|
|
1639
1633
|
/**
|
|
@@ -1645,7 +1639,7 @@ export interface CaptionDestinationSettings {
|
|
|
1645
1639
|
*/
|
|
1646
1640
|
TtmlDestinationSettings?: TtmlDestinationSettings;
|
|
1647
1641
|
/**
|
|
1648
|
-
*
|
|
1642
|
+
* Settings related to WebVTT captions. WebVTT is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/ttml-and-webvtt-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to WebVTT.
|
|
1649
1643
|
*/
|
|
1650
1644
|
WebvttDestinationSettings?: WebvttDestinationSettings;
|
|
1651
1645
|
}
|
|
@@ -2047,7 +2041,7 @@ export declare enum FileSourceConvert608To708 {
|
|
|
2047
2041
|
UPCONVERT = "UPCONVERT"
|
|
2048
2042
|
}
|
|
2049
2043
|
/**
|
|
2050
|
-
* Ignore this setting unless your input captions format is SCC. To have the service compensate for differing frame rates between your input captions and input video, specify the frame rate of the captions file. Specify this value as a fraction,
|
|
2044
|
+
* Ignore this setting unless your input captions format is SCC. To have the service compensate for differing frame rates between your input captions and input video, specify the frame rate of the captions file. Specify this value as a fraction. When you work directly in your JSON job specification, use the settings framerateNumerator and framerateDenominator. For example, you might specify 24 / 1 for 24 fps, 25 / 1 for 25 fps, 24000 / 1001 for 23.976 fps, or 30000 / 1001 for 29.97 fps.
|
|
2051
2045
|
*/
|
|
2052
2046
|
export interface CaptionSourceFramerate {
|
|
2053
2047
|
/**
|
|
@@ -2065,6 +2059,10 @@ export declare namespace CaptionSourceFramerate {
|
|
|
2065
2059
|
*/
|
|
2066
2060
|
const filterSensitiveLog: (obj: CaptionSourceFramerate) => any;
|
|
2067
2061
|
}
|
|
2062
|
+
export declare enum FileSourceTimeDeltaUnits {
|
|
2063
|
+
MILLISECONDS = "MILLISECONDS",
|
|
2064
|
+
SECONDS = "SECONDS"
|
|
2065
|
+
}
|
|
2068
2066
|
/**
|
|
2069
2067
|
* If your input captions are SCC, SMI, SRT, STL, TTML, WebVTT, or IMSC 1.1 in an xml file, specify the URI of the input caption source file. If your caption source is IMSC in an IMF package, use TrackSourceSettings instead of FileSoureSettings.
|
|
2070
2068
|
*/
|
|
@@ -2074,7 +2072,7 @@ export interface FileSourceSettings {
|
|
|
2074
2072
|
*/
|
|
2075
2073
|
Convert608To708?: FileSourceConvert608To708 | string;
|
|
2076
2074
|
/**
|
|
2077
|
-
* Ignore this setting unless your input captions format is SCC. To have the service compensate for differing frame rates between your input captions and input video, specify the frame rate of the captions file. Specify this value as a fraction,
|
|
2075
|
+
* Ignore this setting unless your input captions format is SCC. To have the service compensate for differing frame rates between your input captions and input video, specify the frame rate of the captions file. Specify this value as a fraction. When you work directly in your JSON job specification, use the settings framerateNumerator and framerateDenominator. For example, you might specify 24 / 1 for 24 fps, 25 / 1 for 25 fps, 24000 / 1001 for 23.976 fps, or 30000 / 1001 for 29.97 fps.
|
|
2078
2076
|
*/
|
|
2079
2077
|
Framerate?: CaptionSourceFramerate;
|
|
2080
2078
|
/**
|
|
@@ -2082,9 +2080,13 @@ export interface FileSourceSettings {
|
|
|
2082
2080
|
*/
|
|
2083
2081
|
SourceFile?: string;
|
|
2084
2082
|
/**
|
|
2085
|
-
*
|
|
2083
|
+
* Optional. Use this setting when you need to adjust the sync between your sidecar captions and your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/time-delta-use-cases.html. Enter a positive or negative number to modify the times in the captions file. For example, type 15 to add 15 seconds to all the times in the captions file. Type -5 to subtract 5 seconds from the times in the captions file. You can optionally specify your time delta in milliseconds instead of seconds. When you do so, set the related setting, Time delta units (TimeDeltaUnits) to Milliseconds (MILLISECONDS). Note that, when you specify a time delta for timecode-based caption sources, such as SCC and STL, and your time delta isn't a multiple of the input frame rate, MediaConvert snaps the captions to the nearest frame. For example, when your input video frame rate is 25 fps and you specify 1010ms for time delta, MediaConvert delays your captions by 1000 ms.
|
|
2086
2084
|
*/
|
|
2087
2085
|
TimeDelta?: number;
|
|
2086
|
+
/**
|
|
2087
|
+
* When you use the setting Time delta (TimeDelta) to adjust the sync between your sidecar captions and your video, use this setting to specify the units for the delta that you specify. When you don't specify a value for Time delta units (TimeDeltaUnits), MediaConvert uses seconds by default.
|
|
2088
|
+
*/
|
|
2089
|
+
TimeDeltaUnits?: FileSourceTimeDeltaUnits | string;
|
|
2088
2090
|
}
|
|
2089
2091
|
export declare namespace FileSourceSettings {
|
|
2090
2092
|
/**
|
|
@@ -2520,7 +2522,7 @@ export interface VideoSelector {
|
|
|
2520
2522
|
*/
|
|
2521
2523
|
Rotate?: InputRotate | string;
|
|
2522
2524
|
/**
|
|
2523
|
-
*
|
|
2525
|
+
* If the sample range metadata in your input video is accurate, or if you don't know about sample range, keep the default value, Follow (FOLLOW), for this setting. When you do, the service automatically detects your input sample range. If your input video has metadata indicating the wrong sample range, specify the accurate sample range here. When you do, MediaConvert ignores any sample range information in the input metadata. Regardless of whether MediaConvert uses the input sample range or the sample range that you specify, MediaConvert uses the sample range for transcoding and also writes it to the output metadata.
|
|
2524
2526
|
*/
|
|
2525
2527
|
SampleRange?: InputSampleRange | string;
|
|
2526
2528
|
}
|
|
@@ -4769,7 +4771,3 @@ export declare enum MovClapAtom {
|
|
|
4769
4771
|
EXCLUDE = "EXCLUDE",
|
|
4770
4772
|
INCLUDE = "INCLUDE"
|
|
4771
4773
|
}
|
|
4772
|
-
export declare enum MovCslgAtom {
|
|
4773
|
-
EXCLUDE = "EXCLUDE",
|
|
4774
|
-
INCLUDE = "INCLUDE"
|
|
4775
|
-
}
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
-
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsSettings, M3u8Settings, MotionImageInserter, MovClapAtom,
|
|
2
|
+
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsSettings, M3u8Settings, MotionImageInserter, MovClapAtom, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
|
|
3
|
+
export declare enum MovCslgAtom {
|
|
4
|
+
EXCLUDE = "EXCLUDE",
|
|
5
|
+
INCLUDE = "INCLUDE"
|
|
6
|
+
}
|
|
3
7
|
export declare enum MovMpeg2FourCCControl {
|
|
4
8
|
MPEG = "MPEG",
|
|
5
9
|
XDCAM = "XDCAM"
|
|
@@ -3690,6 +3694,22 @@ export declare namespace DeleteJobTemplateResponse {
|
|
|
3690
3694
|
*/
|
|
3691
3695
|
const filterSensitiveLog: (obj: DeleteJobTemplateResponse) => any;
|
|
3692
3696
|
}
|
|
3697
|
+
export interface DeletePolicyRequest {
|
|
3698
|
+
}
|
|
3699
|
+
export declare namespace DeletePolicyRequest {
|
|
3700
|
+
/**
|
|
3701
|
+
* @internal
|
|
3702
|
+
*/
|
|
3703
|
+
const filterSensitiveLog: (obj: DeletePolicyRequest) => any;
|
|
3704
|
+
}
|
|
3705
|
+
export interface DeletePolicyResponse {
|
|
3706
|
+
}
|
|
3707
|
+
export declare namespace DeletePolicyResponse {
|
|
3708
|
+
/**
|
|
3709
|
+
* @internal
|
|
3710
|
+
*/
|
|
3711
|
+
const filterSensitiveLog: (obj: DeletePolicyResponse) => any;
|
|
3712
|
+
}
|
|
3693
3713
|
export interface DeletePresetRequest {
|
|
3694
3714
|
/**
|
|
3695
3715
|
* The name of the preset to be deleted.
|
|
@@ -3841,6 +3861,53 @@ export declare namespace GetJobTemplateResponse {
|
|
|
3841
3861
|
*/
|
|
3842
3862
|
const filterSensitiveLog: (obj: GetJobTemplateResponse) => any;
|
|
3843
3863
|
}
|
|
3864
|
+
export interface GetPolicyRequest {
|
|
3865
|
+
}
|
|
3866
|
+
export declare namespace GetPolicyRequest {
|
|
3867
|
+
/**
|
|
3868
|
+
* @internal
|
|
3869
|
+
*/
|
|
3870
|
+
const filterSensitiveLog: (obj: GetPolicyRequest) => any;
|
|
3871
|
+
}
|
|
3872
|
+
export declare enum InputPolicy {
|
|
3873
|
+
ALLOWED = "ALLOWED",
|
|
3874
|
+
DISALLOWED = "DISALLOWED"
|
|
3875
|
+
}
|
|
3876
|
+
/**
|
|
3877
|
+
* A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
3878
|
+
*/
|
|
3879
|
+
export interface Policy {
|
|
3880
|
+
/**
|
|
3881
|
+
* Allow or disallow jobs that specify HTTP inputs.
|
|
3882
|
+
*/
|
|
3883
|
+
HttpInputs?: InputPolicy | string;
|
|
3884
|
+
/**
|
|
3885
|
+
* Allow or disallow jobs that specify HTTPS inputs.
|
|
3886
|
+
*/
|
|
3887
|
+
HttpsInputs?: InputPolicy | string;
|
|
3888
|
+
/**
|
|
3889
|
+
* Allow or disallow jobs that specify Amazon S3 inputs.
|
|
3890
|
+
*/
|
|
3891
|
+
S3Inputs?: InputPolicy | string;
|
|
3892
|
+
}
|
|
3893
|
+
export declare namespace Policy {
|
|
3894
|
+
/**
|
|
3895
|
+
* @internal
|
|
3896
|
+
*/
|
|
3897
|
+
const filterSensitiveLog: (obj: Policy) => any;
|
|
3898
|
+
}
|
|
3899
|
+
export interface GetPolicyResponse {
|
|
3900
|
+
/**
|
|
3901
|
+
* A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
3902
|
+
*/
|
|
3903
|
+
Policy?: Policy;
|
|
3904
|
+
}
|
|
3905
|
+
export declare namespace GetPolicyResponse {
|
|
3906
|
+
/**
|
|
3907
|
+
* @internal
|
|
3908
|
+
*/
|
|
3909
|
+
const filterSensitiveLog: (obj: GetPolicyResponse) => any;
|
|
3910
|
+
}
|
|
3844
3911
|
export interface GetPresetRequest {
|
|
3845
3912
|
/**
|
|
3846
3913
|
* The name of the preset.
|
|
@@ -4124,6 +4191,30 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
4124
4191
|
*/
|
|
4125
4192
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
4126
4193
|
}
|
|
4194
|
+
export interface PutPolicyRequest {
|
|
4195
|
+
/**
|
|
4196
|
+
* A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
4197
|
+
*/
|
|
4198
|
+
Policy: Policy | undefined;
|
|
4199
|
+
}
|
|
4200
|
+
export declare namespace PutPolicyRequest {
|
|
4201
|
+
/**
|
|
4202
|
+
* @internal
|
|
4203
|
+
*/
|
|
4204
|
+
const filterSensitiveLog: (obj: PutPolicyRequest) => any;
|
|
4205
|
+
}
|
|
4206
|
+
export interface PutPolicyResponse {
|
|
4207
|
+
/**
|
|
4208
|
+
* A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
4209
|
+
*/
|
|
4210
|
+
Policy?: Policy;
|
|
4211
|
+
}
|
|
4212
|
+
export declare namespace PutPolicyResponse {
|
|
4213
|
+
/**
|
|
4214
|
+
* @internal
|
|
4215
|
+
*/
|
|
4216
|
+
const filterSensitiveLog: (obj: PutPolicyResponse) => any;
|
|
4217
|
+
}
|
|
4127
4218
|
export interface TagResourceRequest {
|
|
4128
4219
|
/**
|
|
4129
4220
|
* The Amazon Resource Name (ARN) of the resource that you want to tag. To get the ARN, send a GET request with the resource name.
|
|
@@ -4266,39 +4357,3 @@ export declare namespace UpdatePresetResponse {
|
|
|
4266
4357
|
*/
|
|
4267
4358
|
const filterSensitiveLog: (obj: UpdatePresetResponse) => any;
|
|
4268
4359
|
}
|
|
4269
|
-
export interface UpdateQueueRequest {
|
|
4270
|
-
/**
|
|
4271
|
-
* The new description for the queue, if you are changing it.
|
|
4272
|
-
*/
|
|
4273
|
-
Description?: string;
|
|
4274
|
-
/**
|
|
4275
|
-
* The name of the queue that you are modifying.
|
|
4276
|
-
*/
|
|
4277
|
-
Name: string | undefined;
|
|
4278
|
-
/**
|
|
4279
|
-
* The new details of your pricing plan for your reserved queue. When you set up a new pricing plan to replace an expired one, you enter into another 12-month commitment. When you add capacity to your queue by increasing the number of RTS, you extend the term of your commitment to 12 months from when you add capacity. After you make these commitments, you can't cancel them.
|
|
4280
|
-
*/
|
|
4281
|
-
ReservationPlanSettings?: ReservationPlanSettings;
|
|
4282
|
-
/**
|
|
4283
|
-
* Pause or activate a queue by changing its status between ACTIVE and PAUSED. If you pause a queue, jobs in that queue won't begin. Jobs that are running when you pause the queue continue to run until they finish or result in an error.
|
|
4284
|
-
*/
|
|
4285
|
-
Status?: QueueStatus | string;
|
|
4286
|
-
}
|
|
4287
|
-
export declare namespace UpdateQueueRequest {
|
|
4288
|
-
/**
|
|
4289
|
-
* @internal
|
|
4290
|
-
*/
|
|
4291
|
-
const filterSensitiveLog: (obj: UpdateQueueRequest) => any;
|
|
4292
|
-
}
|
|
4293
|
-
export interface UpdateQueueResponse {
|
|
4294
|
-
/**
|
|
4295
|
-
* You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.
|
|
4296
|
-
*/
|
|
4297
|
-
Queue?: Queue;
|
|
4298
|
-
}
|
|
4299
|
-
export declare namespace UpdateQueueResponse {
|
|
4300
|
-
/**
|
|
4301
|
-
* @internal
|
|
4302
|
-
*/
|
|
4303
|
-
const filterSensitiveLog: (obj: UpdateQueueResponse) => any;
|
|
4304
|
-
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Queue, QueueStatus, ReservationPlanSettings } from "./models_1";
|
|
2
|
+
export interface UpdateQueueRequest {
|
|
3
|
+
/**
|
|
4
|
+
* The new description for the queue, if you are changing it.
|
|
5
|
+
*/
|
|
6
|
+
Description?: string;
|
|
7
|
+
/**
|
|
8
|
+
* The name of the queue that you are modifying.
|
|
9
|
+
*/
|
|
10
|
+
Name: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* The new details of your pricing plan for your reserved queue. When you set up a new pricing plan to replace an expired one, you enter into another 12-month commitment. When you add capacity to your queue by increasing the number of RTS, you extend the term of your commitment to 12 months from when you add capacity. After you make these commitments, you can't cancel them.
|
|
13
|
+
*/
|
|
14
|
+
ReservationPlanSettings?: ReservationPlanSettings;
|
|
15
|
+
/**
|
|
16
|
+
* Pause or activate a queue by changing its status between ACTIVE and PAUSED. If you pause a queue, jobs in that queue won't begin. Jobs that are running when you pause the queue continue to run until they finish or result in an error.
|
|
17
|
+
*/
|
|
18
|
+
Status?: QueueStatus | string;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace UpdateQueueRequest {
|
|
21
|
+
/**
|
|
22
|
+
* @internal
|
|
23
|
+
*/
|
|
24
|
+
const filterSensitiveLog: (obj: UpdateQueueRequest) => any;
|
|
25
|
+
}
|
|
26
|
+
export interface UpdateQueueResponse {
|
|
27
|
+
/**
|
|
28
|
+
* You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.
|
|
29
|
+
*/
|
|
30
|
+
Queue?: Queue;
|
|
31
|
+
}
|
|
32
|
+
export declare namespace UpdateQueueResponse {
|
|
33
|
+
/**
|
|
34
|
+
* @internal
|
|
35
|
+
*/
|
|
36
|
+
const filterSensitiveLog: (obj: UpdateQueueResponse) => any;
|
|
37
|
+
}
|