@aws-sdk/client-mediaconvert 3.913.0 → 3.914.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/README.md +16 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +178 -0
- package/dist-es/MediaConvert.js +4 -0
- package/dist-es/commands/GetJobsQueryResultsCommand.js +22 -0
- package/dist-es/commands/StartJobsQueryCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_2.js +32 -0
- package/dist-es/protocols/Aws_restJson1.js +105 -1
- package/dist-types/MediaConvert.d.ts +15 -0
- package/dist-types/MediaConvertClient.d.ts +4 -2
- package/dist-types/commands/AssociateCertificateCommand.d.ts +3 -0
- package/dist-types/commands/CancelJobCommand.d.ts +3 -0
- package/dist-types/commands/CreateJobCommand.d.ts +17 -10
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +13 -10
- package/dist-types/commands/CreatePresetCommand.d.ts +13 -10
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -0
- package/dist-types/commands/CreateResourceShareCommand.d.ts +3 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +3 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +3 -0
- package/dist-types/commands/DeletePresetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +3 -0
- package/dist-types/commands/GetJobCommand.d.ts +10 -5
- package/dist-types/commands/GetJobTemplateCommand.d.ts +8 -5
- package/dist-types/commands/GetJobsQueryResultsCommand.d.ts +1727 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +3 -0
- package/dist-types/commands/GetPresetCommand.d.ts +8 -5
- package/dist-types/commands/GetQueueCommand.d.ts +3 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +8 -5
- package/dist-types/commands/ListJobsCommand.d.ts +10 -5
- package/dist-types/commands/ListPresetsCommand.d.ts +8 -5
- package/dist-types/commands/ListQueuesCommand.d.ts +3 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListVersionsCommand.d.ts +3 -0
- package/dist-types/commands/ProbeCommand.d.ts +20 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +3 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +10 -5
- package/dist-types/commands/StartJobsQueryCommand.d.ts +105 -0
- package/dist-types/commands/TagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +13 -10
- package/dist-types/commands/UpdatePresetCommand.d.ts +13 -10
- package/dist-types/commands/UpdateQueueCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +21 -10
- package/dist-types/models/models_1.d.ts +8 -8
- package/dist-types/models/models_2.d.ts +205 -11
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/MediaConvert.d.ts +35 -0
- package/dist-types/ts3.4/MediaConvertClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetJobsQueryResultsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartJobsQueryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/models/models_2.d.ts +65 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +33 -33
|
@@ -66,6 +66,9 @@ declare const DeleteJobTemplateCommand_base: {
|
|
|
66
66
|
* @throws {@link NotFoundException} (client fault)
|
|
67
67
|
* The resource you requested doesn't exist.
|
|
68
68
|
*
|
|
69
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
70
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
71
|
+
*
|
|
69
72
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
70
73
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
71
74
|
*
|
|
@@ -64,6 +64,9 @@ declare const DeletePolicyCommand_base: {
|
|
|
64
64
|
* @throws {@link NotFoundException} (client fault)
|
|
65
65
|
* The resource you requested doesn't exist.
|
|
66
66
|
*
|
|
67
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
68
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
69
|
+
*
|
|
67
70
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
68
71
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
69
72
|
*
|
|
@@ -66,6 +66,9 @@ declare const DeletePresetCommand_base: {
|
|
|
66
66
|
* @throws {@link NotFoundException} (client fault)
|
|
67
67
|
* The resource you requested doesn't exist.
|
|
68
68
|
*
|
|
69
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
70
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
71
|
+
*
|
|
69
72
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
70
73
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
71
74
|
*
|
|
@@ -66,6 +66,9 @@ declare const DeleteQueueCommand_base: {
|
|
|
66
66
|
* @throws {@link NotFoundException} (client fault)
|
|
67
67
|
* The resource you requested doesn't exist.
|
|
68
68
|
*
|
|
69
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
70
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
71
|
+
*
|
|
69
72
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
70
73
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
71
74
|
*
|
|
@@ -77,6 +77,9 @@ declare const DescribeEndpointsCommand_base: {
|
|
|
77
77
|
* @throws {@link NotFoundException} (client fault)
|
|
78
78
|
* The resource you requested doesn't exist.
|
|
79
79
|
*
|
|
80
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
81
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
82
|
+
*
|
|
80
83
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
81
84
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
82
85
|
*
|
|
@@ -66,6 +66,9 @@ declare const DisassociateCertificateCommand_base: {
|
|
|
66
66
|
* @throws {@link NotFoundException} (client fault)
|
|
67
67
|
* The resource you requested doesn't exist.
|
|
68
68
|
*
|
|
69
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
70
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
71
|
+
*
|
|
69
72
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
70
73
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
71
74
|
*
|
|
@@ -305,7 +305,9 @@ declare const GetJobCommand_base: {
|
|
|
305
305
|
* // Duration: Number("int"),
|
|
306
306
|
* // FramerateDenominator: Number("int"),
|
|
307
307
|
* // FramerateNumerator: Number("int"),
|
|
308
|
+
* // Height: Number("int"),
|
|
308
309
|
* // SampleRate: Number("int"),
|
|
310
|
+
* // Width: Number("int"),
|
|
309
311
|
* // },
|
|
310
312
|
* // VideoOverlays: [ // __listOfVideoOverlay
|
|
311
313
|
* // { // VideoOverlay
|
|
@@ -767,7 +769,7 @@ declare const GetJobCommand_base: {
|
|
|
767
769
|
* // ManifestEncoding: "UTF8" || "UTF16",
|
|
768
770
|
* // },
|
|
769
771
|
* // PerFrameMetrics: [ // __listOfFrameMetricType
|
|
770
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
772
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
771
773
|
* // ],
|
|
772
774
|
* // Type: "HLS_GROUP_SETTINGS" || "DASH_ISO_GROUP_SETTINGS" || "FILE_GROUP_SETTINGS" || "MS_SMOOTH_GROUP_SETTINGS" || "CMAF_GROUP_SETTINGS",
|
|
773
775
|
* // },
|
|
@@ -1206,7 +1208,7 @@ declare const GetJobCommand_base: {
|
|
|
1206
1208
|
* // MaxBitrate: Number("int"),
|
|
1207
1209
|
* // NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
1208
1210
|
* // PerFrameMetrics: [
|
|
1209
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1211
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1210
1212
|
* // ],
|
|
1211
1213
|
* // QvbrSettings: { // Av1QvbrSettings
|
|
1212
1214
|
* // QvbrQualityLevel: Number("int"),
|
|
@@ -1227,7 +1229,7 @@ declare const GetJobCommand_base: {
|
|
|
1227
1229
|
* // FramerateNumerator: Number("int"),
|
|
1228
1230
|
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
1229
1231
|
* // PerFrameMetrics: [
|
|
1230
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1232
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1231
1233
|
* // ],
|
|
1232
1234
|
* // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
1233
1235
|
* // SlowPal: "DISABLED" || "ENABLED",
|
|
@@ -1280,7 +1282,7 @@ declare const GetJobCommand_base: {
|
|
|
1280
1282
|
* // ParDenominator: Number("int"),
|
|
1281
1283
|
* // ParNumerator: Number("int"),
|
|
1282
1284
|
* // PerFrameMetrics: [
|
|
1283
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1285
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1284
1286
|
* // ],
|
|
1285
1287
|
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1286
1288
|
* // QvbrSettings: { // H264QvbrSettings
|
|
@@ -1337,7 +1339,7 @@ declare const GetJobCommand_base: {
|
|
|
1337
1339
|
* // ParDenominator: Number("int"),
|
|
1338
1340
|
* // ParNumerator: Number("int"),
|
|
1339
1341
|
* // PerFrameMetrics: [
|
|
1340
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1342
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1341
1343
|
* // ],
|
|
1342
1344
|
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1343
1345
|
* // QvbrSettings: { // H265QvbrSettings
|
|
@@ -1694,6 +1696,9 @@ declare const GetJobCommand_base: {
|
|
|
1694
1696
|
* @throws {@link NotFoundException} (client fault)
|
|
1695
1697
|
* The resource you requested doesn't exist.
|
|
1696
1698
|
*
|
|
1699
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
1700
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
1701
|
+
*
|
|
1697
1702
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
1698
1703
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
1699
1704
|
*
|
|
@@ -706,7 +706,7 @@ declare const GetJobTemplateCommand_base: {
|
|
|
706
706
|
* // ManifestEncoding: "UTF8" || "UTF16",
|
|
707
707
|
* // },
|
|
708
708
|
* // PerFrameMetrics: [ // __listOfFrameMetricType
|
|
709
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
709
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
710
710
|
* // ],
|
|
711
711
|
* // Type: "HLS_GROUP_SETTINGS" || "DASH_ISO_GROUP_SETTINGS" || "FILE_GROUP_SETTINGS" || "MS_SMOOTH_GROUP_SETTINGS" || "CMAF_GROUP_SETTINGS",
|
|
712
712
|
* // },
|
|
@@ -1145,7 +1145,7 @@ declare const GetJobTemplateCommand_base: {
|
|
|
1145
1145
|
* // MaxBitrate: Number("int"),
|
|
1146
1146
|
* // NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
1147
1147
|
* // PerFrameMetrics: [
|
|
1148
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1148
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1149
1149
|
* // ],
|
|
1150
1150
|
* // QvbrSettings: { // Av1QvbrSettings
|
|
1151
1151
|
* // QvbrQualityLevel: Number("int"),
|
|
@@ -1166,7 +1166,7 @@ declare const GetJobTemplateCommand_base: {
|
|
|
1166
1166
|
* // FramerateNumerator: Number("int"),
|
|
1167
1167
|
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
1168
1168
|
* // PerFrameMetrics: [
|
|
1169
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1169
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1170
1170
|
* // ],
|
|
1171
1171
|
* // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
1172
1172
|
* // SlowPal: "DISABLED" || "ENABLED",
|
|
@@ -1219,7 +1219,7 @@ declare const GetJobTemplateCommand_base: {
|
|
|
1219
1219
|
* // ParDenominator: Number("int"),
|
|
1220
1220
|
* // ParNumerator: Number("int"),
|
|
1221
1221
|
* // PerFrameMetrics: [
|
|
1222
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1222
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1223
1223
|
* // ],
|
|
1224
1224
|
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1225
1225
|
* // QvbrSettings: { // H264QvbrSettings
|
|
@@ -1276,7 +1276,7 @@ declare const GetJobTemplateCommand_base: {
|
|
|
1276
1276
|
* // ParDenominator: Number("int"),
|
|
1277
1277
|
* // ParNumerator: Number("int"),
|
|
1278
1278
|
* // PerFrameMetrics: [
|
|
1279
|
-
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
|
|
1279
|
+
* // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
|
|
1280
1280
|
* // ],
|
|
1281
1281
|
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1282
1282
|
* // QvbrSettings: { // H265QvbrSettings
|
|
@@ -1617,6 +1617,9 @@ declare const GetJobTemplateCommand_base: {
|
|
|
1617
1617
|
* @throws {@link NotFoundException} (client fault)
|
|
1618
1618
|
* The resource you requested doesn't exist.
|
|
1619
1619
|
*
|
|
1620
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
1621
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
1622
|
+
*
|
|
1620
1623
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
1621
1624
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
1622
1625
|
*
|