@aws-sdk/client-mediaconvert 3.650.0 → 3.651.1

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 (46) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +2739 -2595
  3. package/dist-es/MediaConvert.js +2 -0
  4. package/dist-es/commands/ListVersionsCommand.js +22 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_0.js +13 -20
  7. package/dist-es/models/models_1.js +25 -66
  8. package/dist-es/models/models_2.js +65 -0
  9. package/dist-es/pagination/ListVersionsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/protocols/Aws_restJson1.js +102 -2
  12. package/dist-types/MediaConvert.d.ts +8 -0
  13. package/dist-types/MediaConvertClient.d.ts +3 -2
  14. package/dist-types/commands/AssociateCertificateCommand.d.ts +1 -1
  15. package/dist-types/commands/CreateJobCommand.d.ts +53 -4
  16. package/dist-types/commands/CreateJobTemplateCommand.d.ts +50 -4
  17. package/dist-types/commands/CreatePresetCommand.d.ts +4 -2
  18. package/dist-types/commands/GetJobCommand.d.ts +27 -2
  19. package/dist-types/commands/GetJobTemplateCommand.d.ts +25 -2
  20. package/dist-types/commands/GetPresetCommand.d.ts +2 -1
  21. package/dist-types/commands/ListJobTemplatesCommand.d.ts +25 -2
  22. package/dist-types/commands/ListJobsCommand.d.ts +27 -2
  23. package/dist-types/commands/ListPresetsCommand.d.ts +2 -1
  24. package/dist-types/commands/ListVersionsCommand.d.ts +85 -0
  25. package/dist-types/commands/SearchJobsCommand.d.ts +27 -2
  26. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +50 -4
  27. package/dist-types/commands/UpdatePresetCommand.d.ts +4 -2
  28. package/dist-types/commands/index.d.ts +1 -0
  29. package/dist-types/models/models_0.d.ts +118 -68
  30. package/dist-types/models/models_1.d.ts +108 -86
  31. package/dist-types/models/models_2.d.ts +116 -1
  32. package/dist-types/pagination/ListVersionsPaginator.d.ts +7 -0
  33. package/dist-types/pagination/index.d.ts +1 -0
  34. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  35. package/dist-types/ts3.4/MediaConvert.d.ts +18 -0
  36. package/dist-types/ts3.4/MediaConvertClient.d.ts +6 -0
  37. package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +36 -0
  39. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +35 -30
  41. package/dist-types/ts3.4/models/models_1.d.ts +44 -45
  42. package/dist-types/ts3.4/models/models_2.d.ts +48 -0
  43. package/dist-types/ts3.4/pagination/ListVersionsPaginator.d.ts +11 -0
  44. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  45. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  46. package/package.json +5 -5
@@ -1,7 +1,87 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
3
3
  import { AccelerationSettings, BillingTagsSource, Endpoint, HopDestination } from "./models_0";
4
- import { Commitment, Job, JobSettings, JobStatus, JobTemplate, JobTemplateSettings, Preset, PresetSettings, PricingPlan, Queue, QueueStatus, RenewalType, SimulateReservedQueue, StatusUpdateInterval } from "./models_1";
4
+ import { Commitment, Job, JobEngineVersion, JobSettings, JobStatus, JobTemplate, JobTemplateSettings, Preset, PresetSettings, PricingPlan, Queue, QueueStatus, RenewalType, SimulateReservedQueue, StatusUpdateInterval } from "./models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface AssociateCertificateRequest {
9
+ /**
10
+ * The ARN of the ACM certificate that you want to associate with your MediaConvert resource.
11
+ * @public
12
+ */
13
+ Arn: string | undefined;
14
+ }
15
+ /**
16
+ * @public
17
+ */
18
+ export interface AssociateCertificateResponse {
19
+ }
20
+ /**
21
+ * The service can't process your request because of a problem in the request. Please check your request form and syntax.
22
+ * @public
23
+ */
24
+ export declare class BadRequestException extends __BaseException {
25
+ readonly name: "BadRequestException";
26
+ readonly $fault: "client";
27
+ Message?: string;
28
+ /**
29
+ * @internal
30
+ */
31
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
32
+ }
33
+ /**
34
+ * The service couldn't complete your request because there is a conflict with the current state of the resource.
35
+ * @public
36
+ */
37
+ export declare class ConflictException extends __BaseException {
38
+ readonly name: "ConflictException";
39
+ readonly $fault: "client";
40
+ Message?: string;
41
+ /**
42
+ * @internal
43
+ */
44
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
45
+ }
46
+ /**
47
+ * You don't have permissions for this action with the credentials you sent.
48
+ * @public
49
+ */
50
+ export declare class ForbiddenException extends __BaseException {
51
+ readonly name: "ForbiddenException";
52
+ readonly $fault: "client";
53
+ Message?: string;
54
+ /**
55
+ * @internal
56
+ */
57
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
58
+ }
59
+ /**
60
+ * The service encountered an unexpected condition and can't fulfill your request.
61
+ * @public
62
+ */
63
+ export declare class InternalServerErrorException extends __BaseException {
64
+ readonly name: "InternalServerErrorException";
65
+ readonly $fault: "server";
66
+ Message?: string;
67
+ /**
68
+ * @internal
69
+ */
70
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
71
+ }
72
+ /**
73
+ * The resource you requested doesn't exist.
74
+ * @public
75
+ */
76
+ export declare class NotFoundException extends __BaseException {
77
+ readonly name: "NotFoundException";
78
+ readonly $fault: "client";
79
+ Message?: string;
80
+ /**
81
+ * @internal
82
+ */
83
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
84
+ }
5
85
  /**
6
86
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
7
87
  * @public
@@ -54,6 +134,11 @@ export interface CreateJobRequest {
54
134
  * @public
55
135
  */
56
136
  HopDestinations?: HopDestination[];
137
+ /**
138
+ * Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. To specify a Job engine version: Enter a date in a YYYY-MM-DD format. For a list of valid Job engine versions, submit a ListVersions request. To not specify a Job engine version: Leave blank.
139
+ * @public
140
+ */
141
+ JobEngineVersion?: string;
57
142
  /**
58
143
  * Optional. When you create a job, you can either specify a job template or specify the transcoding settings individually.
59
144
  * @public
@@ -789,6 +874,36 @@ export interface ListTagsForResourceResponse {
789
874
  */
790
875
  ResourceTags?: ResourceTags;
791
876
  }
877
+ /**
878
+ * @public
879
+ */
880
+ export interface ListVersionsRequest {
881
+ /**
882
+ * Optional. Number of valid Job engine versions, up to twenty, that will be returned at one time.
883
+ * @public
884
+ */
885
+ MaxResults?: number;
886
+ /**
887
+ * Optional. Use this string, provided with the response to a previous request, to request the next batch of Job engine versions.
888
+ * @public
889
+ */
890
+ NextToken?: string;
891
+ }
892
+ /**
893
+ * @public
894
+ */
895
+ export interface ListVersionsResponse {
896
+ /**
897
+ * Optional. Use this string, provided with the response to a previous request, to request the next batch of Job engine versions.
898
+ * @public
899
+ */
900
+ NextToken?: string;
901
+ /**
902
+ * Retrieve a JSON array of all available Job engine versions and the date they expire.
903
+ * @public
904
+ */
905
+ Versions?: JobEngineVersion[];
906
+ }
792
907
  /**
793
908
  * @public
794
909
  */
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListVersionsCommandInput, ListVersionsCommandOutput } from "../commands/ListVersionsCommand";
3
+ import { MediaConvertPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListVersions: (config: MediaConvertPaginationConfiguration, input: ListVersionsCommandInput, ...rest: any[]) => Paginator<ListVersionsCommandOutput>;
@@ -4,4 +4,5 @@ export * from "./ListJobTemplatesPaginator";
4
4
  export * from "./ListJobsPaginator";
5
5
  export * from "./ListPresetsPaginator";
6
6
  export * from "./ListQueuesPaginator";
7
+ export * from "./ListVersionsPaginator";
7
8
  export * from "./SearchJobsPaginator";
@@ -22,6 +22,7 @@ import { ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput } from "../
22
22
  import { ListPresetsCommandInput, ListPresetsCommandOutput } from "../commands/ListPresetsCommand";
23
23
  import { ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand";
24
24
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
25
+ import { ListVersionsCommandInput, ListVersionsCommandOutput } from "../commands/ListVersionsCommand";
25
26
  import { PutPolicyCommandInput, PutPolicyCommandOutput } from "../commands/PutPolicyCommand";
26
27
  import { SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand";
27
28
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
@@ -117,6 +118,10 @@ export declare const se_ListQueuesCommand: (input: ListQueuesCommandInput, conte
117
118
  * serializeAws_restJson1ListTagsForResourceCommand
118
119
  */
119
120
  export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
121
+ /**
122
+ * serializeAws_restJson1ListVersionsCommand
123
+ */
124
+ export declare const se_ListVersionsCommand: (input: ListVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
120
125
  /**
121
126
  * serializeAws_restJson1PutPolicyCommand
122
127
  */
@@ -233,6 +238,10 @@ export declare const de_ListQueuesCommand: (output: __HttpResponse, context: __S
233
238
  * deserializeAws_restJson1ListTagsForResourceCommand
234
239
  */
235
240
  export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
241
+ /**
242
+ * deserializeAws_restJson1ListVersionsCommand
243
+ */
244
+ export declare const de_ListVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVersionsCommandOutput>;
236
245
  /**
237
246
  * deserializeAws_restJson1PutPolicyCommand
238
247
  */
@@ -87,6 +87,10 @@ import {
87
87
  ListTagsForResourceCommandInput,
88
88
  ListTagsForResourceCommandOutput,
89
89
  } from "./commands/ListTagsForResourceCommand";
90
+ import {
91
+ ListVersionsCommandInput,
92
+ ListVersionsCommandOutput,
93
+ } from "./commands/ListVersionsCommand";
90
94
  import {
91
95
  PutPolicyCommandInput,
92
96
  PutPolicyCommandOutput,
@@ -410,6 +414,20 @@ export interface MediaConvert {
410
414
  options: __HttpHandlerOptions,
411
415
  cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
412
416
  ): void;
417
+ listVersions(): Promise<ListVersionsCommandOutput>;
418
+ listVersions(
419
+ args: ListVersionsCommandInput,
420
+ options?: __HttpHandlerOptions
421
+ ): Promise<ListVersionsCommandOutput>;
422
+ listVersions(
423
+ args: ListVersionsCommandInput,
424
+ cb: (err: any, data?: ListVersionsCommandOutput) => void
425
+ ): void;
426
+ listVersions(
427
+ args: ListVersionsCommandInput,
428
+ options: __HttpHandlerOptions,
429
+ cb: (err: any, data?: ListVersionsCommandOutput) => void
430
+ ): void;
413
431
  putPolicy(
414
432
  args: PutPolicyCommandInput,
415
433
  options?: __HttpHandlerOptions
@@ -133,6 +133,10 @@ import {
133
133
  ListTagsForResourceCommandInput,
134
134
  ListTagsForResourceCommandOutput,
135
135
  } from "./commands/ListTagsForResourceCommand";
136
+ import {
137
+ ListVersionsCommandInput,
138
+ ListVersionsCommandOutput,
139
+ } from "./commands/ListVersionsCommand";
136
140
  import {
137
141
  PutPolicyCommandInput,
138
142
  PutPolicyCommandOutput,
@@ -191,6 +195,7 @@ export type ServiceInputTypes =
191
195
  | ListPresetsCommandInput
192
196
  | ListQueuesCommandInput
193
197
  | ListTagsForResourceCommandInput
198
+ | ListVersionsCommandInput
194
199
  | PutPolicyCommandInput
195
200
  | SearchJobsCommandInput
196
201
  | TagResourceCommandInput
@@ -221,6 +226,7 @@ export type ServiceOutputTypes =
221
226
  | ListPresetsCommandOutput
222
227
  | ListQueuesCommandOutput
223
228
  | ListTagsForResourceCommandOutput
229
+ | ListVersionsCommandOutput
224
230
  | PutPolicyCommandOutput
225
231
  | SearchJobsCommandOutput
226
232
  | TagResourceCommandOutput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  AssociateCertificateRequest,
10
10
  AssociateCertificateResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface AssociateCertificateCommandInput
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MediaConvertClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MediaConvertClient";
8
+ import { ListVersionsRequest, ListVersionsResponse } from "../models/models_2";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListVersionsCommandInput extends ListVersionsRequest {}
12
+ export interface ListVersionsCommandOutput
13
+ extends ListVersionsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListVersionsCommand_base: {
16
+ new (
17
+ input: ListVersionsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListVersionsCommandInput,
20
+ ListVersionsCommandOutput,
21
+ MediaConvertClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [ListVersionsCommandInput]
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListVersionsCommandInput,
29
+ ListVersionsCommandOutput,
30
+ MediaConvertClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListVersionsCommand extends ListVersionsCommand_base {}
@@ -20,6 +20,7 @@ export * from "./ListJobsCommand";
20
20
  export * from "./ListPresetsCommand";
21
21
  export * from "./ListQueuesCommand";
22
22
  export * from "./ListTagsForResourceCommand";
23
+ export * from "./ListVersionsCommand";
23
24
  export * from "./PutPolicyCommand";
24
25
  export * from "./SearchJobsCommand";
25
26
  export * from "./TagResourceCommand";
@@ -1186,6 +1186,7 @@ export interface AudioSelectorGroup {
1186
1186
  export declare const AudioDurationCorrection: {
1187
1187
  readonly AUTO: "AUTO";
1188
1188
  readonly DISABLED: "DISABLED";
1189
+ readonly FORCE: "FORCE";
1189
1190
  readonly FRAME: "FRAME";
1190
1191
  readonly TRACK: "TRACK";
1191
1192
  };
@@ -1262,6 +1263,12 @@ export interface EmbeddedSourceSettings {
1262
1263
  Source608TrackNumber?: number;
1263
1264
  TerminateCaptions?: EmbeddedTerminateCaptions;
1264
1265
  }
1266
+ export declare const CaptionSourceByteRateLimit: {
1267
+ readonly DISABLED: "DISABLED";
1268
+ readonly ENABLED: "ENABLED";
1269
+ };
1270
+ export type CaptionSourceByteRateLimit =
1271
+ (typeof CaptionSourceByteRateLimit)[keyof typeof CaptionSourceByteRateLimit];
1265
1272
  export declare const FileSourceConvert608To708: {
1266
1273
  readonly DISABLED: "DISABLED";
1267
1274
  readonly UPCONVERT: "UPCONVERT";
@@ -1285,6 +1292,7 @@ export declare const FileSourceTimeDeltaUnits: {
1285
1292
  export type FileSourceTimeDeltaUnits =
1286
1293
  (typeof FileSourceTimeDeltaUnits)[keyof typeof FileSourceTimeDeltaUnits];
1287
1294
  export interface FileSourceSettings {
1295
+ ByteRateLimit?: CaptionSourceByteRateLimit;
1288
1296
  Convert608To708?: FileSourceConvert608To708;
1289
1297
  ConvertPaintToPop?: CaptionSourceConvertPaintOnToPopOn;
1290
1298
  Framerate?: CaptionSourceFramerate;
@@ -1420,6 +1428,19 @@ export interface InputVideoGenerator {
1420
1428
  FramerateNumerator?: number;
1421
1429
  SampleRate?: number;
1422
1430
  }
1431
+ export declare const VideoOverlayUnit: {
1432
+ readonly PERCENTAGE: "PERCENTAGE";
1433
+ readonly PIXELS: "PIXELS";
1434
+ };
1435
+ export type VideoOverlayUnit =
1436
+ (typeof VideoOverlayUnit)[keyof typeof VideoOverlayUnit];
1437
+ export interface VideoOverlayPosition {
1438
+ Height?: number;
1439
+ Unit?: VideoOverlayUnit;
1440
+ Width?: number;
1441
+ XPosition?: number;
1442
+ YPosition?: number;
1443
+ }
1423
1444
  export interface VideoOverlayInputClipping {
1424
1445
  EndTimecode?: string;
1425
1446
  StartTimecode?: string;
@@ -1430,10 +1451,24 @@ export interface VideoOverlayInput {
1430
1451
  TimecodeSource?: InputTimecodeSource;
1431
1452
  TimecodeStart?: string;
1432
1453
  }
1454
+ export declare const VideoOverlayPlayBackMode: {
1455
+ readonly ONCE: "ONCE";
1456
+ readonly REPEAT: "REPEAT";
1457
+ };
1458
+ export type VideoOverlayPlayBackMode =
1459
+ (typeof VideoOverlayPlayBackMode)[keyof typeof VideoOverlayPlayBackMode];
1460
+ export interface VideoOverlayTransition {
1461
+ EndPosition?: VideoOverlayPosition;
1462
+ EndTimecode?: string;
1463
+ StartTimecode?: string;
1464
+ }
1433
1465
  export interface VideoOverlay {
1434
1466
  EndTimecode?: string;
1467
+ InitialPosition?: VideoOverlayPosition;
1435
1468
  Input?: VideoOverlayInput;
1469
+ Playback?: VideoOverlayPlayBackMode;
1436
1470
  StartTimecode?: string;
1471
+ Transitions?: VideoOverlayTransition[];
1437
1472
  }
1438
1473
  export declare const AlphaBehavior: {
1439
1474
  readonly DISCARD: "DISCARD";
@@ -2320,33 +2355,3 @@ export declare const CmfcAudioTrackType: {
2320
2355
  };
2321
2356
  export type CmfcAudioTrackType =
2322
2357
  (typeof CmfcAudioTrackType)[keyof typeof CmfcAudioTrackType];
2323
- export declare const CmfcDescriptiveVideoServiceFlag: {
2324
- readonly DONT_FLAG: "DONT_FLAG";
2325
- readonly FLAG: "FLAG";
2326
- };
2327
- export type CmfcDescriptiveVideoServiceFlag =
2328
- (typeof CmfcDescriptiveVideoServiceFlag)[keyof typeof CmfcDescriptiveVideoServiceFlag];
2329
- export declare const CmfcIFrameOnlyManifest: {
2330
- readonly EXCLUDE: "EXCLUDE";
2331
- readonly INCLUDE: "INCLUDE";
2332
- };
2333
- export type CmfcIFrameOnlyManifest =
2334
- (typeof CmfcIFrameOnlyManifest)[keyof typeof CmfcIFrameOnlyManifest];
2335
- export declare const CmfcKlvMetadata: {
2336
- readonly NONE: "NONE";
2337
- readonly PASSTHROUGH: "PASSTHROUGH";
2338
- };
2339
- export type CmfcKlvMetadata =
2340
- (typeof CmfcKlvMetadata)[keyof typeof CmfcKlvMetadata];
2341
- export declare const CmfcManifestMetadataSignaling: {
2342
- readonly DISABLED: "DISABLED";
2343
- readonly ENABLED: "ENABLED";
2344
- };
2345
- export type CmfcManifestMetadataSignaling =
2346
- (typeof CmfcManifestMetadataSignaling)[keyof typeof CmfcManifestMetadataSignaling];
2347
- export declare const CmfcScte35Esam: {
2348
- readonly INSERT: "INSERT";
2349
- readonly NONE: "NONE";
2350
- };
2351
- export type CmfcScte35Esam =
2352
- (typeof CmfcScte35Esam)[keyof typeof CmfcScte35Esam];
@@ -1,5 +1,3 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
3
1
  import {
4
2
  AccelerationSettings,
5
3
  AccelerationStatus,
@@ -11,11 +9,6 @@ import {
11
9
  CaptionDescriptionPreset,
12
10
  CmfcAudioDuration,
13
11
  CmfcAudioTrackType,
14
- CmfcDescriptiveVideoServiceFlag,
15
- CmfcIFrameOnlyManifest,
16
- CmfcKlvMetadata,
17
- CmfcManifestMetadataSignaling,
18
- CmfcScte35Esam,
19
12
  ColorConversion3DLUTSetting,
20
13
  EsamSettings,
21
14
  ExtendedDataServices,
@@ -36,6 +29,36 @@ import {
36
29
  QueueTransition,
37
30
  Rectangle,
38
31
  } from "./models_0";
32
+ export declare const CmfcDescriptiveVideoServiceFlag: {
33
+ readonly DONT_FLAG: "DONT_FLAG";
34
+ readonly FLAG: "FLAG";
35
+ };
36
+ export type CmfcDescriptiveVideoServiceFlag =
37
+ (typeof CmfcDescriptiveVideoServiceFlag)[keyof typeof CmfcDescriptiveVideoServiceFlag];
38
+ export declare const CmfcIFrameOnlyManifest: {
39
+ readonly EXCLUDE: "EXCLUDE";
40
+ readonly INCLUDE: "INCLUDE";
41
+ };
42
+ export type CmfcIFrameOnlyManifest =
43
+ (typeof CmfcIFrameOnlyManifest)[keyof typeof CmfcIFrameOnlyManifest];
44
+ export declare const CmfcKlvMetadata: {
45
+ readonly NONE: "NONE";
46
+ readonly PASSTHROUGH: "PASSTHROUGH";
47
+ };
48
+ export type CmfcKlvMetadata =
49
+ (typeof CmfcKlvMetadata)[keyof typeof CmfcKlvMetadata];
50
+ export declare const CmfcManifestMetadataSignaling: {
51
+ readonly DISABLED: "DISABLED";
52
+ readonly ENABLED: "ENABLED";
53
+ };
54
+ export type CmfcManifestMetadataSignaling =
55
+ (typeof CmfcManifestMetadataSignaling)[keyof typeof CmfcManifestMetadataSignaling];
56
+ export declare const CmfcScte35Esam: {
57
+ readonly INSERT: "INSERT";
58
+ readonly NONE: "NONE";
59
+ };
60
+ export type CmfcScte35Esam =
61
+ (typeof CmfcScte35Esam)[keyof typeof CmfcScte35Esam];
39
62
  export declare const CmfcScte35Source: {
40
63
  readonly NONE: "NONE";
41
64
  readonly PASSTHROUGH: "PASSTHROUGH";
@@ -80,6 +103,7 @@ export declare const ContainerType: {
80
103
  readonly MP4: "MP4";
81
104
  readonly MPD: "MPD";
82
105
  readonly MXF: "MXF";
106
+ readonly OGG: "OGG";
83
107
  readonly RAW: "RAW";
84
108
  readonly WEBM: "WEBM";
85
109
  readonly Y4M: "Y4M";
@@ -852,6 +876,12 @@ export declare const H264RepeatPps: {
852
876
  readonly ENABLED: "ENABLED";
853
877
  };
854
878
  export type H264RepeatPps = (typeof H264RepeatPps)[keyof typeof H264RepeatPps];
879
+ export declare const H264SaliencyAwareEncoding: {
880
+ readonly DISABLED: "DISABLED";
881
+ readonly PREFERRED: "PREFERRED";
882
+ };
883
+ export type H264SaliencyAwareEncoding =
884
+ (typeof H264SaliencyAwareEncoding)[keyof typeof H264SaliencyAwareEncoding];
855
885
  export declare const H264ScanTypeConversionMode: {
856
886
  readonly INTERLACED: "INTERLACED";
857
887
  readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
@@ -933,6 +963,7 @@ export interface H264Settings {
933
963
  QvbrSettings?: H264QvbrSettings;
934
964
  RateControlMode?: H264RateControlMode;
935
965
  RepeatPps?: H264RepeatPps;
966
+ SaliencyAwareEncoding?: H264SaliencyAwareEncoding;
936
967
  ScanTypeConversionMode?: H264ScanTypeConversionMode;
937
968
  SceneChangeDetect?: H264SceneChangeDetect;
938
969
  Slices?: number;
@@ -2160,6 +2191,8 @@ export interface Job {
2160
2191
  ErrorMessage?: string;
2161
2192
  HopDestinations?: HopDestination[];
2162
2193
  Id?: string;
2194
+ JobEngineVersionRequested?: string;
2195
+ JobEngineVersionUsed?: string;
2163
2196
  JobPercentComplete?: number;
2164
2197
  JobTemplate?: string;
2165
2198
  Messages?: JobMessages;
@@ -2177,6 +2210,10 @@ export interface Job {
2177
2210
  UserMetadata?: Record<string, string>;
2178
2211
  Warnings?: WarningGroup[];
2179
2212
  }
2213
+ export interface JobEngineVersion {
2214
+ ExpirationDate?: Date;
2215
+ Version?: string;
2216
+ }
2180
2217
  export interface JobTemplateSettings {
2181
2218
  AdAvailOffset?: number;
2182
2219
  AvailBlanking?: AvailBlanking;
@@ -2275,41 +2312,3 @@ export interface Queue {
2275
2312
  SubmittedJobsCount?: number;
2276
2313
  Type?: Type;
2277
2314
  }
2278
- export interface AssociateCertificateRequest {
2279
- Arn: string | undefined;
2280
- }
2281
- export interface AssociateCertificateResponse {}
2282
- export declare class BadRequestException extends __BaseException {
2283
- readonly name: "BadRequestException";
2284
- readonly $fault: "client";
2285
- Message?: string;
2286
- constructor(
2287
- opts: __ExceptionOptionType<BadRequestException, __BaseException>
2288
- );
2289
- }
2290
- export declare class ConflictException extends __BaseException {
2291
- readonly name: "ConflictException";
2292
- readonly $fault: "client";
2293
- Message?: string;
2294
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
2295
- }
2296
- export declare class ForbiddenException extends __BaseException {
2297
- readonly name: "ForbiddenException";
2298
- readonly $fault: "client";
2299
- Message?: string;
2300
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
2301
- }
2302
- export declare class InternalServerErrorException extends __BaseException {
2303
- readonly name: "InternalServerErrorException";
2304
- readonly $fault: "server";
2305
- Message?: string;
2306
- constructor(
2307
- opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
2308
- );
2309
- }
2310
- export declare class NotFoundException extends __BaseException {
2311
- readonly name: "NotFoundException";
2312
- readonly $fault: "client";
2313
- Message?: string;
2314
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
2315
- }
@@ -9,6 +9,7 @@ import {
9
9
  import {
10
10
  Commitment,
11
11
  Job,
12
+ JobEngineVersion,
12
13
  JobSettings,
13
14
  JobStatus,
14
15
  JobTemplate,
@@ -22,6 +23,44 @@ import {
22
23
  SimulateReservedQueue,
23
24
  StatusUpdateInterval,
24
25
  } from "./models_1";
26
+ export interface AssociateCertificateRequest {
27
+ Arn: string | undefined;
28
+ }
29
+ export interface AssociateCertificateResponse {}
30
+ export declare class BadRequestException extends __BaseException {
31
+ readonly name: "BadRequestException";
32
+ readonly $fault: "client";
33
+ Message?: string;
34
+ constructor(
35
+ opts: __ExceptionOptionType<BadRequestException, __BaseException>
36
+ );
37
+ }
38
+ export declare class ConflictException extends __BaseException {
39
+ readonly name: "ConflictException";
40
+ readonly $fault: "client";
41
+ Message?: string;
42
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
43
+ }
44
+ export declare class ForbiddenException extends __BaseException {
45
+ readonly name: "ForbiddenException";
46
+ readonly $fault: "client";
47
+ Message?: string;
48
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
49
+ }
50
+ export declare class InternalServerErrorException extends __BaseException {
51
+ readonly name: "InternalServerErrorException";
52
+ readonly $fault: "server";
53
+ Message?: string;
54
+ constructor(
55
+ opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
56
+ );
57
+ }
58
+ export declare class NotFoundException extends __BaseException {
59
+ readonly name: "NotFoundException";
60
+ readonly $fault: "client";
61
+ Message?: string;
62
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
63
+ }
25
64
  export declare class TooManyRequestsException extends __BaseException {
26
65
  readonly name: "TooManyRequestsException";
27
66
  readonly $fault: "client";
@@ -39,6 +78,7 @@ export interface CreateJobRequest {
39
78
  BillingTagsSource?: BillingTagsSource;
40
79
  ClientRequestToken?: string;
41
80
  HopDestinations?: HopDestination[];
81
+ JobEngineVersion?: string;
42
82
  JobTemplate?: string;
43
83
  Priority?: number;
44
84
  Queue?: string;
@@ -240,6 +280,14 @@ export interface ResourceTags {
240
280
  export interface ListTagsForResourceResponse {
241
281
  ResourceTags?: ResourceTags;
242
282
  }
283
+ export interface ListVersionsRequest {
284
+ MaxResults?: number;
285
+ NextToken?: string;
286
+ }
287
+ export interface ListVersionsResponse {
288
+ NextToken?: string;
289
+ Versions?: JobEngineVersion[];
290
+ }
243
291
  export interface PutPolicyRequest {
244
292
  Policy: Policy | undefined;
245
293
  }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListVersionsCommandInput,
4
+ ListVersionsCommandOutput,
5
+ } from "../commands/ListVersionsCommand";
6
+ import { MediaConvertPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListVersions: (
8
+ config: MediaConvertPaginationConfiguration,
9
+ input: ListVersionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListVersionsCommandOutput>;
@@ -4,4 +4,5 @@ export * from "./ListJobTemplatesPaginator";
4
4
  export * from "./ListJobsPaginator";
5
5
  export * from "./ListPresetsPaginator";
6
6
  export * from "./ListQueuesPaginator";
7
+ export * from "./ListVersionsPaginator";
7
8
  export * from "./SearchJobsPaginator";
@@ -91,6 +91,10 @@ import {
91
91
  ListTagsForResourceCommandInput,
92
92
  ListTagsForResourceCommandOutput,
93
93
  } from "../commands/ListTagsForResourceCommand";
94
+ import {
95
+ ListVersionsCommandInput,
96
+ ListVersionsCommandOutput,
97
+ } from "../commands/ListVersionsCommand";
94
98
  import {
95
99
  PutPolicyCommandInput,
96
100
  PutPolicyCommandOutput,
@@ -207,6 +211,10 @@ export declare const se_ListTagsForResourceCommand: (
207
211
  input: ListTagsForResourceCommandInput,
208
212
  context: __SerdeContext
209
213
  ) => Promise<__HttpRequest>;
214
+ export declare const se_ListVersionsCommand: (
215
+ input: ListVersionsCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
210
218
  export declare const se_PutPolicyCommand: (
211
219
  input: PutPolicyCommandInput,
212
220
  context: __SerdeContext
@@ -323,6 +331,10 @@ export declare const de_ListTagsForResourceCommand: (
323
331
  output: __HttpResponse,
324
332
  context: __SerdeContext
325
333
  ) => Promise<ListTagsForResourceCommandOutput>;
334
+ export declare const de_ListVersionsCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<ListVersionsCommandOutput>;
326
338
  export declare const de_PutPolicyCommand: (
327
339
  output: __HttpResponse,
328
340
  context: __SerdeContext