@aws-sdk/client-mediaconvert 3.750.0 → 3.759.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.
@@ -85,6 +85,167 @@ export interface Preset {
85
85
  Settings: PresetSettings | undefined;
86
86
  Type?: Type | undefined;
87
87
  }
88
+ export interface ProbeInputFile {
89
+ FileUrl?: string | undefined;
90
+ }
91
+ export declare const Format: {
92
+ readonly matroska: "matroska";
93
+ readonly mp4: "mp4";
94
+ readonly quicktime: "quicktime";
95
+ readonly webm: "webm";
96
+ };
97
+ export type Format = (typeof Format)[keyof typeof Format];
98
+ export interface FrameRate {
99
+ Denominator?: number | undefined;
100
+ Numerator?: number | undefined;
101
+ }
102
+ export interface AudioProperties {
103
+ BitDepth?: number | undefined;
104
+ BitRate?: number | undefined;
105
+ Channels?: number | undefined;
106
+ FrameRate?: FrameRate | undefined;
107
+ LanguageCode?: string | undefined;
108
+ SampleRate?: number | undefined;
109
+ }
110
+ export declare const Codec: {
111
+ readonly AAC: "AAC";
112
+ readonly AC3: "AC3";
113
+ readonly AV1: "AV1";
114
+ readonly AVC: "AVC";
115
+ readonly C608: "C608";
116
+ readonly C708: "C708";
117
+ readonly EAC3: "EAC3";
118
+ readonly FLAC: "FLAC";
119
+ readonly HEVC: "HEVC";
120
+ readonly MJPEG: "MJPEG";
121
+ readonly MP3: "MP3";
122
+ readonly MP4V: "MP4V";
123
+ readonly MPEG2: "MPEG2";
124
+ readonly OPUS: "OPUS";
125
+ readonly PCM: "PCM";
126
+ readonly PRORES: "PRORES";
127
+ readonly THEORA: "THEORA";
128
+ readonly UNKNOWN: "UNKNOWN";
129
+ readonly VORBIS: "VORBIS";
130
+ readonly VP8: "VP8";
131
+ readonly VP9: "VP9";
132
+ readonly WEBVTT: "WEBVTT";
133
+ };
134
+ export type Codec = (typeof Codec)[keyof typeof Codec];
135
+ export interface DataProperties {
136
+ LanguageCode?: string | undefined;
137
+ }
138
+ export declare const TrackType: {
139
+ readonly audio: "audio";
140
+ readonly data: "data";
141
+ readonly video: "video";
142
+ };
143
+ export type TrackType = (typeof TrackType)[keyof typeof TrackType];
144
+ export declare const ColorPrimaries: {
145
+ readonly EBU_3213_E: "EBU_3213_E";
146
+ readonly GENERIC_FILM: "GENERIC_FILM";
147
+ readonly IPT: "IPT";
148
+ readonly ITU_2020: "ITU_2020";
149
+ readonly ITU_470BG: "ITU_470BG";
150
+ readonly ITU_470M: "ITU_470M";
151
+ readonly ITU_709: "ITU_709";
152
+ readonly LAST: "LAST";
153
+ readonly RESERVED: "RESERVED";
154
+ readonly SMPTE_170M: "SMPTE_170M";
155
+ readonly SMPTE_2067XYZ: "SMPTE_2067XYZ";
156
+ readonly SMPTE_240M: "SMPTE_240M";
157
+ readonly SMPTE_428_1: "SMPTE_428_1";
158
+ readonly SMPTE_431_2: "SMPTE_431_2";
159
+ readonly SMPTE_EG_432_1: "SMPTE_EG_432_1";
160
+ readonly UNSPECIFIED: "UNSPECIFIED";
161
+ };
162
+ export type ColorPrimaries =
163
+ (typeof ColorPrimaries)[keyof typeof ColorPrimaries];
164
+ export declare const MatrixCoefficients: {
165
+ readonly CD_CL: "CD_CL";
166
+ readonly CD_NCL: "CD_NCL";
167
+ readonly EBU3213: "EBU3213";
168
+ readonly FCC: "FCC";
169
+ readonly IPT: "IPT";
170
+ readonly ITU_2020_CL: "ITU_2020_CL";
171
+ readonly ITU_2020_NCL: "ITU_2020_NCL";
172
+ readonly ITU_2100ICtCp: "ITU_2100ICtCp";
173
+ readonly ITU_470BG: "ITU_470BG";
174
+ readonly ITU_709: "ITU_709";
175
+ readonly LAST: "LAST";
176
+ readonly RESERVED: "RESERVED";
177
+ readonly RGB: "RGB";
178
+ readonly SMPTE_170M: "SMPTE_170M";
179
+ readonly SMPTE_2085: "SMPTE_2085";
180
+ readonly SMPTE_240M: "SMPTE_240M";
181
+ readonly UNSPECIFIED: "UNSPECIFIED";
182
+ readonly YCgCo: "YCgCo";
183
+ };
184
+ export type MatrixCoefficients =
185
+ (typeof MatrixCoefficients)[keyof typeof MatrixCoefficients];
186
+ export declare const TransferCharacteristics: {
187
+ readonly ARIB_B67: "ARIB_B67";
188
+ readonly IEC_61966_2_1: "IEC_61966_2_1";
189
+ readonly IEC_61966_2_4: "IEC_61966_2_4";
190
+ readonly ITU_1361: "ITU_1361";
191
+ readonly ITU_2020_10bit: "ITU_2020_10bit";
192
+ readonly ITU_2020_12bit: "ITU_2020_12bit";
193
+ readonly ITU_470BG: "ITU_470BG";
194
+ readonly ITU_470M: "ITU_470M";
195
+ readonly ITU_709: "ITU_709";
196
+ readonly LAST: "LAST";
197
+ readonly LINEAR: "LINEAR";
198
+ readonly LOC10_2_5: "LOC10_2_5";
199
+ readonly LOG10_2: "LOG10_2";
200
+ readonly RESERVED: "RESERVED";
201
+ readonly SMPTE_170M: "SMPTE_170M";
202
+ readonly SMPTE_2084: "SMPTE_2084";
203
+ readonly SMPTE_240M: "SMPTE_240M";
204
+ readonly SMPTE_428_1: "SMPTE_428_1";
205
+ readonly UNSPECIFIED: "UNSPECIFIED";
206
+ };
207
+ export type TransferCharacteristics =
208
+ (typeof TransferCharacteristics)[keyof typeof TransferCharacteristics];
209
+ export interface VideoProperties {
210
+ BitDepth?: number | undefined;
211
+ BitRate?: number | undefined;
212
+ ColorPrimaries?: ColorPrimaries | undefined;
213
+ FrameRate?: FrameRate | undefined;
214
+ Height?: number | undefined;
215
+ MatrixCoefficients?: MatrixCoefficients | undefined;
216
+ TransferCharacteristics?: TransferCharacteristics | undefined;
217
+ Width?: number | undefined;
218
+ }
219
+ export interface Track {
220
+ AudioProperties?: AudioProperties | undefined;
221
+ Codec?: Codec | undefined;
222
+ DataProperties?: DataProperties | undefined;
223
+ Duration?: number | undefined;
224
+ Index?: number | undefined;
225
+ TrackType?: TrackType | undefined;
226
+ VideoProperties?: VideoProperties | undefined;
227
+ }
228
+ export interface Container {
229
+ Duration?: number | undefined;
230
+ Format?: Format | undefined;
231
+ Tracks?: Track[] | undefined;
232
+ }
233
+ export interface Metadata {
234
+ ETag?: string | undefined;
235
+ FileSize?: number | undefined;
236
+ LastModified?: Date | undefined;
237
+ MimeType?: string | undefined;
238
+ }
239
+ export interface TrackMapping {
240
+ AudioTrackIndexes?: number[] | undefined;
241
+ DataTrackIndexes?: number[] | undefined;
242
+ VideoTrackIndexes?: number[] | undefined;
243
+ }
244
+ export interface ProbeResult {
245
+ Container?: Container | undefined;
246
+ Metadata?: Metadata | undefined;
247
+ TrackMappings?: TrackMapping[] | undefined;
248
+ }
88
249
  export declare const PricingPlan: {
89
250
  readonly ON_DEMAND: "ON_DEMAND";
90
251
  readonly RESERVED: "RESERVED";
@@ -407,6 +568,12 @@ export interface ListVersionsResponse {
407
568
  NextToken?: string | undefined;
408
569
  Versions?: JobEngineVersion[] | undefined;
409
570
  }
571
+ export interface ProbeRequest {
572
+ InputFiles?: ProbeInputFile[] | undefined;
573
+ }
574
+ export interface ProbeResponse {
575
+ ProbeResults?: ProbeResult[] | undefined;
576
+ }
410
577
  export interface PutPolicyRequest {
411
578
  Policy: Policy | undefined;
412
579
  }
@@ -95,6 +95,10 @@ import {
95
95
  ListVersionsCommandInput,
96
96
  ListVersionsCommandOutput,
97
97
  } from "../commands/ListVersionsCommand";
98
+ import {
99
+ ProbeCommandInput,
100
+ ProbeCommandOutput,
101
+ } from "../commands/ProbeCommand";
98
102
  import {
99
103
  PutPolicyCommandInput,
100
104
  PutPolicyCommandOutput,
@@ -215,6 +219,10 @@ export declare const se_ListVersionsCommand: (
215
219
  input: ListVersionsCommandInput,
216
220
  context: __SerdeContext
217
221
  ) => Promise<__HttpRequest>;
222
+ export declare const se_ProbeCommand: (
223
+ input: ProbeCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
218
226
  export declare const se_PutPolicyCommand: (
219
227
  input: PutPolicyCommandInput,
220
228
  context: __SerdeContext
@@ -335,6 +343,10 @@ export declare const de_ListVersionsCommand: (
335
343
  output: __HttpResponse,
336
344
  context: __SerdeContext
337
345
  ) => Promise<ListVersionsCommandOutput>;
346
+ export declare const de_ProbeCommand: (
347
+ output: __HttpResponse,
348
+ context: __SerdeContext
349
+ ) => Promise<ProbeCommandOutput>;
338
350
  export declare const de_PutPolicyCommand: (
339
351
  output: __HttpResponse,
340
352
  context: __SerdeContext
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.750.0",
4
+ "version": "3.759.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,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.750.0",
24
- "@aws-sdk/credential-provider-node": "3.750.0",
23
+ "@aws-sdk/core": "3.758.0",
24
+ "@aws-sdk/credential-provider-node": "3.758.0",
25
25
  "@aws-sdk/middleware-host-header": "3.734.0",
26
26
  "@aws-sdk/middleware-logger": "3.734.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.734.0",
28
- "@aws-sdk/middleware-user-agent": "3.750.0",
28
+ "@aws-sdk/middleware-user-agent": "3.758.0",
29
29
  "@aws-sdk/region-config-resolver": "3.734.0",
30
30
  "@aws-sdk/types": "3.734.0",
31
31
  "@aws-sdk/util-endpoints": "3.743.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.750.0",
33
+ "@aws-sdk/util-user-agent-node": "3.758.0",
34
34
  "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.4",
35
+ "@smithy/core": "^3.1.5",
36
36
  "@smithy/fetch-http-handler": "^5.0.1",
37
37
  "@smithy/hash-node": "^4.0.1",
38
38
  "@smithy/invalid-dependency": "^4.0.1",
39
39
  "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.5",
41
- "@smithy/middleware-retry": "^4.0.6",
40
+ "@smithy/middleware-endpoint": "^4.0.6",
41
+ "@smithy/middleware-retry": "^4.0.7",
42
42
  "@smithy/middleware-serde": "^4.0.2",
43
43
  "@smithy/middleware-stack": "^4.0.1",
44
44
  "@smithy/node-config-provider": "^4.0.1",
45
- "@smithy/node-http-handler": "^4.0.2",
45
+ "@smithy/node-http-handler": "^4.0.3",
46
46
  "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.5",
47
+ "@smithy/smithy-client": "^4.1.6",
48
48
  "@smithy/types": "^4.1.0",
49
49
  "@smithy/url-parser": "^4.0.1",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.6",
54
- "@smithy/util-defaults-mode-node": "^4.0.6",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.7",
54
+ "@smithy/util-defaults-mode-node": "^4.0.7",
55
55
  "@smithy/util-endpoints": "^3.0.1",
56
56
  "@smithy/util-middleware": "^4.0.1",
57
57
  "@smithy/util-retry": "^4.0.1",