@aws-sdk/client-mediaconvert 3.913.0 → 3.916.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 +16 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +178 -0
- package/dist-es/MediaConvert.js +4 -0
- package/dist-es/commands/GetJobsQueryResultsCommand.js +22 -0
- package/dist-es/commands/StartJobsQueryCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_2.js +32 -0
- package/dist-es/protocols/Aws_restJson1.js +105 -1
- package/dist-types/MediaConvert.d.ts +15 -0
- package/dist-types/MediaConvertClient.d.ts +4 -2
- package/dist-types/commands/AssociateCertificateCommand.d.ts +3 -0
- package/dist-types/commands/CancelJobCommand.d.ts +3 -0
- package/dist-types/commands/CreateJobCommand.d.ts +17 -10
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +13 -10
- package/dist-types/commands/CreatePresetCommand.d.ts +13 -10
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -0
- package/dist-types/commands/CreateResourceShareCommand.d.ts +3 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +3 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +3 -0
- package/dist-types/commands/DeletePresetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +3 -0
- package/dist-types/commands/GetJobCommand.d.ts +10 -5
- package/dist-types/commands/GetJobTemplateCommand.d.ts +8 -5
- package/dist-types/commands/GetJobsQueryResultsCommand.d.ts +1727 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +3 -0
- package/dist-types/commands/GetPresetCommand.d.ts +8 -5
- package/dist-types/commands/GetQueueCommand.d.ts +3 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +8 -5
- package/dist-types/commands/ListJobsCommand.d.ts +10 -5
- package/dist-types/commands/ListPresetsCommand.d.ts +8 -5
- package/dist-types/commands/ListQueuesCommand.d.ts +3 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListVersionsCommand.d.ts +3 -0
- package/dist-types/commands/ProbeCommand.d.ts +20 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +3 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +10 -5
- package/dist-types/commands/StartJobsQueryCommand.d.ts +105 -0
- package/dist-types/commands/TagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +13 -10
- package/dist-types/commands/UpdatePresetCommand.d.ts +13 -10
- package/dist-types/commands/UpdateQueueCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +21 -10
- package/dist-types/models/models_1.d.ts +8 -8
- package/dist-types/models/models_2.d.ts +205 -11
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/MediaConvert.d.ts +35 -0
- package/dist-types/ts3.4/MediaConvertClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetJobsQueryResultsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartJobsQueryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/models/models_2.d.ts +65 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +33 -33
|
@@ -70,7 +70,7 @@ export interface JobSettings {
|
|
|
70
70
|
*/
|
|
71
71
|
ExtendedDataServices?: ExtendedDataServices | undefined;
|
|
72
72
|
/**
|
|
73
|
-
* Specify the input that MediaConvert references for your default output settings.
|
|
73
|
+
* Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable "Follow source" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs.
|
|
74
74
|
* @public
|
|
75
75
|
*/
|
|
76
76
|
FollowSource?: number | undefined;
|
|
@@ -389,11 +389,44 @@ export interface JobEngineVersion {
|
|
|
389
389
|
*/
|
|
390
390
|
ExpirationDate?: Date | undefined;
|
|
391
391
|
/**
|
|
392
|
-
* Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. Job engine versions are in a YYYY-MM-DD format.
|
|
392
|
+
* Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. Job engine versions represent periodically grouped MediaConvert releases with new features, updates, improvements, and fixes. Job engine versions are in a YYYY-MM-DD format. Note that the Job engine version feature is not publicly available at this time. To request access, contact AWS support.
|
|
393
393
|
* @public
|
|
394
394
|
*/
|
|
395
395
|
Version?: string | undefined;
|
|
396
396
|
}
|
|
397
|
+
/**
|
|
398
|
+
* @public
|
|
399
|
+
* @enum
|
|
400
|
+
*/
|
|
401
|
+
export declare const JobsQueryFilterKey: {
|
|
402
|
+
readonly audioCodec: "audioCodec";
|
|
403
|
+
readonly fileInput: "fileInput";
|
|
404
|
+
readonly jobEngineVersionRequested: "jobEngineVersionRequested";
|
|
405
|
+
readonly jobEngineVersionUsed: "jobEngineVersionUsed";
|
|
406
|
+
readonly queue: "queue";
|
|
407
|
+
readonly status: "status";
|
|
408
|
+
readonly videoCodec: "videoCodec";
|
|
409
|
+
};
|
|
410
|
+
/**
|
|
411
|
+
* @public
|
|
412
|
+
*/
|
|
413
|
+
export type JobsQueryFilterKey = (typeof JobsQueryFilterKey)[keyof typeof JobsQueryFilterKey];
|
|
414
|
+
/**
|
|
415
|
+
* Provide one or more JobsQueryFilter objects, each containing a Key with an associated Values array. Note that MediaConvert queries jobs using OR logic.
|
|
416
|
+
* @public
|
|
417
|
+
*/
|
|
418
|
+
export interface JobsQueryFilter {
|
|
419
|
+
/**
|
|
420
|
+
* Specify job details to filter for while performing a jobs query. You specify these filters as part of a key-value pair within the JobsQueryFilter array. The following list describes which keys are available and their possible values: * queue - Your Queue's name or ARN. * status - Your job's status. (SUBMITTED | PROGRESSING | COMPLETE | CANCELED | ERROR) * fileInput - Your input file URL, or partial input file name. * jobEngineVersionRequested - The Job engine version that you requested for your job. Valid versions are in a YYYY-MM-DD format. * jobEngineVersionUsed - The Job engine version that your job used. This may differ from the version that you requested. Valid versions are in a YYYY-MM-DD format. * audioCodec - Your output's audio codec. (AAC | MP2 | MP3 | WAV | AIFF | AC3| EAC3 | EAC3_ATMOS | VORBIS | OPUS | PASSTHROUGH | FLAC) * videoCodec - Your output's video codec. (AV1 | AVC_INTRA | FRAME_CAPTURE | H_264 | H_265 | MPEG2 | PASSTHROUGH | PRORES | UNCOMPRESSED | VC3 | VP8 | VP9 | XAVC)
|
|
421
|
+
* @public
|
|
422
|
+
*/
|
|
423
|
+
Key?: JobsQueryFilterKey | undefined;
|
|
424
|
+
/**
|
|
425
|
+
* A list of values associated with a JobsQueryFilterKey.
|
|
426
|
+
* @public
|
|
427
|
+
*/
|
|
428
|
+
Values?: string[] | undefined;
|
|
429
|
+
}
|
|
397
430
|
/**
|
|
398
431
|
* JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.
|
|
399
432
|
* @public
|
|
@@ -425,7 +458,7 @@ export interface JobTemplateSettings {
|
|
|
425
458
|
*/
|
|
426
459
|
ExtendedDataServices?: ExtendedDataServices | undefined;
|
|
427
460
|
/**
|
|
428
|
-
* Specify the input that MediaConvert references for your default output settings.
|
|
461
|
+
* Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable "Follow source" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs.
|
|
429
462
|
* @public
|
|
430
463
|
*/
|
|
431
464
|
FollowSource?: number | undefined;
|
|
@@ -652,7 +685,7 @@ export declare const Format: {
|
|
|
652
685
|
*/
|
|
653
686
|
export type Format = (typeof Format)[keyof typeof Format];
|
|
654
687
|
/**
|
|
655
|
-
* The frame rate of the video or audio track.
|
|
688
|
+
* The frame rate of the video or audio track, expressed as a fraction with numerator and denominator values.
|
|
656
689
|
* @public
|
|
657
690
|
*/
|
|
658
691
|
export interface FrameRate {
|
|
@@ -688,7 +721,7 @@ export interface AudioProperties {
|
|
|
688
721
|
*/
|
|
689
722
|
Channels?: number | undefined;
|
|
690
723
|
/**
|
|
691
|
-
* The frame rate of the video or audio track.
|
|
724
|
+
* The frame rate of the video or audio track, expressed as a fraction with numerator and denominator values.
|
|
692
725
|
* @public
|
|
693
726
|
*/
|
|
694
727
|
FrameRate?: FrameRate | undefined;
|
|
@@ -721,12 +754,15 @@ export declare const Codec: {
|
|
|
721
754
|
readonly MJPEG: "MJPEG";
|
|
722
755
|
readonly MP3: "MP3";
|
|
723
756
|
readonly MP4V: "MP4V";
|
|
757
|
+
readonly MPEG1: "MPEG1";
|
|
724
758
|
readonly MPEG2: "MPEG2";
|
|
725
759
|
readonly OPUS: "OPUS";
|
|
726
760
|
readonly PCM: "PCM";
|
|
727
761
|
readonly PRORES: "PRORES";
|
|
762
|
+
readonly QTRLE: "QTRLE";
|
|
728
763
|
readonly THEORA: "THEORA";
|
|
729
764
|
readonly UNKNOWN: "UNKNOWN";
|
|
765
|
+
readonly VFW: "VFW";
|
|
730
766
|
readonly VORBIS: "VORBIS";
|
|
731
767
|
readonly VP8: "VP8";
|
|
732
768
|
readonly VP9: "VP9";
|
|
@@ -843,13 +879,74 @@ export declare const TransferCharacteristics: {
|
|
|
843
879
|
* @public
|
|
844
880
|
*/
|
|
845
881
|
export type TransferCharacteristics = (typeof TransferCharacteristics)[keyof typeof TransferCharacteristics];
|
|
882
|
+
/**
|
|
883
|
+
* Codec-specific parameters parsed from the video essence headers. This information provides detailed technical specifications about how the video was encoded, including profile settings, resolution details, and color space information that can help you understand the source video characteristics and make informed encoding decisions.
|
|
884
|
+
* @public
|
|
885
|
+
*/
|
|
886
|
+
export interface CodecMetadata {
|
|
887
|
+
/**
|
|
888
|
+
* The number of bits used per color component in the video essence such as 8, 10, or 12 bits. Standard range (SDR) video typically uses 8-bit, while 10-bit is common for high dynamic range (HDR).
|
|
889
|
+
* @public
|
|
890
|
+
*/
|
|
891
|
+
BitDepth?: number | undefined;
|
|
892
|
+
/**
|
|
893
|
+
* The chroma subsampling format used in the video encoding, such as "4:2:0" or "4:4:4". This describes how color information is sampled relative to brightness information. Different subsampling ratios affect video quality and file size, with "4:4:4" providing the highest color fidelity and "4:2:0" being most common for standard video.
|
|
894
|
+
* @public
|
|
895
|
+
*/
|
|
896
|
+
ChromaSubsampling?: string | undefined;
|
|
897
|
+
/**
|
|
898
|
+
* The frame rate of the video or audio track, expressed as a fraction with numerator and denominator values.
|
|
899
|
+
* @public
|
|
900
|
+
*/
|
|
901
|
+
CodedFrameRate?: FrameRate | undefined;
|
|
902
|
+
/**
|
|
903
|
+
* The color space primaries of the video track, defining the red, green, and blue color coordinates used for the video. This information helps ensure accurate color reproduction during playback and transcoding.
|
|
904
|
+
* @public
|
|
905
|
+
*/
|
|
906
|
+
ColorPrimaries?: ColorPrimaries | undefined;
|
|
907
|
+
/**
|
|
908
|
+
* The height in pixels as coded by the codec. This represents the actual encoded video height as specified in the video stream headers.
|
|
909
|
+
* @public
|
|
910
|
+
*/
|
|
911
|
+
Height?: number | undefined;
|
|
912
|
+
/**
|
|
913
|
+
* The codec level or tier that specifies the maximum processing requirements and capabilities. Levels define constraints such as maximum bit rate, frame rate, and resolution.
|
|
914
|
+
* @public
|
|
915
|
+
*/
|
|
916
|
+
Level?: string | undefined;
|
|
917
|
+
/**
|
|
918
|
+
* The color space matrix coefficients of the video track, defining how RGB color values are converted to and from YUV color space. This affects color accuracy during encoding and decoding processes.
|
|
919
|
+
* @public
|
|
920
|
+
*/
|
|
921
|
+
MatrixCoefficients?: MatrixCoefficients | undefined;
|
|
922
|
+
/**
|
|
923
|
+
* The codec profile used to encode the video. Profiles define specific feature sets and capabilities within a codec standard. For example, H.264 profiles include Baseline, Main, and High, each supporting different encoding features and complexity levels.
|
|
924
|
+
* @public
|
|
925
|
+
*/
|
|
926
|
+
Profile?: string | undefined;
|
|
927
|
+
/**
|
|
928
|
+
* The scanning method specified in the video essence, indicating whether the video uses progressive or interlaced scanning.
|
|
929
|
+
* @public
|
|
930
|
+
*/
|
|
931
|
+
ScanType?: string | undefined;
|
|
932
|
+
/**
|
|
933
|
+
* The color space transfer characteristics of the video track, defining the relationship between linear light values and the encoded signal values. This affects brightness and contrast reproduction.
|
|
934
|
+
* @public
|
|
935
|
+
*/
|
|
936
|
+
TransferCharacteristics?: TransferCharacteristics | undefined;
|
|
937
|
+
/**
|
|
938
|
+
* The width in pixels as coded by the codec. This represents the actual encoded video width as specified in the video stream headers.
|
|
939
|
+
* @public
|
|
940
|
+
*/
|
|
941
|
+
Width?: number | undefined;
|
|
942
|
+
}
|
|
846
943
|
/**
|
|
847
944
|
* Details about the media file's video track.
|
|
848
945
|
* @public
|
|
849
946
|
*/
|
|
850
947
|
export interface VideoProperties {
|
|
851
948
|
/**
|
|
852
|
-
* The
|
|
949
|
+
* The number of bits used per color component such as 8, 10, or 12 bits. Standard range (SDR) video typically uses 8-bit, while 10-bit is common for high dynamic range (HDR).
|
|
853
950
|
* @public
|
|
854
951
|
*/
|
|
855
952
|
BitDepth?: number | undefined;
|
|
@@ -859,12 +956,17 @@ export interface VideoProperties {
|
|
|
859
956
|
*/
|
|
860
957
|
BitRate?: number | undefined;
|
|
861
958
|
/**
|
|
862
|
-
*
|
|
959
|
+
* Codec-specific parameters parsed from the video essence headers. This information provides detailed technical specifications about how the video was encoded, including profile settings, resolution details, and color space information that can help you understand the source video characteristics and make informed encoding decisions.
|
|
960
|
+
* @public
|
|
961
|
+
*/
|
|
962
|
+
CodecMetadata?: CodecMetadata | undefined;
|
|
963
|
+
/**
|
|
964
|
+
* The color space primaries of the video track, defining the red, green, and blue color coordinates used for the video. This information helps ensure accurate color reproduction during playback and transcoding.
|
|
863
965
|
* @public
|
|
864
966
|
*/
|
|
865
967
|
ColorPrimaries?: ColorPrimaries | undefined;
|
|
866
968
|
/**
|
|
867
|
-
* The frame rate of the video or audio track.
|
|
969
|
+
* The frame rate of the video or audio track, expressed as a fraction with numerator and denominator values.
|
|
868
970
|
* @public
|
|
869
971
|
*/
|
|
870
972
|
FrameRate?: FrameRate | undefined;
|
|
@@ -874,12 +976,12 @@ export interface VideoProperties {
|
|
|
874
976
|
*/
|
|
875
977
|
Height?: number | undefined;
|
|
876
978
|
/**
|
|
877
|
-
* The color space matrix coefficients of the video track.
|
|
979
|
+
* The color space matrix coefficients of the video track, defining how RGB color values are converted to and from YUV color space. This affects color accuracy during encoding and decoding processes.
|
|
878
980
|
* @public
|
|
879
981
|
*/
|
|
880
982
|
MatrixCoefficients?: MatrixCoefficients | undefined;
|
|
881
983
|
/**
|
|
882
|
-
* The color space transfer characteristics of the video track.
|
|
984
|
+
* The color space transfer characteristics of the video track, defining the relationship between linear light values and the encoded signal values. This affects brightness and contrast reproduction.
|
|
883
985
|
* @public
|
|
884
986
|
*/
|
|
885
987
|
TransferCharacteristics?: TransferCharacteristics | undefined;
|
|
@@ -1291,6 +1393,19 @@ export declare class NotFoundException extends __BaseException {
|
|
|
1291
1393
|
*/
|
|
1292
1394
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
1293
1395
|
}
|
|
1396
|
+
/**
|
|
1397
|
+
* You attempted to create more resources than the service allows based on service quotas.
|
|
1398
|
+
* @public
|
|
1399
|
+
*/
|
|
1400
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1401
|
+
readonly name: "ServiceQuotaExceededException";
|
|
1402
|
+
readonly $fault: "client";
|
|
1403
|
+
Message?: string | undefined;
|
|
1404
|
+
/**
|
|
1405
|
+
* @internal
|
|
1406
|
+
*/
|
|
1407
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1408
|
+
}
|
|
1294
1409
|
/**
|
|
1295
1410
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
1296
1411
|
* @public
|
|
@@ -1344,7 +1459,7 @@ export interface CreateJobRequest {
|
|
|
1344
1459
|
*/
|
|
1345
1460
|
HopDestinations?: HopDestination[] | undefined;
|
|
1346
1461
|
/**
|
|
1347
|
-
* Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version.
|
|
1462
|
+
* Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. Job engine versions represent periodically grouped MediaConvert releases with new features, updates, improvements, and fixes. Job engine versions are in a YYYY-MM-DD format. Note that the Job engine version feature is not publicly available at this time. To request access, contact AWS support.
|
|
1348
1463
|
* @public
|
|
1349
1464
|
*/
|
|
1350
1465
|
JobEngineVersion?: string | undefined;
|
|
@@ -1739,6 +1854,50 @@ export interface GetJobResponse {
|
|
|
1739
1854
|
*/
|
|
1740
1855
|
Job?: Job | undefined;
|
|
1741
1856
|
}
|
|
1857
|
+
/**
|
|
1858
|
+
* @public
|
|
1859
|
+
*/
|
|
1860
|
+
export interface GetJobsQueryResultsRequest {
|
|
1861
|
+
/**
|
|
1862
|
+
* The ID of the jobs query.
|
|
1863
|
+
* @public
|
|
1864
|
+
*/
|
|
1865
|
+
Id: string | undefined;
|
|
1866
|
+
}
|
|
1867
|
+
/**
|
|
1868
|
+
* @public
|
|
1869
|
+
* @enum
|
|
1870
|
+
*/
|
|
1871
|
+
export declare const JobsQueryStatus: {
|
|
1872
|
+
readonly COMPLETE: "COMPLETE";
|
|
1873
|
+
readonly ERROR: "ERROR";
|
|
1874
|
+
readonly PROGRESSING: "PROGRESSING";
|
|
1875
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
1876
|
+
};
|
|
1877
|
+
/**
|
|
1878
|
+
* @public
|
|
1879
|
+
*/
|
|
1880
|
+
export type JobsQueryStatus = (typeof JobsQueryStatus)[keyof typeof JobsQueryStatus];
|
|
1881
|
+
/**
|
|
1882
|
+
* @public
|
|
1883
|
+
*/
|
|
1884
|
+
export interface GetJobsQueryResultsResponse {
|
|
1885
|
+
/**
|
|
1886
|
+
* List of jobs.
|
|
1887
|
+
* @public
|
|
1888
|
+
*/
|
|
1889
|
+
Jobs?: Job[] | undefined;
|
|
1890
|
+
/**
|
|
1891
|
+
* Use this string to request the next batch of jobs via the StartJobsQuery API.
|
|
1892
|
+
* @public
|
|
1893
|
+
*/
|
|
1894
|
+
NextToken?: string | undefined;
|
|
1895
|
+
/**
|
|
1896
|
+
* The status of the jobs query.
|
|
1897
|
+
* @public
|
|
1898
|
+
*/
|
|
1899
|
+
Status?: JobsQueryStatus | undefined;
|
|
1900
|
+
}
|
|
1742
1901
|
/**
|
|
1743
1902
|
* @public
|
|
1744
1903
|
*/
|
|
@@ -2238,6 +2397,41 @@ export interface SearchJobsResponse {
|
|
|
2238
2397
|
*/
|
|
2239
2398
|
NextToken?: string | undefined;
|
|
2240
2399
|
}
|
|
2400
|
+
/**
|
|
2401
|
+
* @public
|
|
2402
|
+
*/
|
|
2403
|
+
export interface StartJobsQueryRequest {
|
|
2404
|
+
/**
|
|
2405
|
+
* Optional. Provide an array of JobsQueryFilters for your StartJobsQuery request.
|
|
2406
|
+
* @public
|
|
2407
|
+
*/
|
|
2408
|
+
FilterList?: JobsQueryFilter[] | undefined;
|
|
2409
|
+
/**
|
|
2410
|
+
* Optional. Number of jobs, up to twenty, that will be included in the jobs query.
|
|
2411
|
+
* @public
|
|
2412
|
+
*/
|
|
2413
|
+
MaxResults?: number | undefined;
|
|
2414
|
+
/**
|
|
2415
|
+
* Use this string to request the next batch of jobs matched by a jobs query.
|
|
2416
|
+
* @public
|
|
2417
|
+
*/
|
|
2418
|
+
NextToken?: string | undefined;
|
|
2419
|
+
/**
|
|
2420
|
+
* Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
|
|
2421
|
+
* @public
|
|
2422
|
+
*/
|
|
2423
|
+
Order?: Order | undefined;
|
|
2424
|
+
}
|
|
2425
|
+
/**
|
|
2426
|
+
* @public
|
|
2427
|
+
*/
|
|
2428
|
+
export interface StartJobsQueryResponse {
|
|
2429
|
+
/**
|
|
2430
|
+
* The ID of the jobs query.
|
|
2431
|
+
* @public
|
|
2432
|
+
*/
|
|
2433
|
+
Id?: string | undefined;
|
|
2434
|
+
}
|
|
2241
2435
|
/**
|
|
2242
2436
|
* @public
|
|
2243
2437
|
*/
|
|
@@ -14,6 +14,7 @@ import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "../commands/D
|
|
|
14
14
|
import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "../commands/DescribeEndpointsCommand";
|
|
15
15
|
import { DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput } from "../commands/DisassociateCertificateCommand";
|
|
16
16
|
import { GetJobCommandInput, GetJobCommandOutput } from "../commands/GetJobCommand";
|
|
17
|
+
import { GetJobsQueryResultsCommandInput, GetJobsQueryResultsCommandOutput } from "../commands/GetJobsQueryResultsCommand";
|
|
17
18
|
import { GetJobTemplateCommandInput, GetJobTemplateCommandOutput } from "../commands/GetJobTemplateCommand";
|
|
18
19
|
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
|
|
19
20
|
import { GetPresetCommandInput, GetPresetCommandOutput } from "../commands/GetPresetCommand";
|
|
@@ -27,6 +28,7 @@ import { ListVersionsCommandInput, ListVersionsCommandOutput } from "../commands
|
|
|
27
28
|
import { ProbeCommandInput, ProbeCommandOutput } from "../commands/ProbeCommand";
|
|
28
29
|
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "../commands/PutPolicyCommand";
|
|
29
30
|
import { SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand";
|
|
31
|
+
import { StartJobsQueryCommandInput, StartJobsQueryCommandOutput } from "../commands/StartJobsQueryCommand";
|
|
30
32
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
31
33
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
32
34
|
import { UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput } from "../commands/UpdateJobTemplateCommand";
|
|
@@ -88,6 +90,10 @@ export declare const se_DisassociateCertificateCommand: (input: DisassociateCert
|
|
|
88
90
|
* serializeAws_restJson1GetJobCommand
|
|
89
91
|
*/
|
|
90
92
|
export declare const se_GetJobCommand: (input: GetJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
+
/**
|
|
94
|
+
* serializeAws_restJson1GetJobsQueryResultsCommand
|
|
95
|
+
*/
|
|
96
|
+
export declare const se_GetJobsQueryResultsCommand: (input: GetJobsQueryResultsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
97
|
/**
|
|
92
98
|
* serializeAws_restJson1GetJobTemplateCommand
|
|
93
99
|
*/
|
|
@@ -140,6 +146,10 @@ export declare const se_PutPolicyCommand: (input: PutPolicyCommandInput, context
|
|
|
140
146
|
* serializeAws_restJson1SearchJobsCommand
|
|
141
147
|
*/
|
|
142
148
|
export declare const se_SearchJobsCommand: (input: SearchJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
149
|
+
/**
|
|
150
|
+
* serializeAws_restJson1StartJobsQueryCommand
|
|
151
|
+
*/
|
|
152
|
+
export declare const se_StartJobsQueryCommand: (input: StartJobsQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
153
|
/**
|
|
144
154
|
* serializeAws_restJson1TagResourceCommand
|
|
145
155
|
*/
|
|
@@ -216,6 +226,10 @@ export declare const de_DisassociateCertificateCommand: (output: __HttpResponse,
|
|
|
216
226
|
* deserializeAws_restJson1GetJobCommand
|
|
217
227
|
*/
|
|
218
228
|
export declare const de_GetJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetJobCommandOutput>;
|
|
229
|
+
/**
|
|
230
|
+
* deserializeAws_restJson1GetJobsQueryResultsCommand
|
|
231
|
+
*/
|
|
232
|
+
export declare const de_GetJobsQueryResultsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetJobsQueryResultsCommandOutput>;
|
|
219
233
|
/**
|
|
220
234
|
* deserializeAws_restJson1GetJobTemplateCommand
|
|
221
235
|
*/
|
|
@@ -268,6 +282,10 @@ export declare const de_PutPolicyCommand: (output: __HttpResponse, context: __Se
|
|
|
268
282
|
* deserializeAws_restJson1SearchJobsCommand
|
|
269
283
|
*/
|
|
270
284
|
export declare const de_SearchJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchJobsCommandOutput>;
|
|
285
|
+
/**
|
|
286
|
+
* deserializeAws_restJson1StartJobsQueryCommand
|
|
287
|
+
*/
|
|
288
|
+
export declare const de_StartJobsQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartJobsQueryCommandOutput>;
|
|
271
289
|
/**
|
|
272
290
|
* deserializeAws_restJson1TagResourceCommand
|
|
273
291
|
*/
|
|
@@ -55,6 +55,10 @@ import {
|
|
|
55
55
|
GetJobCommandInput,
|
|
56
56
|
GetJobCommandOutput,
|
|
57
57
|
} from "./commands/GetJobCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetJobsQueryResultsCommandInput,
|
|
60
|
+
GetJobsQueryResultsCommandOutput,
|
|
61
|
+
} from "./commands/GetJobsQueryResultsCommand";
|
|
58
62
|
import {
|
|
59
63
|
GetJobTemplateCommandInput,
|
|
60
64
|
GetJobTemplateCommandOutput,
|
|
@@ -104,6 +108,10 @@ import {
|
|
|
104
108
|
SearchJobsCommandInput,
|
|
105
109
|
SearchJobsCommandOutput,
|
|
106
110
|
} from "./commands/SearchJobsCommand";
|
|
111
|
+
import {
|
|
112
|
+
StartJobsQueryCommandInput,
|
|
113
|
+
StartJobsQueryCommandOutput,
|
|
114
|
+
} from "./commands/StartJobsQueryCommand";
|
|
107
115
|
import {
|
|
108
116
|
TagResourceCommandInput,
|
|
109
117
|
TagResourceCommandOutput,
|
|
@@ -310,6 +318,19 @@ export interface MediaConvert {
|
|
|
310
318
|
options: __HttpHandlerOptions,
|
|
311
319
|
cb: (err: any, data?: GetJobCommandOutput) => void
|
|
312
320
|
): void;
|
|
321
|
+
getJobsQueryResults(
|
|
322
|
+
args: GetJobsQueryResultsCommandInput,
|
|
323
|
+
options?: __HttpHandlerOptions
|
|
324
|
+
): Promise<GetJobsQueryResultsCommandOutput>;
|
|
325
|
+
getJobsQueryResults(
|
|
326
|
+
args: GetJobsQueryResultsCommandInput,
|
|
327
|
+
cb: (err: any, data?: GetJobsQueryResultsCommandOutput) => void
|
|
328
|
+
): void;
|
|
329
|
+
getJobsQueryResults(
|
|
330
|
+
args: GetJobsQueryResultsCommandInput,
|
|
331
|
+
options: __HttpHandlerOptions,
|
|
332
|
+
cb: (err: any, data?: GetJobsQueryResultsCommandOutput) => void
|
|
333
|
+
): void;
|
|
313
334
|
getJobTemplate(
|
|
314
335
|
args: GetJobTemplateCommandInput,
|
|
315
336
|
options?: __HttpHandlerOptions
|
|
@@ -487,6 +508,20 @@ export interface MediaConvert {
|
|
|
487
508
|
options: __HttpHandlerOptions,
|
|
488
509
|
cb: (err: any, data?: SearchJobsCommandOutput) => void
|
|
489
510
|
): void;
|
|
511
|
+
startJobsQuery(): Promise<StartJobsQueryCommandOutput>;
|
|
512
|
+
startJobsQuery(
|
|
513
|
+
args: StartJobsQueryCommandInput,
|
|
514
|
+
options?: __HttpHandlerOptions
|
|
515
|
+
): Promise<StartJobsQueryCommandOutput>;
|
|
516
|
+
startJobsQuery(
|
|
517
|
+
args: StartJobsQueryCommandInput,
|
|
518
|
+
cb: (err: any, data?: StartJobsQueryCommandOutput) => void
|
|
519
|
+
): void;
|
|
520
|
+
startJobsQuery(
|
|
521
|
+
args: StartJobsQueryCommandInput,
|
|
522
|
+
options: __HttpHandlerOptions,
|
|
523
|
+
cb: (err: any, data?: StartJobsQueryCommandOutput) => void
|
|
524
|
+
): void;
|
|
490
525
|
tagResource(
|
|
491
526
|
args: TagResourceCommandInput,
|
|
492
527
|
options?: __HttpHandlerOptions
|
|
@@ -101,6 +101,10 @@ import {
|
|
|
101
101
|
GetJobCommandInput,
|
|
102
102
|
GetJobCommandOutput,
|
|
103
103
|
} from "./commands/GetJobCommand";
|
|
104
|
+
import {
|
|
105
|
+
GetJobsQueryResultsCommandInput,
|
|
106
|
+
GetJobsQueryResultsCommandOutput,
|
|
107
|
+
} from "./commands/GetJobsQueryResultsCommand";
|
|
104
108
|
import {
|
|
105
109
|
GetJobTemplateCommandInput,
|
|
106
110
|
GetJobTemplateCommandOutput,
|
|
@@ -150,6 +154,10 @@ import {
|
|
|
150
154
|
SearchJobsCommandInput,
|
|
151
155
|
SearchJobsCommandOutput,
|
|
152
156
|
} from "./commands/SearchJobsCommand";
|
|
157
|
+
import {
|
|
158
|
+
StartJobsQueryCommandInput,
|
|
159
|
+
StartJobsQueryCommandOutput,
|
|
160
|
+
} from "./commands/StartJobsQueryCommand";
|
|
153
161
|
import {
|
|
154
162
|
TagResourceCommandInput,
|
|
155
163
|
TagResourceCommandOutput,
|
|
@@ -193,6 +201,7 @@ export type ServiceInputTypes =
|
|
|
193
201
|
| DisassociateCertificateCommandInput
|
|
194
202
|
| GetJobCommandInput
|
|
195
203
|
| GetJobTemplateCommandInput
|
|
204
|
+
| GetJobsQueryResultsCommandInput
|
|
196
205
|
| GetPolicyCommandInput
|
|
197
206
|
| GetPresetCommandInput
|
|
198
207
|
| GetQueueCommandInput
|
|
@@ -205,6 +214,7 @@ export type ServiceInputTypes =
|
|
|
205
214
|
| ProbeCommandInput
|
|
206
215
|
| PutPolicyCommandInput
|
|
207
216
|
| SearchJobsCommandInput
|
|
217
|
+
| StartJobsQueryCommandInput
|
|
208
218
|
| TagResourceCommandInput
|
|
209
219
|
| UntagResourceCommandInput
|
|
210
220
|
| UpdateJobTemplateCommandInput
|
|
@@ -226,6 +236,7 @@ export type ServiceOutputTypes =
|
|
|
226
236
|
| DisassociateCertificateCommandOutput
|
|
227
237
|
| GetJobCommandOutput
|
|
228
238
|
| GetJobTemplateCommandOutput
|
|
239
|
+
| GetJobsQueryResultsCommandOutput
|
|
229
240
|
| GetPolicyCommandOutput
|
|
230
241
|
| GetPresetCommandOutput
|
|
231
242
|
| GetQueueCommandOutput
|
|
@@ -238,6 +249,7 @@ export type ServiceOutputTypes =
|
|
|
238
249
|
| ProbeCommandOutput
|
|
239
250
|
| PutPolicyCommandOutput
|
|
240
251
|
| SearchJobsCommandOutput
|
|
252
|
+
| StartJobsQueryCommandOutput
|
|
241
253
|
| TagResourceCommandOutput
|
|
242
254
|
| UntagResourceCommandOutput
|
|
243
255
|
| UpdateJobTemplateCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
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 {
|
|
9
|
+
GetJobsQueryResultsRequest,
|
|
10
|
+
GetJobsQueryResultsResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetJobsQueryResultsCommandInput
|
|
15
|
+
extends GetJobsQueryResultsRequest {}
|
|
16
|
+
export interface GetJobsQueryResultsCommandOutput
|
|
17
|
+
extends GetJobsQueryResultsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetJobsQueryResultsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetJobsQueryResultsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetJobsQueryResultsCommandInput,
|
|
24
|
+
GetJobsQueryResultsCommandOutput,
|
|
25
|
+
MediaConvertClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetJobsQueryResultsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetJobsQueryResultsCommandInput,
|
|
33
|
+
GetJobsQueryResultsCommandOutput,
|
|
34
|
+
MediaConvertClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetJobsQueryResultsCommand extends GetJobsQueryResultsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetJobsQueryResultsRequest;
|
|
44
|
+
output: GetJobsQueryResultsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetJobsQueryResultsCommandInput;
|
|
48
|
+
output: GetJobsQueryResultsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
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 {
|
|
9
|
+
StartJobsQueryRequest,
|
|
10
|
+
StartJobsQueryResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartJobsQueryCommandInput extends StartJobsQueryRequest {}
|
|
15
|
+
export interface StartJobsQueryCommandOutput
|
|
16
|
+
extends StartJobsQueryResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const StartJobsQueryCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StartJobsQueryCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StartJobsQueryCommandInput,
|
|
23
|
+
StartJobsQueryCommandOutput,
|
|
24
|
+
MediaConvertClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [StartJobsQueryCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartJobsQueryCommandInput,
|
|
32
|
+
StartJobsQueryCommandOutput,
|
|
33
|
+
MediaConvertClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class StartJobsQueryCommand extends StartJobsQueryCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StartJobsQueryRequest;
|
|
43
|
+
output: StartJobsQueryResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StartJobsQueryCommandInput;
|
|
47
|
+
output: StartJobsQueryCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -13,6 +13,7 @@ export * from "./DescribeEndpointsCommand";
|
|
|
13
13
|
export * from "./DisassociateCertificateCommand";
|
|
14
14
|
export * from "./GetJobCommand";
|
|
15
15
|
export * from "./GetJobTemplateCommand";
|
|
16
|
+
export * from "./GetJobsQueryResultsCommand";
|
|
16
17
|
export * from "./GetPolicyCommand";
|
|
17
18
|
export * from "./GetPresetCommand";
|
|
18
19
|
export * from "./GetQueueCommand";
|
|
@@ -25,6 +26,7 @@ export * from "./ListVersionsCommand";
|
|
|
25
26
|
export * from "./ProbeCommand";
|
|
26
27
|
export * from "./PutPolicyCommand";
|
|
27
28
|
export * from "./SearchJobsCommand";
|
|
29
|
+
export * from "./StartJobsQueryCommand";
|
|
28
30
|
export * from "./TagResourceCommand";
|
|
29
31
|
export * from "./UntagResourceCommand";
|
|
30
32
|
export * from "./UpdateJobTemplateCommand";
|
|
@@ -1171,6 +1171,7 @@ export declare const FrameMetricType: {
|
|
|
1171
1171
|
readonly PSNR: "PSNR";
|
|
1172
1172
|
readonly PSNR_HVS: "PSNR_HVS";
|
|
1173
1173
|
readonly QVBR: "QVBR";
|
|
1174
|
+
readonly SHOT_CHANGE: "SHOT_CHANGE";
|
|
1174
1175
|
readonly SSIM: "SSIM";
|
|
1175
1176
|
readonly VMAF: "VMAF";
|
|
1176
1177
|
};
|
|
@@ -1503,7 +1504,9 @@ export interface InputVideoGenerator {
|
|
|
1503
1504
|
Duration?: number | undefined;
|
|
1504
1505
|
FramerateDenominator?: number | undefined;
|
|
1505
1506
|
FramerateNumerator?: number | undefined;
|
|
1507
|
+
Height?: number | undefined;
|
|
1506
1508
|
SampleRate?: number | undefined;
|
|
1509
|
+
Width?: number | undefined;
|
|
1507
1510
|
}
|
|
1508
1511
|
export declare const VideoOverlayUnit: {
|
|
1509
1512
|
readonly PERCENTAGE: "PERCENTAGE";
|