@aws-sdk/client-mediaconvert 3.952.0 → 3.954.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 +1062 -727
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AssociateCertificateCommand.js +2 -2
- package/dist-es/commands/CancelJobCommand.js +2 -2
- package/dist-es/commands/CreateJobCommand.js +2 -2
- package/dist-es/commands/CreateJobTemplateCommand.js +2 -2
- package/dist-es/commands/CreatePresetCommand.js +2 -2
- package/dist-es/commands/CreateQueueCommand.js +2 -2
- package/dist-es/commands/CreateResourceShareCommand.js +2 -2
- package/dist-es/commands/DeleteJobTemplateCommand.js +2 -2
- package/dist-es/commands/DeletePolicyCommand.js +2 -2
- package/dist-es/commands/DeletePresetCommand.js +2 -2
- package/dist-es/commands/DeleteQueueCommand.js +2 -2
- package/dist-es/commands/DescribeEndpointsCommand.js +2 -2
- package/dist-es/commands/DisassociateCertificateCommand.js +2 -2
- package/dist-es/commands/GetJobCommand.js +2 -2
- package/dist-es/commands/GetJobTemplateCommand.js +2 -2
- package/dist-es/commands/GetJobsQueryResultsCommand.js +2 -2
- package/dist-es/commands/GetPolicyCommand.js +2 -2
- package/dist-es/commands/GetPresetCommand.js +2 -2
- package/dist-es/commands/GetQueueCommand.js +2 -2
- package/dist-es/commands/ListJobTemplatesCommand.js +2 -2
- package/dist-es/commands/ListJobsCommand.js +2 -2
- package/dist-es/commands/ListPresetsCommand.js +2 -2
- package/dist-es/commands/ListQueuesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListVersionsCommand.js +2 -2
- package/dist-es/commands/ProbeCommand.js +2 -2
- package/dist-es/commands/PutPolicyCommand.js +2 -2
- package/dist-es/commands/SearchJobsCommand.js +2 -2
- package/dist-es/commands/StartJobsQueryCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateJobTemplateCommand.js +2 -2
- package/dist-es/commands/UpdatePresetCommand.js +2 -2
- package/dist-es/commands/UpdateQueueCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +17 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +688 -688
- package/dist-types/MediaConvertClient.d.ts +1 -10
- package/dist-types/commands/CreateJobCommand.d.ts +104 -44
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +102 -44
- package/dist-types/commands/CreatePresetCommand.d.ts +12 -0
- package/dist-types/commands/GetJobCommand.d.ts +52 -22
- package/dist-types/commands/GetJobTemplateCommand.d.ts +51 -22
- package/dist-types/commands/GetJobsQueryResultsCommand.d.ts +52 -22
- package/dist-types/commands/GetPresetCommand.d.ts +6 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +51 -22
- package/dist-types/commands/ListJobsCommand.d.ts +52 -22
- package/dist-types/commands/ListPresetsCommand.d.ts +6 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +52 -22
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +102 -44
- package/dist-types/commands/UpdatePresetCommand.d.ts +12 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +49 -0
- package/dist-types/models/models_0.d.ts +42 -2
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +315 -375
- package/dist-types/ts3.4/MediaConvertClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +25 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +314 -376
- package/package.json +34 -34
package/dist-es/models/enums.js
CHANGED
|
@@ -789,6 +789,7 @@ export const CaptionSourceType = {
|
|
|
789
789
|
STL: "STL",
|
|
790
790
|
TELETEXT: "TELETEXT",
|
|
791
791
|
TTML: "TTML",
|
|
792
|
+
TT_3GPP: "TT_3GPP",
|
|
792
793
|
WEBVTT: "WEBVTT",
|
|
793
794
|
};
|
|
794
795
|
export const InputDeblockFilter = {
|
|
@@ -1838,6 +1839,14 @@ export const H265InterlaceMode = {
|
|
|
1838
1839
|
PROGRESSIVE: "PROGRESSIVE",
|
|
1839
1840
|
TOP_FIELD: "TOP_FIELD",
|
|
1840
1841
|
};
|
|
1842
|
+
export const H265MvOverPictureBoundaries = {
|
|
1843
|
+
DISABLED: "DISABLED",
|
|
1844
|
+
ENABLED: "ENABLED",
|
|
1845
|
+
};
|
|
1846
|
+
export const H265MvTemporalPredictor = {
|
|
1847
|
+
DISABLED: "DISABLED",
|
|
1848
|
+
ENABLED: "ENABLED",
|
|
1849
|
+
};
|
|
1841
1850
|
export const H265ParControl = {
|
|
1842
1851
|
INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE",
|
|
1843
1852
|
SPECIFIED: "SPECIFIED",
|
|
@@ -1887,10 +1896,18 @@ export const H265TemporalIds = {
|
|
|
1887
1896
|
DISABLED: "DISABLED",
|
|
1888
1897
|
ENABLED: "ENABLED",
|
|
1889
1898
|
};
|
|
1899
|
+
export const H265TilePadding = {
|
|
1900
|
+
NONE: "NONE",
|
|
1901
|
+
PADDED: "PADDED",
|
|
1902
|
+
};
|
|
1890
1903
|
export const H265Tiles = {
|
|
1891
1904
|
DISABLED: "DISABLED",
|
|
1892
1905
|
ENABLED: "ENABLED",
|
|
1893
1906
|
};
|
|
1907
|
+
export const H265TreeBlockSize = {
|
|
1908
|
+
AUTO: "AUTO",
|
|
1909
|
+
TREE_SIZE_32X32: "TREE_SIZE_32X32",
|
|
1910
|
+
};
|
|
1894
1911
|
export const H265UnregisteredSeiTimecode = {
|
|
1895
1912
|
DISABLED: "DISABLED",
|
|
1896
1913
|
ENABLED: "ENABLED",
|
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.mediaconvert",
|
|
29
|
+
version: "2017-08-29",
|
|
30
|
+
serviceTarget: "MediaConvert",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "MediaConvert",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|