@aws-sdk/client-mediaconvert 3.421.0 → 3.424.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 (30) hide show
  1. package/dist-cjs/models/models_0.js +1 -9
  2. package/dist-cjs/models/models_1.js +21 -5
  3. package/dist-cjs/protocols/Aws_restJson1.js +80 -4
  4. package/dist-es/models/models_0.js +0 -8
  5. package/dist-es/models/models_1.js +16 -0
  6. package/dist-es/protocols/Aws_restJson1.js +80 -4
  7. package/dist-types/commands/CreateJobCommand.d.ts +38 -2
  8. package/dist-types/commands/CreateJobTemplateCommand.d.ts +38 -2
  9. package/dist-types/commands/CreatePresetCommand.d.ts +4 -0
  10. package/dist-types/commands/CreateQueueCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteJobTemplateCommand.d.ts +1 -1
  12. package/dist-types/commands/DeletePolicyCommand.d.ts +1 -2
  13. package/dist-types/commands/GetJobCommand.d.ts +19 -1
  14. package/dist-types/commands/GetJobTemplateCommand.d.ts +19 -1
  15. package/dist-types/commands/GetPresetCommand.d.ts +2 -0
  16. package/dist-types/commands/ListJobTemplatesCommand.d.ts +19 -1
  17. package/dist-types/commands/ListJobsCommand.d.ts +19 -1
  18. package/dist-types/commands/ListPresetsCommand.d.ts +2 -0
  19. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +38 -2
  20. package/dist-types/commands/UpdatePresetCommand.d.ts +4 -0
  21. package/dist-types/models/models_0.d.ts +73 -103
  22. package/dist-types/models/models_1.d.ts +138 -76
  23. package/dist-types/models/models_2.d.ts +66 -1
  24. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +1 -2
  27. package/dist-types/ts3.4/models/models_0.d.ts +17 -28
  28. package/dist-types/ts3.4/models/models_1.d.ts +49 -19
  29. package/dist-types/ts3.4/models/models_2.d.ts +17 -0
  30. package/package.json +3 -3
@@ -10,7 +10,13 @@ import {
10
10
  CaptionDescription,
11
11
  CaptionDescriptionPreset,
12
12
  CmfcAudioDuration,
13
- CmfcSettings,
13
+ CmfcAudioTrackType,
14
+ CmfcDescriptiveVideoServiceFlag,
15
+ CmfcIFrameOnlyManifest,
16
+ CmfcKlvMetadata,
17
+ CmfcManifestMetadataSignaling,
18
+ CmfcScte35Esam,
19
+ CmfcScte35Source,
14
20
  EsamSettings,
15
21
  ExtendedDataServices,
16
22
  Hdr10Metadata,
@@ -30,6 +36,34 @@ import {
30
36
  QueueTransition,
31
37
  Rectangle,
32
38
  } from "./models_0";
39
+ export declare const CmfcTimedMetadata: {
40
+ readonly NONE: "NONE";
41
+ readonly PASSTHROUGH: "PASSTHROUGH";
42
+ };
43
+ export type CmfcTimedMetadata =
44
+ (typeof CmfcTimedMetadata)[keyof typeof CmfcTimedMetadata];
45
+ export declare const CmfcTimedMetadataBoxVersion: {
46
+ readonly VERSION_0: "VERSION_0";
47
+ readonly VERSION_1: "VERSION_1";
48
+ };
49
+ export type CmfcTimedMetadataBoxVersion =
50
+ (typeof CmfcTimedMetadataBoxVersion)[keyof typeof CmfcTimedMetadataBoxVersion];
51
+ export interface CmfcSettings {
52
+ AudioDuration?: CmfcAudioDuration | string;
53
+ AudioGroupId?: string;
54
+ AudioRenditionSets?: string;
55
+ AudioTrackType?: CmfcAudioTrackType | string;
56
+ DescriptiveVideoServiceFlag?: CmfcDescriptiveVideoServiceFlag | string;
57
+ IFrameOnlyManifest?: CmfcIFrameOnlyManifest | string;
58
+ KlvMetadata?: CmfcKlvMetadata | string;
59
+ ManifestMetadataSignaling?: CmfcManifestMetadataSignaling | string;
60
+ Scte35Esam?: CmfcScte35Esam | string;
61
+ Scte35Source?: CmfcScte35Source | string;
62
+ TimedMetadata?: CmfcTimedMetadata | string;
63
+ TimedMetadataBoxVersion?: CmfcTimedMetadataBoxVersion | string;
64
+ TimedMetadataSchemeIdUri?: string;
65
+ TimedMetadataValue?: string;
66
+ }
33
67
  export declare const ContainerType: {
34
68
  readonly CMFC: "CMFC";
35
69
  readonly F4V: "F4V";
@@ -713,6 +747,12 @@ export declare const H264DynamicSubGop: {
713
747
  };
714
748
  export type H264DynamicSubGop =
715
749
  (typeof H264DynamicSubGop)[keyof typeof H264DynamicSubGop];
750
+ export declare const H264EndOfStreamMarkers: {
751
+ readonly INCLUDE: "INCLUDE";
752
+ readonly SUPPRESS: "SUPPRESS";
753
+ };
754
+ export type H264EndOfStreamMarkers =
755
+ (typeof H264EndOfStreamMarkers)[keyof typeof H264EndOfStreamMarkers];
716
756
  export declare const H264EntropyEncoding: {
717
757
  readonly CABAC: "CABAC";
718
758
  readonly CAVLC: "CAVLC";
@@ -851,6 +891,7 @@ export interface H264Settings {
851
891
  CodecLevel?: H264CodecLevel | string;
852
892
  CodecProfile?: H264CodecProfile | string;
853
893
  DynamicSubGop?: H264DynamicSubGop | string;
894
+ EndOfStreamMarkers?: H264EndOfStreamMarkers | string;
854
895
  EntropyEncoding?: H264EntropyEncoding | string;
855
896
  FieldEncoding?: H264FieldEncoding | string;
856
897
  FlickerAdaptiveQuantization?: H264FlickerAdaptiveQuantization | string;
@@ -941,6 +982,12 @@ export declare const H265DynamicSubGop: {
941
982
  };
942
983
  export type H265DynamicSubGop =
943
984
  (typeof H265DynamicSubGop)[keyof typeof H265DynamicSubGop];
985
+ export declare const H265EndOfStreamMarkers: {
986
+ readonly INCLUDE: "INCLUDE";
987
+ readonly SUPPRESS: "SUPPRESS";
988
+ };
989
+ export type H265EndOfStreamMarkers =
990
+ (typeof H265EndOfStreamMarkers)[keyof typeof H265EndOfStreamMarkers];
944
991
  export declare const H265FlickerAdaptiveQuantization: {
945
992
  readonly DISABLED: "DISABLED";
946
993
  readonly ENABLED: "ENABLED";
@@ -1081,6 +1128,7 @@ export interface H265Settings {
1081
1128
  CodecLevel?: H265CodecLevel | string;
1082
1129
  CodecProfile?: H265CodecProfile | string;
1083
1130
  DynamicSubGop?: H265DynamicSubGop | string;
1131
+ EndOfStreamMarkers?: H265EndOfStreamMarkers | string;
1084
1132
  FlickerAdaptiveQuantization?: H265FlickerAdaptiveQuantization | string;
1085
1133
  FramerateControl?: H265FramerateControl | string;
1086
1134
  FramerateConversionAlgorithm?: H265FramerateConversionAlgorithm | string;
@@ -1974,7 +2022,6 @@ export interface JobSettings {
1974
2022
  AvailBlanking?: AvailBlanking;
1975
2023
  Esam?: EsamSettings;
1976
2024
  ExtendedDataServices?: ExtendedDataServices;
1977
- FollowInputIndex?: number;
1978
2025
  Inputs?: Input[];
1979
2026
  KantarWatermark?: KantarWatermarkSettings;
1980
2027
  MotionImageInserter?: MotionImageInserter;
@@ -2060,7 +2107,6 @@ export interface JobTemplateSettings {
2060
2107
  AvailBlanking?: AvailBlanking;
2061
2108
  Esam?: EsamSettings;
2062
2109
  ExtendedDataServices?: ExtendedDataServices;
2063
- FollowInputIndex?: number;
2064
2110
  Inputs?: InputTemplate[];
2065
2111
  KantarWatermark?: KantarWatermarkSettings;
2066
2112
  MotionImageInserter?: MotionImageInserter;
@@ -2250,19 +2296,3 @@ export interface ReservationPlanSettings {
2250
2296
  RenewalType: RenewalType | string | undefined;
2251
2297
  ReservedSlots: number | undefined;
2252
2298
  }
2253
- export interface CreateQueueRequest {
2254
- Description?: string;
2255
- Name: string | undefined;
2256
- PricingPlan?: PricingPlan | string;
2257
- ReservationPlanSettings?: ReservationPlanSettings;
2258
- Status?: QueueStatus | string;
2259
- Tags?: Record<string, string>;
2260
- }
2261
- export interface CreateQueueResponse {
2262
- Queue?: Queue;
2263
- }
2264
- export interface DeleteJobTemplateRequest {
2265
- Name: string | undefined;
2266
- }
2267
- export interface DeleteJobTemplateResponse {}
2268
- export interface DeletePolicyRequest {}
@@ -6,11 +6,28 @@ import {
6
6
  JobTemplateSettings,
7
7
  Preset,
8
8
  PresetSettings,
9
+ PricingPlan,
9
10
  Queue,
10
11
  QueueStatus,
11
12
  ReservationPlanSettings,
12
13
  StatusUpdateInterval,
13
14
  } from "./models_1";
15
+ export interface CreateQueueRequest {
16
+ Description?: string;
17
+ Name: string | undefined;
18
+ PricingPlan?: PricingPlan | string;
19
+ ReservationPlanSettings?: ReservationPlanSettings;
20
+ Status?: QueueStatus | string;
21
+ Tags?: Record<string, string>;
22
+ }
23
+ export interface CreateQueueResponse {
24
+ Queue?: Queue;
25
+ }
26
+ export interface DeleteJobTemplateRequest {
27
+ Name: string | undefined;
28
+ }
29
+ export interface DeleteJobTemplateResponse {}
30
+ export interface DeletePolicyRequest {}
14
31
  export interface DeletePolicyResponse {}
15
32
  export interface DeletePresetRequest {
16
33
  Name: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediaconvert",
3
3
  "description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native",
4
- "version": "3.421.0",
4
+ "version": "3.424.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,8 +21,8 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.421.0",
25
- "@aws-sdk/credential-provider-node": "3.421.0",
24
+ "@aws-sdk/client-sts": "3.423.0",
25
+ "@aws-sdk/credential-provider-node": "3.423.0",
26
26
  "@aws-sdk/middleware-host-header": "3.418.0",
27
27
  "@aws-sdk/middleware-logger": "3.418.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.418.0",