@aws-sdk/client-mediaconvert 3.654.0 → 3.658.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/dist-cjs/index.js +61 -6
- package/dist-es/models/models_0.js +19 -10
- package/dist-es/models/models_1.js +10 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +32 -0
- package/dist-types/commands/CreateJobCommand.d.ts +32 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +32 -0
- package/dist-types/commands/GetJobCommand.d.ts +16 -0
- package/dist-types/commands/GetJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/ListJobsCommand.d.ts +16 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +32 -0
- package/dist-types/models/models_0.d.ts +61 -62
- package/dist-types/models/models_1.d.ts +63 -110
- package/dist-types/models/models_2.d.ts +110 -1
- package/dist-types/ts3.4/models/models_0.d.ts +29 -22
- package/dist-types/ts3.4/models/models_1.d.ts +28 -29
- package/dist-types/ts3.4/models/models_2.d.ts +28 -2
- package/package.json +5 -5
|
@@ -1825,9 +1825,37 @@ export declare const CmafInitializationVectorInManifest: {
|
|
|
1825
1825
|
};
|
|
1826
1826
|
export type CmafInitializationVectorInManifest =
|
|
1827
1827
|
(typeof CmafInitializationVectorInManifest)[keyof typeof CmafInitializationVectorInManifest];
|
|
1828
|
+
export declare const PresetSpeke20Audio: {
|
|
1829
|
+
readonly PRESET_AUDIO_1: "PRESET_AUDIO_1";
|
|
1830
|
+
readonly PRESET_AUDIO_2: "PRESET_AUDIO_2";
|
|
1831
|
+
readonly PRESET_AUDIO_3: "PRESET_AUDIO_3";
|
|
1832
|
+
readonly SHARED: "SHARED";
|
|
1833
|
+
readonly UNENCRYPTED: "UNENCRYPTED";
|
|
1834
|
+
};
|
|
1835
|
+
export type PresetSpeke20Audio =
|
|
1836
|
+
(typeof PresetSpeke20Audio)[keyof typeof PresetSpeke20Audio];
|
|
1837
|
+
export declare const PresetSpeke20Video: {
|
|
1838
|
+
readonly PRESET_VIDEO_1: "PRESET_VIDEO_1";
|
|
1839
|
+
readonly PRESET_VIDEO_2: "PRESET_VIDEO_2";
|
|
1840
|
+
readonly PRESET_VIDEO_3: "PRESET_VIDEO_3";
|
|
1841
|
+
readonly PRESET_VIDEO_4: "PRESET_VIDEO_4";
|
|
1842
|
+
readonly PRESET_VIDEO_5: "PRESET_VIDEO_5";
|
|
1843
|
+
readonly PRESET_VIDEO_6: "PRESET_VIDEO_6";
|
|
1844
|
+
readonly PRESET_VIDEO_7: "PRESET_VIDEO_7";
|
|
1845
|
+
readonly PRESET_VIDEO_8: "PRESET_VIDEO_8";
|
|
1846
|
+
readonly SHARED: "SHARED";
|
|
1847
|
+
readonly UNENCRYPTED: "UNENCRYPTED";
|
|
1848
|
+
};
|
|
1849
|
+
export type PresetSpeke20Video =
|
|
1850
|
+
(typeof PresetSpeke20Video)[keyof typeof PresetSpeke20Video];
|
|
1851
|
+
export interface EncryptionContractConfiguration {
|
|
1852
|
+
SpekeAudioPreset?: PresetSpeke20Audio;
|
|
1853
|
+
SpekeVideoPreset?: PresetSpeke20Video;
|
|
1854
|
+
}
|
|
1828
1855
|
export interface SpekeKeyProviderCmaf {
|
|
1829
1856
|
CertificateArn?: string;
|
|
1830
1857
|
DashSignaledSystemIds?: string[];
|
|
1858
|
+
EncryptionContractConfiguration?: EncryptionContractConfiguration;
|
|
1831
1859
|
HlsSignaledSystemIds?: string[];
|
|
1832
1860
|
ResourceId?: string;
|
|
1833
1861
|
Url?: string;
|
|
@@ -1996,6 +2024,7 @@ export type DashIsoPlaybackDeviceCompatibility =
|
|
|
1996
2024
|
(typeof DashIsoPlaybackDeviceCompatibility)[keyof typeof DashIsoPlaybackDeviceCompatibility];
|
|
1997
2025
|
export interface SpekeKeyProvider {
|
|
1998
2026
|
CertificateArn?: string;
|
|
2027
|
+
EncryptionContractConfiguration?: EncryptionContractConfiguration;
|
|
1999
2028
|
ResourceId?: string;
|
|
2000
2029
|
SystemIds?: string[];
|
|
2001
2030
|
Url?: string;
|
|
@@ -2333,25 +2362,3 @@ export declare const OutputGroupType: {
|
|
|
2333
2362
|
};
|
|
2334
2363
|
export type OutputGroupType =
|
|
2335
2364
|
(typeof OutputGroupType)[keyof typeof OutputGroupType];
|
|
2336
|
-
export interface OutputGroupSettings {
|
|
2337
|
-
CmafGroupSettings?: CmafGroupSettings;
|
|
2338
|
-
DashIsoGroupSettings?: DashIsoGroupSettings;
|
|
2339
|
-
FileGroupSettings?: FileGroupSettings;
|
|
2340
|
-
HlsGroupSettings?: HlsGroupSettings;
|
|
2341
|
-
MsSmoothGroupSettings?: MsSmoothGroupSettings;
|
|
2342
|
-
Type?: OutputGroupType;
|
|
2343
|
-
}
|
|
2344
|
-
export declare const CmfcAudioDuration: {
|
|
2345
|
-
readonly DEFAULT_CODEC_DURATION: "DEFAULT_CODEC_DURATION";
|
|
2346
|
-
readonly MATCH_VIDEO_DURATION: "MATCH_VIDEO_DURATION";
|
|
2347
|
-
};
|
|
2348
|
-
export type CmfcAudioDuration =
|
|
2349
|
-
(typeof CmfcAudioDuration)[keyof typeof CmfcAudioDuration];
|
|
2350
|
-
export declare const CmfcAudioTrackType: {
|
|
2351
|
-
readonly ALTERNATE_AUDIO_AUTO_SELECT: "ALTERNATE_AUDIO_AUTO_SELECT";
|
|
2352
|
-
readonly ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT";
|
|
2353
|
-
readonly ALTERNATE_AUDIO_NOT_AUTO_SELECT: "ALTERNATE_AUDIO_NOT_AUTO_SELECT";
|
|
2354
|
-
readonly AUDIO_ONLY_VARIANT_STREAM: "AUDIO_ONLY_VARIANT_STREAM";
|
|
2355
|
-
};
|
|
2356
|
-
export type CmfcAudioTrackType =
|
|
2357
|
-
(typeof CmfcAudioTrackType)[keyof typeof CmfcAudioTrackType];
|
|
@@ -7,12 +7,14 @@ import {
|
|
|
7
7
|
BillingTagsSource,
|
|
8
8
|
CaptionDescription,
|
|
9
9
|
CaptionDescriptionPreset,
|
|
10
|
-
|
|
11
|
-
CmfcAudioTrackType,
|
|
10
|
+
CmafGroupSettings,
|
|
12
11
|
ColorConversion3DLUTSetting,
|
|
12
|
+
DashIsoGroupSettings,
|
|
13
13
|
EsamSettings,
|
|
14
14
|
ExtendedDataServices,
|
|
15
|
+
FileGroupSettings,
|
|
15
16
|
Hdr10Metadata,
|
|
17
|
+
HlsGroupSettings,
|
|
16
18
|
HopDestination,
|
|
17
19
|
Id3Insertion,
|
|
18
20
|
ImageInserter,
|
|
@@ -22,13 +24,36 @@ import {
|
|
|
22
24
|
JobPhase,
|
|
23
25
|
KantarWatermarkSettings,
|
|
24
26
|
MotionImageInserter,
|
|
27
|
+
MsSmoothGroupSettings,
|
|
25
28
|
NielsenConfiguration,
|
|
26
29
|
NielsenNonLinearWatermarkSettings,
|
|
27
30
|
OutputGroupDetail,
|
|
28
|
-
|
|
31
|
+
OutputGroupType,
|
|
29
32
|
QueueTransition,
|
|
30
33
|
Rectangle,
|
|
31
34
|
} from "./models_0";
|
|
35
|
+
export interface OutputGroupSettings {
|
|
36
|
+
CmafGroupSettings?: CmafGroupSettings;
|
|
37
|
+
DashIsoGroupSettings?: DashIsoGroupSettings;
|
|
38
|
+
FileGroupSettings?: FileGroupSettings;
|
|
39
|
+
HlsGroupSettings?: HlsGroupSettings;
|
|
40
|
+
MsSmoothGroupSettings?: MsSmoothGroupSettings;
|
|
41
|
+
Type?: OutputGroupType;
|
|
42
|
+
}
|
|
43
|
+
export declare const CmfcAudioDuration: {
|
|
44
|
+
readonly DEFAULT_CODEC_DURATION: "DEFAULT_CODEC_DURATION";
|
|
45
|
+
readonly MATCH_VIDEO_DURATION: "MATCH_VIDEO_DURATION";
|
|
46
|
+
};
|
|
47
|
+
export type CmfcAudioDuration =
|
|
48
|
+
(typeof CmfcAudioDuration)[keyof typeof CmfcAudioDuration];
|
|
49
|
+
export declare const CmfcAudioTrackType: {
|
|
50
|
+
readonly ALTERNATE_AUDIO_AUTO_SELECT: "ALTERNATE_AUDIO_AUTO_SELECT";
|
|
51
|
+
readonly ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT";
|
|
52
|
+
readonly ALTERNATE_AUDIO_NOT_AUTO_SELECT: "ALTERNATE_AUDIO_NOT_AUTO_SELECT";
|
|
53
|
+
readonly AUDIO_ONLY_VARIANT_STREAM: "AUDIO_ONLY_VARIANT_STREAM";
|
|
54
|
+
};
|
|
55
|
+
export type CmfcAudioTrackType =
|
|
56
|
+
(typeof CmfcAudioTrackType)[keyof typeof CmfcAudioTrackType];
|
|
32
57
|
export declare const CmfcDescriptiveVideoServiceFlag: {
|
|
33
58
|
readonly DONT_FLAG: "DONT_FLAG";
|
|
34
59
|
readonly FLAG: "FLAG";
|
|
@@ -2286,29 +2311,3 @@ export declare const ReservationPlanStatus: {
|
|
|
2286
2311
|
};
|
|
2287
2312
|
export type ReservationPlanStatus =
|
|
2288
2313
|
(typeof ReservationPlanStatus)[keyof typeof ReservationPlanStatus];
|
|
2289
|
-
export interface ReservationPlan {
|
|
2290
|
-
Commitment?: Commitment;
|
|
2291
|
-
ExpiresAt?: Date;
|
|
2292
|
-
PurchasedAt?: Date;
|
|
2293
|
-
RenewalType?: RenewalType;
|
|
2294
|
-
ReservedSlots?: number;
|
|
2295
|
-
Status?: ReservationPlanStatus;
|
|
2296
|
-
}
|
|
2297
|
-
export declare const QueueStatus: {
|
|
2298
|
-
readonly ACTIVE: "ACTIVE";
|
|
2299
|
-
readonly PAUSED: "PAUSED";
|
|
2300
|
-
};
|
|
2301
|
-
export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
|
|
2302
|
-
export interface Queue {
|
|
2303
|
-
Arn?: string;
|
|
2304
|
-
CreatedAt?: Date;
|
|
2305
|
-
Description?: string;
|
|
2306
|
-
LastUpdated?: Date;
|
|
2307
|
-
Name: string | undefined;
|
|
2308
|
-
PricingPlan?: PricingPlan;
|
|
2309
|
-
ProgressingJobsCount?: number;
|
|
2310
|
-
ReservationPlan?: ReservationPlan;
|
|
2311
|
-
Status?: QueueStatus;
|
|
2312
|
-
SubmittedJobsCount?: number;
|
|
2313
|
-
Type?: Type;
|
|
2314
|
-
}
|
|
@@ -17,12 +17,38 @@ import {
|
|
|
17
17
|
Preset,
|
|
18
18
|
PresetSettings,
|
|
19
19
|
PricingPlan,
|
|
20
|
-
Queue,
|
|
21
|
-
QueueStatus,
|
|
22
20
|
RenewalType,
|
|
21
|
+
ReservationPlanStatus,
|
|
23
22
|
SimulateReservedQueue,
|
|
24
23
|
StatusUpdateInterval,
|
|
24
|
+
Type,
|
|
25
25
|
} from "./models_1";
|
|
26
|
+
export interface ReservationPlan {
|
|
27
|
+
Commitment?: Commitment;
|
|
28
|
+
ExpiresAt?: Date;
|
|
29
|
+
PurchasedAt?: Date;
|
|
30
|
+
RenewalType?: RenewalType;
|
|
31
|
+
ReservedSlots?: number;
|
|
32
|
+
Status?: ReservationPlanStatus;
|
|
33
|
+
}
|
|
34
|
+
export declare const QueueStatus: {
|
|
35
|
+
readonly ACTIVE: "ACTIVE";
|
|
36
|
+
readonly PAUSED: "PAUSED";
|
|
37
|
+
};
|
|
38
|
+
export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
|
|
39
|
+
export interface Queue {
|
|
40
|
+
Arn?: string;
|
|
41
|
+
CreatedAt?: Date;
|
|
42
|
+
Description?: string;
|
|
43
|
+
LastUpdated?: Date;
|
|
44
|
+
Name: string | undefined;
|
|
45
|
+
PricingPlan?: PricingPlan;
|
|
46
|
+
ProgressingJobsCount?: number;
|
|
47
|
+
ReservationPlan?: ReservationPlan;
|
|
48
|
+
Status?: QueueStatus;
|
|
49
|
+
SubmittedJobsCount?: number;
|
|
50
|
+
Type?: Type;
|
|
51
|
+
}
|
|
26
52
|
export interface AssociateCertificateRequest {
|
|
27
53
|
Arn: string | undefined;
|
|
28
54
|
}
|
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.
|
|
4
|
+
"version": "3.658.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediaconvert",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.658.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.658.0",
|
|
25
|
+
"@aws-sdk/core": "3.658.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.658.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.654.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.654.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.654.0",
|