@aws-sdk/client-mediaconvert 3.913.0 → 3.916.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.
Files changed (61) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/endpoint/ruleset.js +1 -1
  3. package/dist-cjs/index.js +178 -0
  4. package/dist-es/MediaConvert.js +4 -0
  5. package/dist-es/commands/GetJobsQueryResultsCommand.js +22 -0
  6. package/dist-es/commands/StartJobsQueryCommand.js +22 -0
  7. package/dist-es/commands/index.js +2 -0
  8. package/dist-es/endpoint/ruleset.js +1 -1
  9. package/dist-es/models/models_0.js +1 -0
  10. package/dist-es/models/models_2.js +32 -0
  11. package/dist-es/protocols/Aws_restJson1.js +105 -1
  12. package/dist-types/MediaConvert.d.ts +15 -0
  13. package/dist-types/MediaConvertClient.d.ts +4 -2
  14. package/dist-types/commands/AssociateCertificateCommand.d.ts +3 -0
  15. package/dist-types/commands/CancelJobCommand.d.ts +3 -0
  16. package/dist-types/commands/CreateJobCommand.d.ts +17 -10
  17. package/dist-types/commands/CreateJobTemplateCommand.d.ts +13 -10
  18. package/dist-types/commands/CreatePresetCommand.d.ts +13 -10
  19. package/dist-types/commands/CreateQueueCommand.d.ts +3 -0
  20. package/dist-types/commands/CreateResourceShareCommand.d.ts +3 -0
  21. package/dist-types/commands/DeleteJobTemplateCommand.d.ts +3 -0
  22. package/dist-types/commands/DeletePolicyCommand.d.ts +3 -0
  23. package/dist-types/commands/DeletePresetCommand.d.ts +3 -0
  24. package/dist-types/commands/DeleteQueueCommand.d.ts +3 -0
  25. package/dist-types/commands/DescribeEndpointsCommand.d.ts +3 -0
  26. package/dist-types/commands/DisassociateCertificateCommand.d.ts +3 -0
  27. package/dist-types/commands/GetJobCommand.d.ts +10 -5
  28. package/dist-types/commands/GetJobTemplateCommand.d.ts +8 -5
  29. package/dist-types/commands/GetJobsQueryResultsCommand.d.ts +1727 -0
  30. package/dist-types/commands/GetPolicyCommand.d.ts +3 -0
  31. package/dist-types/commands/GetPresetCommand.d.ts +8 -5
  32. package/dist-types/commands/GetQueueCommand.d.ts +3 -0
  33. package/dist-types/commands/ListJobTemplatesCommand.d.ts +8 -5
  34. package/dist-types/commands/ListJobsCommand.d.ts +10 -5
  35. package/dist-types/commands/ListPresetsCommand.d.ts +8 -5
  36. package/dist-types/commands/ListQueuesCommand.d.ts +3 -0
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  38. package/dist-types/commands/ListVersionsCommand.d.ts +3 -0
  39. package/dist-types/commands/ProbeCommand.d.ts +20 -1
  40. package/dist-types/commands/PutPolicyCommand.d.ts +3 -0
  41. package/dist-types/commands/SearchJobsCommand.d.ts +10 -5
  42. package/dist-types/commands/StartJobsQueryCommand.d.ts +105 -0
  43. package/dist-types/commands/TagResourceCommand.d.ts +3 -0
  44. package/dist-types/commands/UntagResourceCommand.d.ts +3 -0
  45. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +13 -10
  46. package/dist-types/commands/UpdatePresetCommand.d.ts +13 -10
  47. package/dist-types/commands/UpdateQueueCommand.d.ts +3 -0
  48. package/dist-types/commands/index.d.ts +2 -0
  49. package/dist-types/models/models_0.d.ts +21 -10
  50. package/dist-types/models/models_1.d.ts +8 -8
  51. package/dist-types/models/models_2.d.ts +205 -11
  52. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  53. package/dist-types/ts3.4/MediaConvert.d.ts +35 -0
  54. package/dist-types/ts3.4/MediaConvertClient.d.ts +12 -0
  55. package/dist-types/ts3.4/commands/GetJobsQueryResultsCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/StartJobsQueryCommand.d.ts +50 -0
  57. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  58. package/dist-types/ts3.4/models/models_0.d.ts +3 -0
  59. package/dist-types/ts3.4/models/models_2.d.ts +65 -0
  60. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  61. package/package.json +33 -33
@@ -3,7 +3,7 @@ import { requestBuilder as rb } from "@smithy/core";
3
3
  import { _json, collectBody, decorateServiceException as __decorateServiceException, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, limitedParseDouble as __limitedParseDouble, map, parseEpochTimestamp as __parseEpochTimestamp, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
4
4
  import { v4 as generateIdempotencyToken } from "@smithy/uuid";
5
5
  import { MediaConvertServiceException as __BaseException } from "../models/MediaConvertServiceException";
6
- import { BadRequestException, ConflictException, ForbiddenException, InternalServerErrorException, NotFoundException, TooManyRequestsException, } from "../models/models_2";
6
+ import { BadRequestException, ConflictException, ForbiddenException, InternalServerErrorException, NotFoundException, ServiceQuotaExceededException, TooManyRequestsException, } from "../models/models_2";
7
7
  export const se_AssociateCertificateCommand = async (input, context) => {
8
8
  const b = rb(input, context);
9
9
  const headers = {
@@ -192,6 +192,15 @@ export const se_GetJobCommand = async (input, context) => {
192
192
  b.m("GET").h(headers).b(body);
193
193
  return b.build();
194
194
  };
195
+ export const se_GetJobsQueryResultsCommand = async (input, context) => {
196
+ const b = rb(input, context);
197
+ const headers = {};
198
+ b.bp("/2017-08-29/jobsQueries/{Id}");
199
+ b.p("Id", () => input.Id, "{Id}", false);
200
+ let body;
201
+ b.m("GET").h(headers).b(body);
202
+ return b.build();
203
+ };
195
204
  export const se_GetJobTemplateCommand = async (input, context) => {
196
205
  const b = rb(input, context);
197
206
  const headers = {};
@@ -349,6 +358,22 @@ export const se_SearchJobsCommand = async (input, context) => {
349
358
  b.m("GET").h(headers).q(query).b(body);
350
359
  return b.build();
351
360
  };
361
+ export const se_StartJobsQueryCommand = async (input, context) => {
362
+ const b = rb(input, context);
363
+ const headers = {
364
+ "content-type": "application/json",
365
+ };
366
+ b.bp("/2017-08-29/jobsQueries");
367
+ let body;
368
+ body = JSON.stringify(take(input, {
369
+ filterList: [, (_) => se___listOfJobsQueryFilter(_, context), `FilterList`],
370
+ maxResults: [, , `MaxResults`],
371
+ nextToken: [, , `NextToken`],
372
+ order: [, , `Order`],
373
+ }));
374
+ b.m("POST").h(headers).b(body);
375
+ return b.build();
376
+ };
352
377
  export const se_TagResourceCommand = async (input, context) => {
353
378
  const b = rb(input, context);
354
379
  const headers = {
@@ -596,6 +621,22 @@ export const de_GetJobCommand = async (output, context) => {
596
621
  Object.assign(contents, doc);
597
622
  return contents;
598
623
  };
624
+ export const de_GetJobsQueryResultsCommand = async (output, context) => {
625
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
626
+ return de_CommandError(output, context);
627
+ }
628
+ const contents = map({
629
+ $metadata: deserializeMetadata(output),
630
+ });
631
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
632
+ const doc = take(data, {
633
+ Jobs: [, (_) => de___listOfJob(_, context), `jobs`],
634
+ NextToken: [, __expectString, `nextToken`],
635
+ Status: [, __expectString, `status`],
636
+ });
637
+ Object.assign(contents, doc);
638
+ return contents;
639
+ };
599
640
  export const de_GetJobTemplateCommand = async (output, context) => {
600
641
  if (output.statusCode !== 200 && output.statusCode >= 300) {
601
642
  return de_CommandError(output, context);
@@ -786,6 +827,20 @@ export const de_SearchJobsCommand = async (output, context) => {
786
827
  Object.assign(contents, doc);
787
828
  return contents;
788
829
  };
830
+ export const de_StartJobsQueryCommand = async (output, context) => {
831
+ if (output.statusCode !== 201 && output.statusCode >= 300) {
832
+ return de_CommandError(output, context);
833
+ }
834
+ const contents = map({
835
+ $metadata: deserializeMetadata(output),
836
+ });
837
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
838
+ const doc = take(data, {
839
+ Id: [, __expectString, `id`],
840
+ });
841
+ Object.assign(contents, doc);
842
+ return contents;
843
+ };
789
844
  export const de_TagResourceCommand = async (output, context) => {
790
845
  if (output.statusCode !== 200 && output.statusCode >= 300) {
791
846
  return de_CommandError(output, context);
@@ -870,6 +925,9 @@ const de_CommandError = async (output, context) => {
870
925
  case "NotFoundException":
871
926
  case "com.amazonaws.mediaconvert#NotFoundException":
872
927
  throw await de_NotFoundExceptionRes(parsedOutput, context);
928
+ case "ServiceQuotaExceededException":
929
+ case "com.amazonaws.mediaconvert#ServiceQuotaExceededException":
930
+ throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
873
931
  case "TooManyRequestsException":
874
932
  case "com.amazonaws.mediaconvert#TooManyRequestsException":
875
933
  throw await de_TooManyRequestsExceptionRes(parsedOutput, context);
@@ -948,6 +1006,19 @@ const de_NotFoundExceptionRes = async (parsedOutput, context) => {
948
1006
  });
949
1007
  return __decorateServiceException(exception, parsedOutput.body);
950
1008
  };
1009
+ const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
1010
+ const contents = map({});
1011
+ const data = parsedOutput.body;
1012
+ const doc = take(data, {
1013
+ Message: [, __expectString, `message`],
1014
+ });
1015
+ Object.assign(contents, doc);
1016
+ const exception = new ServiceQuotaExceededException({
1017
+ $metadata: deserializeMetadata(parsedOutput),
1018
+ ...contents,
1019
+ });
1020
+ return __decorateServiceException(exception, parsedOutput.body);
1021
+ };
951
1022
  const de_TooManyRequestsExceptionRes = async (parsedOutput, context) => {
952
1023
  const contents = map({});
953
1024
  const data = parsedOutput.body;
@@ -1087,6 +1158,13 @@ const se___listOfInsertableImage = (input, context) => {
1087
1158
  return se_InsertableImage(entry, context);
1088
1159
  });
1089
1160
  };
1161
+ const se___listOfJobsQueryFilter = (input, context) => {
1162
+ return input
1163
+ .filter((e) => e != null)
1164
+ .map((entry) => {
1165
+ return se_JobsQueryFilter(entry, context);
1166
+ });
1167
+ };
1090
1168
  const se___listOfMsSmoothAdditionalManifest = (input, context) => {
1091
1169
  return input
1092
1170
  .filter((e) => e != null)
@@ -2239,7 +2317,9 @@ const se_InputVideoGenerator = (input, context) => {
2239
2317
  duration: [, , `Duration`],
2240
2318
  framerateDenominator: [, , `FramerateDenominator`],
2241
2319
  framerateNumerator: [, , `FramerateNumerator`],
2320
+ height: [, , `Height`],
2242
2321
  sampleRate: [, , `SampleRate`],
2322
+ width: [, , `Width`],
2243
2323
  });
2244
2324
  };
2245
2325
  const se_InsertableImage = (input, context) => {
@@ -2279,6 +2359,12 @@ const se_JobSettings = (input, context) => {
2279
2359
  timedMetadataInsertion: [, (_) => se_TimedMetadataInsertion(_, context), `TimedMetadataInsertion`],
2280
2360
  });
2281
2361
  };
2362
+ const se_JobsQueryFilter = (input, context) => {
2363
+ return take(input, {
2364
+ key: [, , `Key`],
2365
+ values: [, _json, `Values`],
2366
+ });
2367
+ };
2282
2368
  const se_JobTemplateSettings = (input, context) => {
2283
2369
  return take(input, {
2284
2370
  adAvailOffset: [, , `AdAvailOffset`],
@@ -3876,6 +3962,21 @@ const de_CmfcSettings = (output, context) => {
3876
3962
  TimedMetadataValue: [, __expectString, `timedMetadataValue`],
3877
3963
  });
3878
3964
  };
3965
+ const de_CodecMetadata = (output, context) => {
3966
+ return take(output, {
3967
+ BitDepth: [, __expectInt32, `bitDepth`],
3968
+ ChromaSubsampling: [, __expectString, `chromaSubsampling`],
3969
+ CodedFrameRate: [, (_) => de_FrameRate(_, context), `codedFrameRate`],
3970
+ ColorPrimaries: [, __expectString, `colorPrimaries`],
3971
+ Height: [, __expectInt32, `height`],
3972
+ Level: [, __expectString, `level`],
3973
+ MatrixCoefficients: [, __expectString, `matrixCoefficients`],
3974
+ Profile: [, __expectString, `profile`],
3975
+ ScanType: [, __expectString, `scanType`],
3976
+ TransferCharacteristics: [, __expectString, `transferCharacteristics`],
3977
+ Width: [, __expectInt32, `width`],
3978
+ });
3979
+ };
3879
3980
  const de_ColorConversion3DLUTSetting = (output, context) => {
3880
3981
  return take(output, {
3881
3982
  FileInput: [, __expectString, `fileInput`],
@@ -4582,7 +4683,9 @@ const de_InputVideoGenerator = (output, context) => {
4582
4683
  Duration: [, __expectInt32, `duration`],
4583
4684
  FramerateDenominator: [, __expectInt32, `framerateDenominator`],
4584
4685
  FramerateNumerator: [, __expectInt32, `framerateNumerator`],
4686
+ Height: [, __expectInt32, `height`],
4585
4687
  SampleRate: [, __expectInt32, `sampleRate`],
4688
+ Width: [, __expectInt32, `width`],
4586
4689
  });
4587
4690
  };
4588
4691
  const de_InsertableImage = (output, context) => {
@@ -5489,6 +5592,7 @@ const de_VideoProperties = (output, context) => {
5489
5592
  return take(output, {
5490
5593
  BitDepth: [, __expectInt32, `bitDepth`],
5491
5594
  BitRate: [, __expectLong, `bitRate`],
5595
+ CodecMetadata: [, (_) => de_CodecMetadata(_, context), `codecMetadata`],
5492
5596
  ColorPrimaries: [, __expectString, `colorPrimaries`],
5493
5597
  FrameRate: [, (_) => de_FrameRate(_, context), `frameRate`],
5494
5598
  Height: [, __expectInt32, `height`],
@@ -13,6 +13,7 @@ import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/De
13
13
  import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
14
14
  import { DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput } from "./commands/DisassociateCertificateCommand";
15
15
  import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
16
+ import { GetJobsQueryResultsCommandInput, GetJobsQueryResultsCommandOutput } from "./commands/GetJobsQueryResultsCommand";
16
17
  import { GetJobTemplateCommandInput, GetJobTemplateCommandOutput } from "./commands/GetJobTemplateCommand";
17
18
  import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
18
19
  import { GetPresetCommandInput, GetPresetCommandOutput } from "./commands/GetPresetCommand";
@@ -26,6 +27,7 @@ import { ListVersionsCommandInput, ListVersionsCommandOutput } from "./commands/
26
27
  import { ProbeCommandInput, ProbeCommandOutput } from "./commands/ProbeCommand";
27
28
  import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
28
29
  import { SearchJobsCommandInput, SearchJobsCommandOutput } from "./commands/SearchJobsCommand";
30
+ import { StartJobsQueryCommandInput, StartJobsQueryCommandOutput } from "./commands/StartJobsQueryCommand";
29
31
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
30
32
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
31
33
  import { UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput } from "./commands/UpdateJobTemplateCommand";
@@ -119,6 +121,12 @@ export interface MediaConvert {
119
121
  getJob(args: GetJobCommandInput, options?: __HttpHandlerOptions): Promise<GetJobCommandOutput>;
120
122
  getJob(args: GetJobCommandInput, cb: (err: any, data?: GetJobCommandOutput) => void): void;
121
123
  getJob(args: GetJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobCommandOutput) => void): void;
124
+ /**
125
+ * @see {@link GetJobsQueryResultsCommand}
126
+ */
127
+ getJobsQueryResults(args: GetJobsQueryResultsCommandInput, options?: __HttpHandlerOptions): Promise<GetJobsQueryResultsCommandOutput>;
128
+ getJobsQueryResults(args: GetJobsQueryResultsCommandInput, cb: (err: any, data?: GetJobsQueryResultsCommandOutput) => void): void;
129
+ getJobsQueryResults(args: GetJobsQueryResultsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobsQueryResultsCommandOutput) => void): void;
122
130
  /**
123
131
  * @see {@link GetJobTemplateCommand}
124
132
  */
@@ -205,6 +213,13 @@ export interface MediaConvert {
205
213
  searchJobs(args: SearchJobsCommandInput, options?: __HttpHandlerOptions): Promise<SearchJobsCommandOutput>;
206
214
  searchJobs(args: SearchJobsCommandInput, cb: (err: any, data?: SearchJobsCommandOutput) => void): void;
207
215
  searchJobs(args: SearchJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchJobsCommandOutput) => void): void;
216
+ /**
217
+ * @see {@link StartJobsQueryCommand}
218
+ */
219
+ startJobsQuery(): Promise<StartJobsQueryCommandOutput>;
220
+ startJobsQuery(args: StartJobsQueryCommandInput, options?: __HttpHandlerOptions): Promise<StartJobsQueryCommandOutput>;
221
+ startJobsQuery(args: StartJobsQueryCommandInput, cb: (err: any, data?: StartJobsQueryCommandOutput) => void): void;
222
+ startJobsQuery(args: StartJobsQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartJobsQueryCommandOutput) => void): void;
208
223
  /**
209
224
  * @see {@link TagResourceCommand}
210
225
  */
@@ -21,6 +21,7 @@ import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/De
21
21
  import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
22
22
  import { DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput } from "./commands/DisassociateCertificateCommand";
23
23
  import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
24
+ import { GetJobsQueryResultsCommandInput, GetJobsQueryResultsCommandOutput } from "./commands/GetJobsQueryResultsCommand";
24
25
  import { GetJobTemplateCommandInput, GetJobTemplateCommandOutput } from "./commands/GetJobTemplateCommand";
25
26
  import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
26
27
  import { GetPresetCommandInput, GetPresetCommandOutput } from "./commands/GetPresetCommand";
@@ -34,6 +35,7 @@ import { ListVersionsCommandInput, ListVersionsCommandOutput } from "./commands/
34
35
  import { ProbeCommandInput, ProbeCommandOutput } from "./commands/ProbeCommand";
35
36
  import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
36
37
  import { SearchJobsCommandInput, SearchJobsCommandOutput } from "./commands/SearchJobsCommand";
38
+ import { StartJobsQueryCommandInput, StartJobsQueryCommandOutput } from "./commands/StartJobsQueryCommand";
37
39
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
38
40
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
39
41
  import { UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput } from "./commands/UpdateJobTemplateCommand";
@@ -45,11 +47,11 @@ export { __Client };
45
47
  /**
46
48
  * @public
47
49
  */
48
- export type ServiceInputTypes = AssociateCertificateCommandInput | CancelJobCommandInput | CreateJobCommandInput | CreateJobTemplateCommandInput | CreatePresetCommandInput | CreateQueueCommandInput | CreateResourceShareCommandInput | DeleteJobTemplateCommandInput | DeletePolicyCommandInput | DeletePresetCommandInput | DeleteQueueCommandInput | DescribeEndpointsCommandInput | DisassociateCertificateCommandInput | GetJobCommandInput | GetJobTemplateCommandInput | GetPolicyCommandInput | GetPresetCommandInput | GetQueueCommandInput | ListJobTemplatesCommandInput | ListJobsCommandInput | ListPresetsCommandInput | ListQueuesCommandInput | ListTagsForResourceCommandInput | ListVersionsCommandInput | ProbeCommandInput | PutPolicyCommandInput | SearchJobsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateJobTemplateCommandInput | UpdatePresetCommandInput | UpdateQueueCommandInput;
50
+ export type ServiceInputTypes = AssociateCertificateCommandInput | CancelJobCommandInput | CreateJobCommandInput | CreateJobTemplateCommandInput | CreatePresetCommandInput | CreateQueueCommandInput | CreateResourceShareCommandInput | DeleteJobTemplateCommandInput | DeletePolicyCommandInput | DeletePresetCommandInput | DeleteQueueCommandInput | DescribeEndpointsCommandInput | DisassociateCertificateCommandInput | GetJobCommandInput | GetJobTemplateCommandInput | GetJobsQueryResultsCommandInput | GetPolicyCommandInput | GetPresetCommandInput | GetQueueCommandInput | ListJobTemplatesCommandInput | ListJobsCommandInput | ListPresetsCommandInput | ListQueuesCommandInput | ListTagsForResourceCommandInput | ListVersionsCommandInput | ProbeCommandInput | PutPolicyCommandInput | SearchJobsCommandInput | StartJobsQueryCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateJobTemplateCommandInput | UpdatePresetCommandInput | UpdateQueueCommandInput;
49
51
  /**
50
52
  * @public
51
53
  */
52
- export type ServiceOutputTypes = AssociateCertificateCommandOutput | CancelJobCommandOutput | CreateJobCommandOutput | CreateJobTemplateCommandOutput | CreatePresetCommandOutput | CreateQueueCommandOutput | CreateResourceShareCommandOutput | DeleteJobTemplateCommandOutput | DeletePolicyCommandOutput | DeletePresetCommandOutput | DeleteQueueCommandOutput | DescribeEndpointsCommandOutput | DisassociateCertificateCommandOutput | GetJobCommandOutput | GetJobTemplateCommandOutput | GetPolicyCommandOutput | GetPresetCommandOutput | GetQueueCommandOutput | ListJobTemplatesCommandOutput | ListJobsCommandOutput | ListPresetsCommandOutput | ListQueuesCommandOutput | ListTagsForResourceCommandOutput | ListVersionsCommandOutput | ProbeCommandOutput | PutPolicyCommandOutput | SearchJobsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateJobTemplateCommandOutput | UpdatePresetCommandOutput | UpdateQueueCommandOutput;
54
+ export type ServiceOutputTypes = AssociateCertificateCommandOutput | CancelJobCommandOutput | CreateJobCommandOutput | CreateJobTemplateCommandOutput | CreatePresetCommandOutput | CreateQueueCommandOutput | CreateResourceShareCommandOutput | DeleteJobTemplateCommandOutput | DeletePolicyCommandOutput | DeletePresetCommandOutput | DeleteQueueCommandOutput | DescribeEndpointsCommandOutput | DisassociateCertificateCommandOutput | GetJobCommandOutput | GetJobTemplateCommandOutput | GetJobsQueryResultsCommandOutput | GetPolicyCommandOutput | GetPresetCommandOutput | GetQueueCommandOutput | ListJobTemplatesCommandOutput | ListJobsCommandOutput | ListPresetsCommandOutput | ListQueuesCommandOutput | ListTagsForResourceCommandOutput | ListVersionsCommandOutput | ProbeCommandOutput | PutPolicyCommandOutput | SearchJobsCommandOutput | StartJobsQueryCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateJobTemplateCommandOutput | UpdatePresetCommandOutput | UpdateQueueCommandOutput;
53
55
  /**
54
56
  * @public
55
57
  */
@@ -66,6 +66,9 @@ declare const AssociateCertificateCommand_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 CancelJobCommand_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
  *
@@ -260,7 +260,9 @@ declare const CreateJobCommand_base: {
260
260
  * Duration: Number("int"),
261
261
  * FramerateDenominator: Number("int"),
262
262
  * FramerateNumerator: Number("int"),
263
+ * Height: Number("int"),
263
264
  * SampleRate: Number("int"),
265
+ * Width: Number("int"),
264
266
  * },
265
267
  * VideoOverlays: [ // __listOfVideoOverlay
266
268
  * { // VideoOverlay
@@ -722,7 +724,7 @@ declare const CreateJobCommand_base: {
722
724
  * ManifestEncoding: "UTF8" || "UTF16",
723
725
  * },
724
726
  * PerFrameMetrics: [ // __listOfFrameMetricType
725
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
727
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
726
728
  * ],
727
729
  * Type: "HLS_GROUP_SETTINGS" || "DASH_ISO_GROUP_SETTINGS" || "FILE_GROUP_SETTINGS" || "MS_SMOOTH_GROUP_SETTINGS" || "CMAF_GROUP_SETTINGS",
728
730
  * },
@@ -1161,7 +1163,7 @@ declare const CreateJobCommand_base: {
1161
1163
  * MaxBitrate: Number("int"),
1162
1164
  * NumberBFramesBetweenReferenceFrames: Number("int"),
1163
1165
  * PerFrameMetrics: [
1164
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1166
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1165
1167
  * ],
1166
1168
  * QvbrSettings: { // Av1QvbrSettings
1167
1169
  * QvbrQualityLevel: Number("int"),
@@ -1182,7 +1184,7 @@ declare const CreateJobCommand_base: {
1182
1184
  * FramerateNumerator: Number("int"),
1183
1185
  * InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
1184
1186
  * PerFrameMetrics: [
1185
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1187
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1186
1188
  * ],
1187
1189
  * ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
1188
1190
  * SlowPal: "DISABLED" || "ENABLED",
@@ -1235,7 +1237,7 @@ declare const CreateJobCommand_base: {
1235
1237
  * ParDenominator: Number("int"),
1236
1238
  * ParNumerator: Number("int"),
1237
1239
  * PerFrameMetrics: [
1238
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1240
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1239
1241
  * ],
1240
1242
  * QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
1241
1243
  * QvbrSettings: { // H264QvbrSettings
@@ -1292,7 +1294,7 @@ declare const CreateJobCommand_base: {
1292
1294
  * ParDenominator: Number("int"),
1293
1295
  * ParNumerator: Number("int"),
1294
1296
  * PerFrameMetrics: [
1295
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1297
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1296
1298
  * ],
1297
1299
  * QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
1298
1300
  * QvbrSettings: { // H265QvbrSettings
@@ -1880,7 +1882,9 @@ declare const CreateJobCommand_base: {
1880
1882
  * // Duration: Number("int"),
1881
1883
  * // FramerateDenominator: Number("int"),
1882
1884
  * // FramerateNumerator: Number("int"),
1885
+ * // Height: Number("int"),
1883
1886
  * // SampleRate: Number("int"),
1887
+ * // Width: Number("int"),
1884
1888
  * // },
1885
1889
  * // VideoOverlays: [ // __listOfVideoOverlay
1886
1890
  * // { // VideoOverlay
@@ -2342,7 +2346,7 @@ declare const CreateJobCommand_base: {
2342
2346
  * // ManifestEncoding: "UTF8" || "UTF16",
2343
2347
  * // },
2344
2348
  * // PerFrameMetrics: [ // __listOfFrameMetricType
2345
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
2349
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
2346
2350
  * // ],
2347
2351
  * // Type: "HLS_GROUP_SETTINGS" || "DASH_ISO_GROUP_SETTINGS" || "FILE_GROUP_SETTINGS" || "MS_SMOOTH_GROUP_SETTINGS" || "CMAF_GROUP_SETTINGS",
2348
2352
  * // },
@@ -2781,7 +2785,7 @@ declare const CreateJobCommand_base: {
2781
2785
  * // MaxBitrate: Number("int"),
2782
2786
  * // NumberBFramesBetweenReferenceFrames: Number("int"),
2783
2787
  * // PerFrameMetrics: [
2784
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
2788
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
2785
2789
  * // ],
2786
2790
  * // QvbrSettings: { // Av1QvbrSettings
2787
2791
  * // QvbrQualityLevel: Number("int"),
@@ -2802,7 +2806,7 @@ declare const CreateJobCommand_base: {
2802
2806
  * // FramerateNumerator: Number("int"),
2803
2807
  * // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
2804
2808
  * // PerFrameMetrics: [
2805
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
2809
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
2806
2810
  * // ],
2807
2811
  * // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
2808
2812
  * // SlowPal: "DISABLED" || "ENABLED",
@@ -2855,7 +2859,7 @@ declare const CreateJobCommand_base: {
2855
2859
  * // ParDenominator: Number("int"),
2856
2860
  * // ParNumerator: Number("int"),
2857
2861
  * // PerFrameMetrics: [
2858
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
2862
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
2859
2863
  * // ],
2860
2864
  * // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
2861
2865
  * // QvbrSettings: { // H264QvbrSettings
@@ -2912,7 +2916,7 @@ declare const CreateJobCommand_base: {
2912
2916
  * // ParDenominator: Number("int"),
2913
2917
  * // ParNumerator: Number("int"),
2914
2918
  * // PerFrameMetrics: [
2915
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
2919
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
2916
2920
  * // ],
2917
2921
  * // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
2918
2922
  * // QvbrSettings: { // H265QvbrSettings
@@ -3269,6 +3273,9 @@ declare const CreateJobCommand_base: {
3269
3273
  * @throws {@link NotFoundException} (client fault)
3270
3274
  * The resource you requested doesn't exist.
3271
3275
  *
3276
+ * @throws {@link ServiceQuotaExceededException} (client fault)
3277
+ * You attempted to create more resources than the service allows based on service quotas.
3278
+ *
3272
3279
  * @throws {@link TooManyRequestsException} (client fault)
3273
3280
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
3274
3281
  *
@@ -697,7 +697,7 @@ declare const CreateJobTemplateCommand_base: {
697
697
  * ManifestEncoding: "UTF8" || "UTF16",
698
698
  * },
699
699
  * PerFrameMetrics: [ // __listOfFrameMetricType
700
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
700
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
701
701
  * ],
702
702
  * Type: "HLS_GROUP_SETTINGS" || "DASH_ISO_GROUP_SETTINGS" || "FILE_GROUP_SETTINGS" || "MS_SMOOTH_GROUP_SETTINGS" || "CMAF_GROUP_SETTINGS",
703
703
  * },
@@ -1136,7 +1136,7 @@ declare const CreateJobTemplateCommand_base: {
1136
1136
  * MaxBitrate: Number("int"),
1137
1137
  * NumberBFramesBetweenReferenceFrames: Number("int"),
1138
1138
  * PerFrameMetrics: [
1139
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1139
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1140
1140
  * ],
1141
1141
  * QvbrSettings: { // Av1QvbrSettings
1142
1142
  * QvbrQualityLevel: Number("int"),
@@ -1157,7 +1157,7 @@ declare const CreateJobTemplateCommand_base: {
1157
1157
  * FramerateNumerator: Number("int"),
1158
1158
  * InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
1159
1159
  * PerFrameMetrics: [
1160
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1160
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1161
1161
  * ],
1162
1162
  * ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
1163
1163
  * SlowPal: "DISABLED" || "ENABLED",
@@ -1210,7 +1210,7 @@ declare const CreateJobTemplateCommand_base: {
1210
1210
  * ParDenominator: Number("int"),
1211
1211
  * ParNumerator: Number("int"),
1212
1212
  * PerFrameMetrics: [
1213
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1213
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1214
1214
  * ],
1215
1215
  * QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
1216
1216
  * QvbrSettings: { // H264QvbrSettings
@@ -1267,7 +1267,7 @@ declare const CreateJobTemplateCommand_base: {
1267
1267
  * ParDenominator: Number("int"),
1268
1268
  * ParNumerator: Number("int"),
1269
1269
  * PerFrameMetrics: [
1270
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1270
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1271
1271
  * ],
1272
1272
  * QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
1273
1273
  * QvbrSettings: { // H265QvbrSettings
@@ -2252,7 +2252,7 @@ declare const CreateJobTemplateCommand_base: {
2252
2252
  * // ManifestEncoding: "UTF8" || "UTF16",
2253
2253
  * // },
2254
2254
  * // PerFrameMetrics: [ // __listOfFrameMetricType
2255
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
2255
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
2256
2256
  * // ],
2257
2257
  * // Type: "HLS_GROUP_SETTINGS" || "DASH_ISO_GROUP_SETTINGS" || "FILE_GROUP_SETTINGS" || "MS_SMOOTH_GROUP_SETTINGS" || "CMAF_GROUP_SETTINGS",
2258
2258
  * // },
@@ -2691,7 +2691,7 @@ declare const CreateJobTemplateCommand_base: {
2691
2691
  * // MaxBitrate: Number("int"),
2692
2692
  * // NumberBFramesBetweenReferenceFrames: Number("int"),
2693
2693
  * // PerFrameMetrics: [
2694
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
2694
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
2695
2695
  * // ],
2696
2696
  * // QvbrSettings: { // Av1QvbrSettings
2697
2697
  * // QvbrQualityLevel: Number("int"),
@@ -2712,7 +2712,7 @@ declare const CreateJobTemplateCommand_base: {
2712
2712
  * // FramerateNumerator: Number("int"),
2713
2713
  * // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
2714
2714
  * // PerFrameMetrics: [
2715
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
2715
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
2716
2716
  * // ],
2717
2717
  * // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
2718
2718
  * // SlowPal: "DISABLED" || "ENABLED",
@@ -2765,7 +2765,7 @@ declare const CreateJobTemplateCommand_base: {
2765
2765
  * // ParDenominator: Number("int"),
2766
2766
  * // ParNumerator: Number("int"),
2767
2767
  * // PerFrameMetrics: [
2768
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
2768
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
2769
2769
  * // ],
2770
2770
  * // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
2771
2771
  * // QvbrSettings: { // H264QvbrSettings
@@ -2822,7 +2822,7 @@ declare const CreateJobTemplateCommand_base: {
2822
2822
  * // ParDenominator: Number("int"),
2823
2823
  * // ParNumerator: Number("int"),
2824
2824
  * // PerFrameMetrics: [
2825
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
2825
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
2826
2826
  * // ],
2827
2827
  * // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
2828
2828
  * // QvbrSettings: { // H265QvbrSettings
@@ -3163,6 +3163,9 @@ declare const CreateJobTemplateCommand_base: {
3163
3163
  * @throws {@link NotFoundException} (client fault)
3164
3164
  * The resource you requested doesn't exist.
3165
3165
  *
3166
+ * @throws {@link ServiceQuotaExceededException} (client fault)
3167
+ * You attempted to create more resources than the service allows based on service quotas.
3168
+ *
3166
3169
  * @throws {@link TooManyRequestsException} (client fault)
3167
3170
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
3168
3171
  *
@@ -459,7 +459,7 @@ declare const CreatePresetCommand_base: {
459
459
  * MaxBitrate: Number("int"),
460
460
  * NumberBFramesBetweenReferenceFrames: Number("int"),
461
461
  * PerFrameMetrics: [ // __listOfFrameMetricType
462
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
462
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
463
463
  * ],
464
464
  * QvbrSettings: { // Av1QvbrSettings
465
465
  * QvbrQualityLevel: Number("int"),
@@ -480,7 +480,7 @@ declare const CreatePresetCommand_base: {
480
480
  * FramerateNumerator: Number("int"),
481
481
  * InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
482
482
  * PerFrameMetrics: [
483
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
483
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
484
484
  * ],
485
485
  * ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
486
486
  * SlowPal: "DISABLED" || "ENABLED",
@@ -533,7 +533,7 @@ declare const CreatePresetCommand_base: {
533
533
  * ParDenominator: Number("int"),
534
534
  * ParNumerator: Number("int"),
535
535
  * PerFrameMetrics: [
536
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
536
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
537
537
  * ],
538
538
  * QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
539
539
  * QvbrSettings: { // H264QvbrSettings
@@ -590,7 +590,7 @@ declare const CreatePresetCommand_base: {
590
590
  * ParDenominator: Number("int"),
591
591
  * ParNumerator: Number("int"),
592
592
  * PerFrameMetrics: [
593
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
593
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
594
594
  * ],
595
595
  * QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
596
596
  * QvbrSettings: { // H265QvbrSettings
@@ -637,7 +637,7 @@ declare const CreatePresetCommand_base: {
637
637
  * ParDenominator: Number("int"),
638
638
  * ParNumerator: Number("int"),
639
639
  * PerFrameMetrics: [
640
- * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
640
+ * "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
641
641
  * ],
642
642
  * QualityTuningLevel: "SINGLE_PASS" || "MULTI_PASS",
643
643
  * RateControlMode: "VBR" || "CBR",
@@ -1320,7 +1320,7 @@ declare const CreatePresetCommand_base: {
1320
1320
  * // MaxBitrate: Number("int"),
1321
1321
  * // NumberBFramesBetweenReferenceFrames: Number("int"),
1322
1322
  * // PerFrameMetrics: [ // __listOfFrameMetricType
1323
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1323
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1324
1324
  * // ],
1325
1325
  * // QvbrSettings: { // Av1QvbrSettings
1326
1326
  * // QvbrQualityLevel: Number("int"),
@@ -1341,7 +1341,7 @@ declare const CreatePresetCommand_base: {
1341
1341
  * // FramerateNumerator: Number("int"),
1342
1342
  * // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
1343
1343
  * // PerFrameMetrics: [
1344
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1344
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1345
1345
  * // ],
1346
1346
  * // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
1347
1347
  * // SlowPal: "DISABLED" || "ENABLED",
@@ -1394,7 +1394,7 @@ declare const CreatePresetCommand_base: {
1394
1394
  * // ParDenominator: Number("int"),
1395
1395
  * // ParNumerator: Number("int"),
1396
1396
  * // PerFrameMetrics: [
1397
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1397
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1398
1398
  * // ],
1399
1399
  * // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
1400
1400
  * // QvbrSettings: { // H264QvbrSettings
@@ -1451,7 +1451,7 @@ declare const CreatePresetCommand_base: {
1451
1451
  * // ParDenominator: Number("int"),
1452
1452
  * // ParNumerator: Number("int"),
1453
1453
  * // PerFrameMetrics: [
1454
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1454
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1455
1455
  * // ],
1456
1456
  * // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
1457
1457
  * // QvbrSettings: { // H265QvbrSettings
@@ -1498,7 +1498,7 @@ declare const CreatePresetCommand_base: {
1498
1498
  * // ParDenominator: Number("int"),
1499
1499
  * // ParNumerator: Number("int"),
1500
1500
  * // PerFrameMetrics: [
1501
- * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR",
1501
+ * // "PSNR" || "SSIM" || "MS_SSIM" || "PSNR_HVS" || "VMAF" || "QVBR" || "SHOT_CHANGE",
1502
1502
  * // ],
1503
1503
  * // QualityTuningLevel: "SINGLE_PASS" || "MULTI_PASS",
1504
1504
  * // RateControlMode: "VBR" || "CBR",
@@ -1775,6 +1775,9 @@ declare const CreatePresetCommand_base: {
1775
1775
  * @throws {@link NotFoundException} (client fault)
1776
1776
  * The resource you requested doesn't exist.
1777
1777
  *
1778
+ * @throws {@link ServiceQuotaExceededException} (client fault)
1779
+ * You attempted to create more resources than the service allows based on service quotas.
1780
+ *
1778
1781
  * @throws {@link TooManyRequestsException} (client fault)
1779
1782
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
1780
1783
  *
@@ -108,6 +108,9 @@ declare const CreateQueueCommand_base: {
108
108
  * @throws {@link NotFoundException} (client fault)
109
109
  * The resource you requested doesn't exist.
110
110
  *
111
+ * @throws {@link ServiceQuotaExceededException} (client fault)
112
+ * You attempted to create more resources than the service allows based on service quotas.
113
+ *
111
114
  * @throws {@link TooManyRequestsException} (client fault)
112
115
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
113
116
  *
@@ -67,6 +67,9 @@ declare const CreateResourceShareCommand_base: {
67
67
  * @throws {@link NotFoundException} (client fault)
68
68
  * The resource you requested doesn't exist.
69
69
  *
70
+ * @throws {@link ServiceQuotaExceededException} (client fault)
71
+ * You attempted to create more resources than the service allows based on service quotas.
72
+ *
70
73
  * @throws {@link TooManyRequestsException} (client fault)
71
74
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
72
75
  *