@aws-sdk/client-mediaconvert 3.758.0 → 3.770.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/README.md +8 -0
- package/dist-cjs/index.js +270 -8
- package/dist-es/MediaConvert.js +2 -0
- package/dist-es/commands/ProbeCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/models/models_2.js +94 -0
- package/dist-es/protocols/Aws_restJson1.js +141 -1
- package/dist-types/MediaConvert.d.ts +8 -0
- package/dist-types/MediaConvertClient.d.ts +3 -2
- package/dist-types/commands/CreateJobCommand.d.ts +14 -10
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +14 -10
- package/dist-types/commands/CreatePresetCommand.d.ts +8 -4
- package/dist-types/commands/GetJobCommand.d.ts +7 -5
- package/dist-types/commands/GetJobTemplateCommand.d.ts +7 -5
- package/dist-types/commands/GetPresetCommand.d.ts +4 -2
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +7 -5
- package/dist-types/commands/ListJobsCommand.d.ts +7 -5
- package/dist-types/commands/ListPresetsCommand.d.ts +4 -2
- package/dist-types/commands/ProbeCommand.d.ts +154 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +7 -5
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +14 -10
- package/dist-types/commands/UpdatePresetCommand.d.ts +8 -4
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +8 -6
- package/dist-types/models/models_1.d.ts +13 -2
- package/dist-types/models/models_2.d.ts +412 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/MediaConvert.d.ts +15 -0
- package/dist-types/ts3.4/MediaConvertClient.d.ts +3 -0
- package/dist-types/ts3.4/commands/ProbeCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/models/models_1.d.ts +3 -0
- package/dist-types/ts3.4/models/models_2.d.ts +167 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +1 -1
|
@@ -249,6 +249,398 @@ export interface Preset {
|
|
|
249
249
|
*/
|
|
250
250
|
Type?: Type | undefined;
|
|
251
251
|
}
|
|
252
|
+
/**
|
|
253
|
+
* The input file that needs to be analyzed.
|
|
254
|
+
* @public
|
|
255
|
+
*/
|
|
256
|
+
export interface ProbeInputFile {
|
|
257
|
+
/**
|
|
258
|
+
* The URI to your input file(s) that is stored in Amazon S3 or on an HTTP(S) server.
|
|
259
|
+
* @public
|
|
260
|
+
*/
|
|
261
|
+
FileUrl?: string | undefined;
|
|
262
|
+
}
|
|
263
|
+
/**
|
|
264
|
+
* @public
|
|
265
|
+
* @enum
|
|
266
|
+
*/
|
|
267
|
+
export declare const Format: {
|
|
268
|
+
readonly matroska: "matroska";
|
|
269
|
+
readonly mp4: "mp4";
|
|
270
|
+
readonly quicktime: "quicktime";
|
|
271
|
+
readonly webm: "webm";
|
|
272
|
+
};
|
|
273
|
+
/**
|
|
274
|
+
* @public
|
|
275
|
+
*/
|
|
276
|
+
export type Format = (typeof Format)[keyof typeof Format];
|
|
277
|
+
/**
|
|
278
|
+
* the calculated frame rate of the asset.
|
|
279
|
+
* @public
|
|
280
|
+
*/
|
|
281
|
+
export interface FrameRate {
|
|
282
|
+
/**
|
|
283
|
+
* the denominator of the frame rate of the asset.
|
|
284
|
+
* @public
|
|
285
|
+
*/
|
|
286
|
+
Denominator?: number | undefined;
|
|
287
|
+
/**
|
|
288
|
+
* the numerator of the frame rate of the asset.
|
|
289
|
+
* @public
|
|
290
|
+
*/
|
|
291
|
+
Numerator?: number | undefined;
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* Properties specific to audio tracks.
|
|
295
|
+
* @public
|
|
296
|
+
*/
|
|
297
|
+
export interface AudioProperties {
|
|
298
|
+
/**
|
|
299
|
+
* The bit depth of the audio track.
|
|
300
|
+
* @public
|
|
301
|
+
*/
|
|
302
|
+
BitDepth?: number | undefined;
|
|
303
|
+
/**
|
|
304
|
+
* The bit rate of the audio track in bits per second.
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
BitRate?: number | undefined;
|
|
308
|
+
/**
|
|
309
|
+
* The number of audio channels.
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
Channels?: number | undefined;
|
|
313
|
+
/**
|
|
314
|
+
* the calculated frame rate of the asset.
|
|
315
|
+
* @public
|
|
316
|
+
*/
|
|
317
|
+
FrameRate?: FrameRate | undefined;
|
|
318
|
+
/**
|
|
319
|
+
* the language code of the track
|
|
320
|
+
* @public
|
|
321
|
+
*/
|
|
322
|
+
LanguageCode?: string | undefined;
|
|
323
|
+
/**
|
|
324
|
+
* The sample rate of the audio track.
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
SampleRate?: number | undefined;
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* @public
|
|
331
|
+
* @enum
|
|
332
|
+
*/
|
|
333
|
+
export declare const Codec: {
|
|
334
|
+
readonly AAC: "AAC";
|
|
335
|
+
readonly AC3: "AC3";
|
|
336
|
+
readonly AV1: "AV1";
|
|
337
|
+
readonly AVC: "AVC";
|
|
338
|
+
readonly C608: "C608";
|
|
339
|
+
readonly C708: "C708";
|
|
340
|
+
readonly EAC3: "EAC3";
|
|
341
|
+
readonly FLAC: "FLAC";
|
|
342
|
+
readonly HEVC: "HEVC";
|
|
343
|
+
readonly MJPEG: "MJPEG";
|
|
344
|
+
readonly MP3: "MP3";
|
|
345
|
+
readonly MP4V: "MP4V";
|
|
346
|
+
readonly MPEG2: "MPEG2";
|
|
347
|
+
readonly OPUS: "OPUS";
|
|
348
|
+
readonly PCM: "PCM";
|
|
349
|
+
readonly PRORES: "PRORES";
|
|
350
|
+
readonly THEORA: "THEORA";
|
|
351
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
352
|
+
readonly VORBIS: "VORBIS";
|
|
353
|
+
readonly VP8: "VP8";
|
|
354
|
+
readonly VP9: "VP9";
|
|
355
|
+
readonly WEBVTT: "WEBVTT";
|
|
356
|
+
};
|
|
357
|
+
/**
|
|
358
|
+
* @public
|
|
359
|
+
*/
|
|
360
|
+
export type Codec = (typeof Codec)[keyof typeof Codec];
|
|
361
|
+
/**
|
|
362
|
+
* Properties specific to data tracks.
|
|
363
|
+
* @public
|
|
364
|
+
*/
|
|
365
|
+
export interface DataProperties {
|
|
366
|
+
/**
|
|
367
|
+
* the language code of the track
|
|
368
|
+
* @public
|
|
369
|
+
*/
|
|
370
|
+
LanguageCode?: string | undefined;
|
|
371
|
+
}
|
|
372
|
+
/**
|
|
373
|
+
* @public
|
|
374
|
+
* @enum
|
|
375
|
+
*/
|
|
376
|
+
export declare const TrackType: {
|
|
377
|
+
readonly audio: "audio";
|
|
378
|
+
readonly data: "data";
|
|
379
|
+
readonly video: "video";
|
|
380
|
+
};
|
|
381
|
+
/**
|
|
382
|
+
* @public
|
|
383
|
+
*/
|
|
384
|
+
export type TrackType = (typeof TrackType)[keyof typeof TrackType];
|
|
385
|
+
/**
|
|
386
|
+
* @public
|
|
387
|
+
* @enum
|
|
388
|
+
*/
|
|
389
|
+
export declare const ColorPrimaries: {
|
|
390
|
+
readonly EBU_3213_E: "EBU_3213_E";
|
|
391
|
+
readonly GENERIC_FILM: "GENERIC_FILM";
|
|
392
|
+
readonly IPT: "IPT";
|
|
393
|
+
readonly ITU_2020: "ITU_2020";
|
|
394
|
+
readonly ITU_470BG: "ITU_470BG";
|
|
395
|
+
readonly ITU_470M: "ITU_470M";
|
|
396
|
+
readonly ITU_709: "ITU_709";
|
|
397
|
+
readonly LAST: "LAST";
|
|
398
|
+
readonly RESERVED: "RESERVED";
|
|
399
|
+
readonly SMPTE_170M: "SMPTE_170M";
|
|
400
|
+
readonly SMPTE_2067XYZ: "SMPTE_2067XYZ";
|
|
401
|
+
readonly SMPTE_240M: "SMPTE_240M";
|
|
402
|
+
readonly SMPTE_428_1: "SMPTE_428_1";
|
|
403
|
+
readonly SMPTE_431_2: "SMPTE_431_2";
|
|
404
|
+
readonly SMPTE_EG_432_1: "SMPTE_EG_432_1";
|
|
405
|
+
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
406
|
+
};
|
|
407
|
+
/**
|
|
408
|
+
* @public
|
|
409
|
+
*/
|
|
410
|
+
export type ColorPrimaries = (typeof ColorPrimaries)[keyof typeof ColorPrimaries];
|
|
411
|
+
/**
|
|
412
|
+
* @public
|
|
413
|
+
* @enum
|
|
414
|
+
*/
|
|
415
|
+
export declare const MatrixCoefficients: {
|
|
416
|
+
readonly CD_CL: "CD_CL";
|
|
417
|
+
readonly CD_NCL: "CD_NCL";
|
|
418
|
+
readonly EBU3213: "EBU3213";
|
|
419
|
+
readonly FCC: "FCC";
|
|
420
|
+
readonly IPT: "IPT";
|
|
421
|
+
readonly ITU_2020_CL: "ITU_2020_CL";
|
|
422
|
+
readonly ITU_2020_NCL: "ITU_2020_NCL";
|
|
423
|
+
readonly ITU_2100ICtCp: "ITU_2100ICtCp";
|
|
424
|
+
readonly ITU_470BG: "ITU_470BG";
|
|
425
|
+
readonly ITU_709: "ITU_709";
|
|
426
|
+
readonly LAST: "LAST";
|
|
427
|
+
readonly RESERVED: "RESERVED";
|
|
428
|
+
readonly RGB: "RGB";
|
|
429
|
+
readonly SMPTE_170M: "SMPTE_170M";
|
|
430
|
+
readonly SMPTE_2085: "SMPTE_2085";
|
|
431
|
+
readonly SMPTE_240M: "SMPTE_240M";
|
|
432
|
+
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
433
|
+
readonly YCgCo: "YCgCo";
|
|
434
|
+
};
|
|
435
|
+
/**
|
|
436
|
+
* @public
|
|
437
|
+
*/
|
|
438
|
+
export type MatrixCoefficients = (typeof MatrixCoefficients)[keyof typeof MatrixCoefficients];
|
|
439
|
+
/**
|
|
440
|
+
* @public
|
|
441
|
+
* @enum
|
|
442
|
+
*/
|
|
443
|
+
export declare const TransferCharacteristics: {
|
|
444
|
+
readonly ARIB_B67: "ARIB_B67";
|
|
445
|
+
readonly IEC_61966_2_1: "IEC_61966_2_1";
|
|
446
|
+
readonly IEC_61966_2_4: "IEC_61966_2_4";
|
|
447
|
+
readonly ITU_1361: "ITU_1361";
|
|
448
|
+
readonly ITU_2020_10bit: "ITU_2020_10bit";
|
|
449
|
+
readonly ITU_2020_12bit: "ITU_2020_12bit";
|
|
450
|
+
readonly ITU_470BG: "ITU_470BG";
|
|
451
|
+
readonly ITU_470M: "ITU_470M";
|
|
452
|
+
readonly ITU_709: "ITU_709";
|
|
453
|
+
readonly LAST: "LAST";
|
|
454
|
+
readonly LINEAR: "LINEAR";
|
|
455
|
+
readonly LOC10_2_5: "LOC10_2_5";
|
|
456
|
+
readonly LOG10_2: "LOG10_2";
|
|
457
|
+
readonly RESERVED: "RESERVED";
|
|
458
|
+
readonly SMPTE_170M: "SMPTE_170M";
|
|
459
|
+
readonly SMPTE_2084: "SMPTE_2084";
|
|
460
|
+
readonly SMPTE_240M: "SMPTE_240M";
|
|
461
|
+
readonly SMPTE_428_1: "SMPTE_428_1";
|
|
462
|
+
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
463
|
+
};
|
|
464
|
+
/**
|
|
465
|
+
* @public
|
|
466
|
+
*/
|
|
467
|
+
export type TransferCharacteristics = (typeof TransferCharacteristics)[keyof typeof TransferCharacteristics];
|
|
468
|
+
/**
|
|
469
|
+
* Properties specific to video tracks.
|
|
470
|
+
* @public
|
|
471
|
+
*/
|
|
472
|
+
export interface VideoProperties {
|
|
473
|
+
/**
|
|
474
|
+
* The bit depth of the video track.
|
|
475
|
+
* @public
|
|
476
|
+
*/
|
|
477
|
+
BitDepth?: number | undefined;
|
|
478
|
+
/**
|
|
479
|
+
* The bit rate of the video track in bits per second.
|
|
480
|
+
* @public
|
|
481
|
+
*/
|
|
482
|
+
BitRate?: number | undefined;
|
|
483
|
+
/**
|
|
484
|
+
* the color primaries.
|
|
485
|
+
* @public
|
|
486
|
+
*/
|
|
487
|
+
ColorPrimaries?: ColorPrimaries | undefined;
|
|
488
|
+
/**
|
|
489
|
+
* the calculated frame rate of the asset.
|
|
490
|
+
* @public
|
|
491
|
+
*/
|
|
492
|
+
FrameRate?: FrameRate | undefined;
|
|
493
|
+
/**
|
|
494
|
+
* The height of the video track in pixels.
|
|
495
|
+
* @public
|
|
496
|
+
*/
|
|
497
|
+
Height?: number | undefined;
|
|
498
|
+
/**
|
|
499
|
+
* the matrix coefficients.
|
|
500
|
+
* @public
|
|
501
|
+
*/
|
|
502
|
+
MatrixCoefficients?: MatrixCoefficients | undefined;
|
|
503
|
+
/**
|
|
504
|
+
* the transfer characteristics.
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
507
|
+
TransferCharacteristics?: TransferCharacteristics | undefined;
|
|
508
|
+
/**
|
|
509
|
+
* The width of the video track in pixels.
|
|
510
|
+
* @public
|
|
511
|
+
*/
|
|
512
|
+
Width?: number | undefined;
|
|
513
|
+
}
|
|
514
|
+
/**
|
|
515
|
+
* The track information such as codec, duration, etc.
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
518
|
+
export interface Track {
|
|
519
|
+
/**
|
|
520
|
+
* Properties specific to audio tracks.
|
|
521
|
+
* @public
|
|
522
|
+
*/
|
|
523
|
+
AudioProperties?: AudioProperties | undefined;
|
|
524
|
+
/**
|
|
525
|
+
* The codec used for the track.
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
Codec?: Codec | undefined;
|
|
529
|
+
/**
|
|
530
|
+
* Properties specific to data tracks.
|
|
531
|
+
* @public
|
|
532
|
+
*/
|
|
533
|
+
DataProperties?: DataProperties | undefined;
|
|
534
|
+
/**
|
|
535
|
+
* The duration of the track in seconds.
|
|
536
|
+
* @public
|
|
537
|
+
*/
|
|
538
|
+
Duration?: number | undefined;
|
|
539
|
+
/**
|
|
540
|
+
* The index of the track.
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
Index?: number | undefined;
|
|
544
|
+
/**
|
|
545
|
+
* The type of the track (video, audio, or data).
|
|
546
|
+
* @public
|
|
547
|
+
*/
|
|
548
|
+
TrackType?: TrackType | undefined;
|
|
549
|
+
/**
|
|
550
|
+
* Properties specific to video tracks.
|
|
551
|
+
* @public
|
|
552
|
+
*/
|
|
553
|
+
VideoProperties?: VideoProperties | undefined;
|
|
554
|
+
}
|
|
555
|
+
/**
|
|
556
|
+
* Information about the container format of the media file.
|
|
557
|
+
* @public
|
|
558
|
+
*/
|
|
559
|
+
export interface Container {
|
|
560
|
+
/**
|
|
561
|
+
* The duration of the media file in seconds.
|
|
562
|
+
* @public
|
|
563
|
+
*/
|
|
564
|
+
Duration?: number | undefined;
|
|
565
|
+
/**
|
|
566
|
+
* The format of the container
|
|
567
|
+
* @public
|
|
568
|
+
*/
|
|
569
|
+
Format?: Format | undefined;
|
|
570
|
+
/**
|
|
571
|
+
* List of Track objects.
|
|
572
|
+
* @public
|
|
573
|
+
*/
|
|
574
|
+
Tracks?: Track[] | undefined;
|
|
575
|
+
}
|
|
576
|
+
/**
|
|
577
|
+
* Metadata about the file.
|
|
578
|
+
* @public
|
|
579
|
+
*/
|
|
580
|
+
export interface Metadata {
|
|
581
|
+
/**
|
|
582
|
+
* The ETag of the file.
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
585
|
+
ETag?: string | undefined;
|
|
586
|
+
/**
|
|
587
|
+
* The size of the file in bytes.
|
|
588
|
+
* @public
|
|
589
|
+
*/
|
|
590
|
+
FileSize?: number | undefined;
|
|
591
|
+
/**
|
|
592
|
+
* The last modification time of the file.
|
|
593
|
+
* @public
|
|
594
|
+
*/
|
|
595
|
+
LastModified?: Date | undefined;
|
|
596
|
+
/**
|
|
597
|
+
* The MIME type of the file.
|
|
598
|
+
* @public
|
|
599
|
+
*/
|
|
600
|
+
MimeType?: string | undefined;
|
|
601
|
+
}
|
|
602
|
+
/**
|
|
603
|
+
* Track mapping information.
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
606
|
+
export interface TrackMapping {
|
|
607
|
+
/**
|
|
608
|
+
* The indexes of the audio tracks.
|
|
609
|
+
* @public
|
|
610
|
+
*/
|
|
611
|
+
AudioTrackIndexes?: number[] | undefined;
|
|
612
|
+
/**
|
|
613
|
+
* The indexes of the data tracks.
|
|
614
|
+
* @public
|
|
615
|
+
*/
|
|
616
|
+
DataTrackIndexes?: number[] | undefined;
|
|
617
|
+
/**
|
|
618
|
+
* The indexes of the video tracks.
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
621
|
+
VideoTrackIndexes?: number[] | undefined;
|
|
622
|
+
}
|
|
623
|
+
/**
|
|
624
|
+
* The metadata and analysis results for a media file.
|
|
625
|
+
* @public
|
|
626
|
+
*/
|
|
627
|
+
export interface ProbeResult {
|
|
628
|
+
/**
|
|
629
|
+
* Information about the container format of the media file.
|
|
630
|
+
* @public
|
|
631
|
+
*/
|
|
632
|
+
Container?: Container | undefined;
|
|
633
|
+
/**
|
|
634
|
+
* Metadata about the file.
|
|
635
|
+
* @public
|
|
636
|
+
*/
|
|
637
|
+
Metadata?: Metadata | undefined;
|
|
638
|
+
/**
|
|
639
|
+
* List of Track mapping objects.
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
642
|
+
TrackMappings?: TrackMapping[] | undefined;
|
|
643
|
+
}
|
|
252
644
|
/**
|
|
253
645
|
* @public
|
|
254
646
|
* @enum
|
|
@@ -1358,6 +1750,26 @@ export interface ListVersionsResponse {
|
|
|
1358
1750
|
*/
|
|
1359
1751
|
Versions?: JobEngineVersion[] | undefined;
|
|
1360
1752
|
}
|
|
1753
|
+
/**
|
|
1754
|
+
* @public
|
|
1755
|
+
*/
|
|
1756
|
+
export interface ProbeRequest {
|
|
1757
|
+
/**
|
|
1758
|
+
* The list of input media files to be probed.
|
|
1759
|
+
* @public
|
|
1760
|
+
*/
|
|
1761
|
+
InputFiles?: ProbeInputFile[] | undefined;
|
|
1762
|
+
}
|
|
1763
|
+
/**
|
|
1764
|
+
* @public
|
|
1765
|
+
*/
|
|
1766
|
+
export interface ProbeResponse {
|
|
1767
|
+
/**
|
|
1768
|
+
* List of probe results for the input media file(s).
|
|
1769
|
+
* @public
|
|
1770
|
+
*/
|
|
1771
|
+
ProbeResults?: ProbeResult[] | undefined;
|
|
1772
|
+
}
|
|
1361
1773
|
/**
|
|
1362
1774
|
* @public
|
|
1363
1775
|
*/
|
|
@@ -23,6 +23,7 @@ import { ListPresetsCommandInput, ListPresetsCommandOutput } from "../commands/L
|
|
|
23
23
|
import { ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand";
|
|
24
24
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
25
25
|
import { ListVersionsCommandInput, ListVersionsCommandOutput } from "../commands/ListVersionsCommand";
|
|
26
|
+
import { ProbeCommandInput, ProbeCommandOutput } from "../commands/ProbeCommand";
|
|
26
27
|
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "../commands/PutPolicyCommand";
|
|
27
28
|
import { SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand";
|
|
28
29
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
@@ -122,6 +123,10 @@ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceC
|
|
|
122
123
|
* serializeAws_restJson1ListVersionsCommand
|
|
123
124
|
*/
|
|
124
125
|
export declare const se_ListVersionsCommand: (input: ListVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
|
+
/**
|
|
127
|
+
* serializeAws_restJson1ProbeCommand
|
|
128
|
+
*/
|
|
129
|
+
export declare const se_ProbeCommand: (input: ProbeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
130
|
/**
|
|
126
131
|
* serializeAws_restJson1PutPolicyCommand
|
|
127
132
|
*/
|
|
@@ -242,6 +247,10 @@ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, con
|
|
|
242
247
|
* deserializeAws_restJson1ListVersionsCommand
|
|
243
248
|
*/
|
|
244
249
|
export declare const de_ListVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVersionsCommandOutput>;
|
|
250
|
+
/**
|
|
251
|
+
* deserializeAws_restJson1ProbeCommand
|
|
252
|
+
*/
|
|
253
|
+
export declare const de_ProbeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ProbeCommandOutput>;
|
|
245
254
|
/**
|
|
246
255
|
* deserializeAws_restJson1PutPolicyCommand
|
|
247
256
|
*/
|
|
@@ -91,6 +91,7 @@ import {
|
|
|
91
91
|
ListVersionsCommandInput,
|
|
92
92
|
ListVersionsCommandOutput,
|
|
93
93
|
} from "./commands/ListVersionsCommand";
|
|
94
|
+
import { ProbeCommandInput, ProbeCommandOutput } from "./commands/ProbeCommand";
|
|
94
95
|
import {
|
|
95
96
|
PutPolicyCommandInput,
|
|
96
97
|
PutPolicyCommandOutput,
|
|
@@ -428,6 +429,20 @@ export interface MediaConvert {
|
|
|
428
429
|
options: __HttpHandlerOptions,
|
|
429
430
|
cb: (err: any, data?: ListVersionsCommandOutput) => void
|
|
430
431
|
): void;
|
|
432
|
+
probe(): Promise<ProbeCommandOutput>;
|
|
433
|
+
probe(
|
|
434
|
+
args: ProbeCommandInput,
|
|
435
|
+
options?: __HttpHandlerOptions
|
|
436
|
+
): Promise<ProbeCommandOutput>;
|
|
437
|
+
probe(
|
|
438
|
+
args: ProbeCommandInput,
|
|
439
|
+
cb: (err: any, data?: ProbeCommandOutput) => void
|
|
440
|
+
): void;
|
|
441
|
+
probe(
|
|
442
|
+
args: ProbeCommandInput,
|
|
443
|
+
options: __HttpHandlerOptions,
|
|
444
|
+
cb: (err: any, data?: ProbeCommandOutput) => void
|
|
445
|
+
): void;
|
|
431
446
|
putPolicy(
|
|
432
447
|
args: PutPolicyCommandInput,
|
|
433
448
|
options?: __HttpHandlerOptions
|
|
@@ -137,6 +137,7 @@ import {
|
|
|
137
137
|
ListVersionsCommandInput,
|
|
138
138
|
ListVersionsCommandOutput,
|
|
139
139
|
} from "./commands/ListVersionsCommand";
|
|
140
|
+
import { ProbeCommandInput, ProbeCommandOutput } from "./commands/ProbeCommand";
|
|
140
141
|
import {
|
|
141
142
|
PutPolicyCommandInput,
|
|
142
143
|
PutPolicyCommandOutput,
|
|
@@ -196,6 +197,7 @@ export type ServiceInputTypes =
|
|
|
196
197
|
| ListQueuesCommandInput
|
|
197
198
|
| ListTagsForResourceCommandInput
|
|
198
199
|
| ListVersionsCommandInput
|
|
200
|
+
| ProbeCommandInput
|
|
199
201
|
| PutPolicyCommandInput
|
|
200
202
|
| SearchJobsCommandInput
|
|
201
203
|
| TagResourceCommandInput
|
|
@@ -227,6 +229,7 @@ export type ServiceOutputTypes =
|
|
|
227
229
|
| ListQueuesCommandOutput
|
|
228
230
|
| ListTagsForResourceCommandOutput
|
|
229
231
|
| ListVersionsCommandOutput
|
|
232
|
+
| ProbeCommandOutput
|
|
230
233
|
| PutPolicyCommandOutput
|
|
231
234
|
| SearchJobsCommandOutput
|
|
232
235
|
| TagResourceCommandOutput
|
|
@@ -0,0 +1,43 @@
|
|
|
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 { ProbeRequest, ProbeResponse } from "../models/models_2";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ProbeCommandInput extends ProbeRequest {}
|
|
12
|
+
export interface ProbeCommandOutput extends ProbeResponse, __MetadataBearer {}
|
|
13
|
+
declare const ProbeCommand_base: {
|
|
14
|
+
new (input: ProbeCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
15
|
+
ProbeCommandInput,
|
|
16
|
+
ProbeCommandOutput,
|
|
17
|
+
MediaConvertClientResolvedConfig,
|
|
18
|
+
ServiceInputTypes,
|
|
19
|
+
ServiceOutputTypes
|
|
20
|
+
>;
|
|
21
|
+
new (
|
|
22
|
+
...[input]: [] | [ProbeCommandInput]
|
|
23
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
24
|
+
ProbeCommandInput,
|
|
25
|
+
ProbeCommandOutput,
|
|
26
|
+
MediaConvertClientResolvedConfig,
|
|
27
|
+
ServiceInputTypes,
|
|
28
|
+
ServiceOutputTypes
|
|
29
|
+
>;
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
31
|
+
};
|
|
32
|
+
export declare class ProbeCommand extends ProbeCommand_base {
|
|
33
|
+
protected static __types: {
|
|
34
|
+
api: {
|
|
35
|
+
input: ProbeRequest;
|
|
36
|
+
output: ProbeResponse;
|
|
37
|
+
};
|
|
38
|
+
sdk: {
|
|
39
|
+
input: ProbeCommandInput;
|
|
40
|
+
output: ProbeCommandOutput;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -21,6 +21,7 @@ export * from "./ListPresetsCommand";
|
|
|
21
21
|
export * from "./ListQueuesCommand";
|
|
22
22
|
export * from "./ListTagsForResourceCommand";
|
|
23
23
|
export * from "./ListVersionsCommand";
|
|
24
|
+
export * from "./ProbeCommand";
|
|
24
25
|
export * from "./PutPolicyCommand";
|
|
25
26
|
export * from "./SearchJobsCommand";
|
|
26
27
|
export * from "./TagResourceCommand";
|
|
@@ -1975,6 +1975,7 @@ export type CmafSegmentControl =
|
|
|
1975
1975
|
export declare const CmafSegmentLengthControl: {
|
|
1976
1976
|
readonly EXACT: "EXACT";
|
|
1977
1977
|
readonly GOP_MULTIPLE: "GOP_MULTIPLE";
|
|
1978
|
+
readonly MATCH: "MATCH";
|
|
1978
1979
|
};
|
|
1979
1980
|
export type CmafSegmentLengthControl =
|
|
1980
1981
|
(typeof CmafSegmentLengthControl)[keyof typeof CmafSegmentLengthControl];
|
|
@@ -2126,6 +2127,7 @@ export type DashIsoSegmentControl =
|
|
|
2126
2127
|
export declare const DashIsoSegmentLengthControl: {
|
|
2127
2128
|
readonly EXACT: "EXACT";
|
|
2128
2129
|
readonly GOP_MULTIPLE: "GOP_MULTIPLE";
|
|
2130
|
+
readonly MATCH: "MATCH";
|
|
2129
2131
|
};
|
|
2130
2132
|
export type DashIsoSegmentLengthControl =
|
|
2131
2133
|
(typeof DashIsoSegmentLengthControl)[keyof typeof DashIsoSegmentLengthControl];
|
|
@@ -2306,6 +2308,7 @@ export type HlsSegmentControl =
|
|
|
2306
2308
|
export declare const HlsSegmentLengthControl: {
|
|
2307
2309
|
readonly EXACT: "EXACT";
|
|
2308
2310
|
readonly GOP_MULTIPLE: "GOP_MULTIPLE";
|
|
2311
|
+
readonly MATCH: "MATCH";
|
|
2309
2312
|
};
|
|
2310
2313
|
export type HlsSegmentLengthControl =
|
|
2311
2314
|
(typeof HlsSegmentLengthControl)[keyof typeof HlsSegmentLengthControl];
|
|
@@ -265,6 +265,7 @@ export type M2tsPreventBufferUnderflow =
|
|
|
265
265
|
(typeof M2tsPreventBufferUnderflow)[keyof typeof M2tsPreventBufferUnderflow];
|
|
266
266
|
export declare const TsPtsOffset: {
|
|
267
267
|
readonly AUTO: "AUTO";
|
|
268
|
+
readonly MILLISECONDS: "MILLISECONDS";
|
|
268
269
|
readonly SECONDS: "SECONDS";
|
|
269
270
|
};
|
|
270
271
|
export type TsPtsOffset = (typeof TsPtsOffset)[keyof typeof TsPtsOffset];
|
|
@@ -303,6 +304,7 @@ export interface M2tsSettings {
|
|
|
303
304
|
AudioDuration?: M2tsAudioDuration | undefined;
|
|
304
305
|
AudioFramesPerPes?: number | undefined;
|
|
305
306
|
AudioPids?: number[] | undefined;
|
|
307
|
+
AudioPtsOffsetDelta?: number | undefined;
|
|
306
308
|
Bitrate?: number | undefined;
|
|
307
309
|
BufferModel?: M2tsBufferModel | undefined;
|
|
308
310
|
DataPTSControl?: M2tsDataPtsControl | undefined;
|
|
@@ -381,6 +383,7 @@ export interface M3u8Settings {
|
|
|
381
383
|
AudioDuration?: M3u8AudioDuration | undefined;
|
|
382
384
|
AudioFramesPerPes?: number | undefined;
|
|
383
385
|
AudioPids?: number[] | undefined;
|
|
386
|
+
AudioPtsOffsetDelta?: number | undefined;
|
|
384
387
|
DataPTSControl?: M3u8DataPtsControl | undefined;
|
|
385
388
|
MaxPcrInterval?: number | undefined;
|
|
386
389
|
NielsenId3?: M3u8NielsenId3 | undefined;
|