@aws-sdk/client-mediaconvert 3.279.0 → 3.281.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 +227 -0
- package/dist-cjs/commands/GetJobCommand.js +2 -1
- package/dist-cjs/commands/GetJobTemplateCommand.js +3 -3
- package/dist-cjs/commands/GetPolicyCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_1.js +29 -21
- package/dist-cjs/models/models_2.js +17 -1
- package/dist-cjs/protocols/Aws_restJson1.js +20 -0
- package/dist-es/commands/GetJobCommand.js +2 -1
- package/dist-es/commands/GetJobTemplateCommand.js +1 -1
- package/dist-es/commands/GetPolicyCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_1.js +23 -12
- package/dist-es/models/models_2.js +12 -0
- package/dist-es/protocols/Aws_restJson1.js +20 -0
- package/dist-types/commands/AssociateCertificateCommand.d.ts +6 -0
- package/dist-types/commands/CancelJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +6 -0
- package/dist-types/commands/CreatePresetCommand.d.ts +6 -0
- package/dist-types/commands/CreateQueueCommand.d.ts +6 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +6 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +6 -0
- package/dist-types/commands/DeletePresetCommand.d.ts +6 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +6 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +6 -0
- package/dist-types/commands/GetJobCommand.d.ts +8 -1
- package/dist-types/commands/GetJobTemplateCommand.d.ts +7 -1
- package/dist-types/commands/GetPolicyCommand.d.ts +7 -2
- package/dist-types/commands/GetPresetCommand.d.ts +6 -0
- package/dist-types/commands/GetQueueCommand.d.ts +6 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +6 -0
- package/dist-types/commands/ListJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListPresetsCommand.d.ts +6 -0
- package/dist-types/commands/ListQueuesCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +6 -0
- package/dist-types/commands/UpdatePresetCommand.d.ts +6 -0
- package/dist-types/commands/UpdateQueueCommand.d.ts +6 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +3 -3
- package/dist-types/models/models_1.d.ts +46 -40
- package/dist-types/models/models_2.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +1 -2
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +26 -22
- package/dist-types/ts3.4/models/models_2.d.ts +22 -0
- package/package.json +3 -3
|
@@ -526,11 +526,11 @@ export interface MpdSettings {
|
|
|
526
526
|
*/
|
|
527
527
|
TimedMetadataBoxVersion?: MpdTimedMetadataBoxVersion | string;
|
|
528
528
|
/**
|
|
529
|
-
* Specify the event message box (eMSG) scheme ID URI (scheme_id_uri) for ID3 timed metadata in your output. For more
|
|
529
|
+
* Specify the event message box (eMSG) scheme ID URI (scheme_id_uri) for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. Leave blank to use the default value: https://aomedia.org/emsg/ID3 When you specify a value for ID3 metadata scheme ID URI, you must also set ID3 metadata (timedMetadata) to Passthrough.
|
|
530
530
|
*/
|
|
531
531
|
TimedMetadataSchemeIdUri?: string;
|
|
532
532
|
/**
|
|
533
|
-
* Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more
|
|
533
|
+
* Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. When you specify a value for ID3 Metadata Value, you must also set ID3 metadata (timedMetadata) to Passthrough.
|
|
534
534
|
*/
|
|
535
535
|
TimedMetadataValue?: string;
|
|
536
536
|
}
|
|
@@ -921,6 +921,32 @@ export declare enum H264AdaptiveQuantization {
|
|
|
921
921
|
MEDIUM = "MEDIUM",
|
|
922
922
|
OFF = "OFF"
|
|
923
923
|
}
|
|
924
|
+
export declare enum BandwidthReductionFilterSharpening {
|
|
925
|
+
HIGH = "HIGH",
|
|
926
|
+
LOW = "LOW",
|
|
927
|
+
MEDIUM = "MEDIUM",
|
|
928
|
+
OFF = "OFF"
|
|
929
|
+
}
|
|
930
|
+
export declare enum BandwidthReductionFilterStrength {
|
|
931
|
+
AUTO = "AUTO",
|
|
932
|
+
HIGH = "HIGH",
|
|
933
|
+
LOW = "LOW",
|
|
934
|
+
MEDIUM = "MEDIUM",
|
|
935
|
+
OFF = "OFF"
|
|
936
|
+
}
|
|
937
|
+
/**
|
|
938
|
+
* The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy.Outputs that use this feature incur pro-tier pricing.When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
|
|
939
|
+
*/
|
|
940
|
+
export interface BandwidthReductionFilter {
|
|
941
|
+
/**
|
|
942
|
+
* Optionally specify the level of sharpening to apply when you use the Bandwidth reduction filter. Sharpening adds contrast to the edges of your video content and can reduce softness. Keep the default value Off to apply no sharpening. Set Sharpening strength to Low to apply a minimal amount of sharpening, or High to apply a maximum amount of sharpening.
|
|
943
|
+
*/
|
|
944
|
+
Sharpening?: BandwidthReductionFilterSharpening | string;
|
|
945
|
+
/**
|
|
946
|
+
* Specify the strength of the Bandwidth reduction filter. For most workflows, we recommend that you choose Auto. Your output bandwidth will be reduced by at least 8 percent with no perceptual decrease in video quality. If your output bandwidth isn't constrained, set Filter strength to Low or Medium. Low results in minimal to no impact in perceptual quality. For more bandwidth reduction, choose High. The filter helps equalize quality between all scenes and increases video softness. We recommend that you choose High for low bitrate outputs.
|
|
947
|
+
*/
|
|
948
|
+
Strength?: BandwidthReductionFilterStrength | string;
|
|
949
|
+
}
|
|
924
950
|
export declare enum H264CodecLevel {
|
|
925
951
|
AUTO = "AUTO",
|
|
926
952
|
LEVEL_1 = "LEVEL_1",
|
|
@@ -1067,6 +1093,10 @@ export interface H264Settings {
|
|
|
1067
1093
|
* Keep the default value, Auto (AUTO), for this setting to have MediaConvert automatically apply the best types of quantization for your video content. When you want to apply your quantization settings manually, you must set H264AdaptiveQuantization to a value other than Auto (AUTO). Use this setting to specify the strength of any adaptive quantization filters that you enable. If you don't want MediaConvert to do any adaptive quantization in this transcode, set Adaptive quantization (H264AdaptiveQuantization) to Off (OFF). Related settings: The value that you choose here applies to the following settings: H264FlickerAdaptiveQuantization, H264SpatialAdaptiveQuantization, and H264TemporalAdaptiveQuantization.
|
|
1068
1094
|
*/
|
|
1069
1095
|
AdaptiveQuantization?: H264AdaptiveQuantization | string;
|
|
1096
|
+
/**
|
|
1097
|
+
* The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy.Outputs that use this feature incur pro-tier pricing.When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
|
|
1098
|
+
*/
|
|
1099
|
+
BandwidthReductionFilter?: BandwidthReductionFilter;
|
|
1070
1100
|
/**
|
|
1071
1101
|
* Specify the average bitrate in bits per second. Required for VBR and CBR. For MS Smooth outputs, bitrates must be unique when rounded down to the nearest multiple of 1000.
|
|
1072
1102
|
*/
|
|
@@ -2477,6 +2507,10 @@ export declare enum ColorSpaceConversion {
|
|
|
2477
2507
|
FORCE_P3DCI = "FORCE_P3DCI",
|
|
2478
2508
|
NONE = "NONE"
|
|
2479
2509
|
}
|
|
2510
|
+
export declare enum HDRToSDRToneMapper {
|
|
2511
|
+
PRESERVE_DETAILS = "PRESERVE_DETAILS",
|
|
2512
|
+
VIBRANT = "VIBRANT"
|
|
2513
|
+
}
|
|
2480
2514
|
export declare enum SampleRangeConversion {
|
|
2481
2515
|
LIMITED_RANGE_CLIP = "LIMITED_RANGE_CLIP",
|
|
2482
2516
|
LIMITED_RANGE_SQUEEZE = "LIMITED_RANGE_SQUEEZE",
|
|
@@ -2506,6 +2540,10 @@ export interface ColorCorrector {
|
|
|
2506
2540
|
* Use these settings when you convert to the HDR 10 color space. Specify the SMPTE ST 2086 Mastering Display Color Volume static metadata that you want signaled in the output. These values don't affect the pixel values that are encoded in the video stream. They are intended to help the downstream video player display content in a way that reflects the intentions of the the content creator. When you set Color space conversion (ColorSpaceConversion) to HDR 10 (FORCE_HDR10), these settings are required. You must set values for Max frame average light level (maxFrameAverageLightLevel) and Max content light level (maxContentLightLevel); these settings don't have a default value. The default values for the other HDR 10 metadata settings are defined by the P3D65 color space. For more information about MediaConvert HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr.
|
|
2507
2541
|
*/
|
|
2508
2542
|
Hdr10Metadata?: Hdr10Metadata;
|
|
2543
|
+
/**
|
|
2544
|
+
* Specify how MediaConvert maps brightness and colors from your HDR input to your SDR output. The mode that you select represents a creative choice, with different tradeoffs in the details and tones of your output. To maintain details in bright or saturated areas of your output: Choose Preserve details. For some sources, your SDR output may look less bright and less saturated when compared to your HDR source. MediaConvert automatically applies this mode for HLG sources, regardless of your choice. For a bright and saturated output: Choose Vibrant. We recommend that you choose this mode when any of your source content is HDR10, and for the best results when it is mastered for 1000 nits. You may notice loss of details in bright or saturated areas of your output. HDR to SDR tone mapping has no effect when your input is SDR.
|
|
2545
|
+
*/
|
|
2546
|
+
HdrToSdrToneMapper?: HDRToSDRToneMapper | string;
|
|
2509
2547
|
/**
|
|
2510
2548
|
* Hue in degrees.
|
|
2511
2549
|
*/
|
|
@@ -2687,7 +2725,7 @@ export interface NoiseReducerTemporalFilterSettings {
|
|
|
2687
2725
|
Strength?: number;
|
|
2688
2726
|
}
|
|
2689
2727
|
/**
|
|
2690
|
-
* Enable the Noise reducer
|
|
2728
|
+
* Enable the Noise reducer feature to remove noise from your video output if necessary. Enable or disable this feature for each output individually. This setting is disabled by default. When you enable Noise reducer, you must also select a value for Noise reducer filter. For AVC outputs, when you include Noise reducer, you cannot include the Bandwidth reduction filter.
|
|
2691
2729
|
*/
|
|
2692
2730
|
export interface NoiseReducer {
|
|
2693
2731
|
/**
|
|
@@ -2797,7 +2835,7 @@ export interface VideoPreprocessor {
|
|
|
2797
2835
|
*/
|
|
2798
2836
|
ImageInserter?: ImageInserter;
|
|
2799
2837
|
/**
|
|
2800
|
-
* Enable the Noise reducer
|
|
2838
|
+
* Enable the Noise reducer feature to remove noise from your video output if necessary. Enable or disable this feature for each output individually. This setting is disabled by default. When you enable Noise reducer, you must also select a value for Noise reducer filter. For AVC outputs, when you include Noise reducer, you cannot include the Bandwidth reduction filter.
|
|
2801
2839
|
*/
|
|
2802
2840
|
NoiseReducer?: NoiseReducer;
|
|
2803
2841
|
/**
|
|
@@ -3789,26 +3827,6 @@ export interface GetJobRequest {
|
|
|
3789
3827
|
*/
|
|
3790
3828
|
Id: string | undefined;
|
|
3791
3829
|
}
|
|
3792
|
-
export interface GetJobResponse {
|
|
3793
|
-
/**
|
|
3794
|
-
* Each job converts an input file into an output file or files. For more information, see the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
3795
|
-
*/
|
|
3796
|
-
Job?: Job;
|
|
3797
|
-
}
|
|
3798
|
-
export interface GetJobTemplateRequest {
|
|
3799
|
-
/**
|
|
3800
|
-
* The name of the job template.
|
|
3801
|
-
*/
|
|
3802
|
-
Name: string | undefined;
|
|
3803
|
-
}
|
|
3804
|
-
export interface GetJobTemplateResponse {
|
|
3805
|
-
/**
|
|
3806
|
-
* A job template is a pre-made set of encoding instructions that you can use to quickly create a job.
|
|
3807
|
-
*/
|
|
3808
|
-
JobTemplate?: JobTemplate;
|
|
3809
|
-
}
|
|
3810
|
-
export interface GetPolicyRequest {
|
|
3811
|
-
}
|
|
3812
3830
|
/**
|
|
3813
3831
|
* @internal
|
|
3814
3832
|
*/
|
|
@@ -3881,6 +3899,10 @@ export declare const AvcIntraSettingsFilterSensitiveLog: (obj: AvcIntraSettings)
|
|
|
3881
3899
|
* @internal
|
|
3882
3900
|
*/
|
|
3883
3901
|
export declare const FrameCaptureSettingsFilterSensitiveLog: (obj: FrameCaptureSettings) => any;
|
|
3902
|
+
/**
|
|
3903
|
+
* @internal
|
|
3904
|
+
*/
|
|
3905
|
+
export declare const BandwidthReductionFilterFilterSensitiveLog: (obj: BandwidthReductionFilter) => any;
|
|
3884
3906
|
/**
|
|
3885
3907
|
* @internal
|
|
3886
3908
|
*/
|
|
@@ -4161,19 +4183,3 @@ export declare const DisassociateCertificateResponseFilterSensitiveLog: (obj: Di
|
|
|
4161
4183
|
* @internal
|
|
4162
4184
|
*/
|
|
4163
4185
|
export declare const GetJobRequestFilterSensitiveLog: (obj: GetJobRequest) => any;
|
|
4164
|
-
/**
|
|
4165
|
-
* @internal
|
|
4166
|
-
*/
|
|
4167
|
-
export declare const GetJobResponseFilterSensitiveLog: (obj: GetJobResponse) => any;
|
|
4168
|
-
/**
|
|
4169
|
-
* @internal
|
|
4170
|
-
*/
|
|
4171
|
-
export declare const GetJobTemplateRequestFilterSensitiveLog: (obj: GetJobTemplateRequest) => any;
|
|
4172
|
-
/**
|
|
4173
|
-
* @internal
|
|
4174
|
-
*/
|
|
4175
|
-
export declare const GetJobTemplateResponseFilterSensitiveLog: (obj: GetJobTemplateResponse) => any;
|
|
4176
|
-
/**
|
|
4177
|
-
* @internal
|
|
4178
|
-
*/
|
|
4179
|
-
export declare const GetPolicyRequestFilterSensitiveLog: (obj: GetPolicyRequest) => any;
|
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
import { AccelerationSettings, HopDestination } from "./models_0";
|
|
2
2
|
import { Job, JobStatus, JobTemplate, JobTemplateSettings, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
|
|
3
|
+
export interface GetJobResponse {
|
|
4
|
+
/**
|
|
5
|
+
* Each job converts an input file into an output file or files. For more information, see the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
6
|
+
*/
|
|
7
|
+
Job?: Job;
|
|
8
|
+
}
|
|
9
|
+
export interface GetJobTemplateRequest {
|
|
10
|
+
/**
|
|
11
|
+
* The name of the job template.
|
|
12
|
+
*/
|
|
13
|
+
Name: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
export interface GetJobTemplateResponse {
|
|
16
|
+
/**
|
|
17
|
+
* A job template is a pre-made set of encoding instructions that you can use to quickly create a job.
|
|
18
|
+
*/
|
|
19
|
+
JobTemplate?: JobTemplate;
|
|
20
|
+
}
|
|
21
|
+
export interface GetPolicyRequest {
|
|
22
|
+
}
|
|
3
23
|
export declare enum InputPolicy {
|
|
4
24
|
ALLOWED = "ALLOWED",
|
|
5
25
|
DISALLOWED = "DISALLOWED"
|
|
@@ -346,6 +366,22 @@ export interface UpdateQueueResponse {
|
|
|
346
366
|
*/
|
|
347
367
|
Queue?: Queue;
|
|
348
368
|
}
|
|
369
|
+
/**
|
|
370
|
+
* @internal
|
|
371
|
+
*/
|
|
372
|
+
export declare const GetJobResponseFilterSensitiveLog: (obj: GetJobResponse) => any;
|
|
373
|
+
/**
|
|
374
|
+
* @internal
|
|
375
|
+
*/
|
|
376
|
+
export declare const GetJobTemplateRequestFilterSensitiveLog: (obj: GetJobTemplateRequest) => any;
|
|
377
|
+
/**
|
|
378
|
+
* @internal
|
|
379
|
+
*/
|
|
380
|
+
export declare const GetJobTemplateResponseFilterSensitiveLog: (obj: GetJobTemplateResponse) => any;
|
|
381
|
+
/**
|
|
382
|
+
* @internal
|
|
383
|
+
*/
|
|
384
|
+
export declare const GetPolicyRequestFilterSensitiveLog: (obj: GetPolicyRequest) => any;
|
|
349
385
|
/**
|
|
350
386
|
* @internal
|
|
351
387
|
*/
|
|
@@ -11,7 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../MediaConvertClient";
|
|
14
|
-
import { GetJobRequest
|
|
14
|
+
import { GetJobRequest } from "../models/models_1";
|
|
15
|
+
import { GetJobResponse } from "../models/models_2";
|
|
15
16
|
export interface GetJobCommandInput extends GetJobRequest {}
|
|
16
17
|
export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {}
|
|
17
18
|
export declare class GetJobCommand extends $Command<
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
GetJobTemplateRequest,
|
|
16
16
|
GetJobTemplateResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_2";
|
|
18
18
|
export interface GetJobTemplateCommandInput extends GetJobTemplateRequest {}
|
|
19
19
|
export interface GetJobTemplateCommandOutput
|
|
20
20
|
extends GetJobTemplateResponse,
|
|
@@ -11,8 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../MediaConvertClient";
|
|
14
|
-
import { GetPolicyRequest } from "../models/
|
|
15
|
-
import { GetPolicyResponse } from "../models/models_2";
|
|
14
|
+
import { GetPolicyRequest, GetPolicyResponse } from "../models/models_2";
|
|
16
15
|
export interface GetPolicyCommandInput extends GetPolicyRequest {}
|
|
17
16
|
export interface GetPolicyCommandOutput
|
|
18
17
|
extends GetPolicyResponse,
|
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region?: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|
|
@@ -487,6 +487,23 @@ export declare enum H264AdaptiveQuantization {
|
|
|
487
487
|
MEDIUM = "MEDIUM",
|
|
488
488
|
OFF = "OFF",
|
|
489
489
|
}
|
|
490
|
+
export declare enum BandwidthReductionFilterSharpening {
|
|
491
|
+
HIGH = "HIGH",
|
|
492
|
+
LOW = "LOW",
|
|
493
|
+
MEDIUM = "MEDIUM",
|
|
494
|
+
OFF = "OFF",
|
|
495
|
+
}
|
|
496
|
+
export declare enum BandwidthReductionFilterStrength {
|
|
497
|
+
AUTO = "AUTO",
|
|
498
|
+
HIGH = "HIGH",
|
|
499
|
+
LOW = "LOW",
|
|
500
|
+
MEDIUM = "MEDIUM",
|
|
501
|
+
OFF = "OFF",
|
|
502
|
+
}
|
|
503
|
+
export interface BandwidthReductionFilter {
|
|
504
|
+
Sharpening?: BandwidthReductionFilterSharpening | string;
|
|
505
|
+
Strength?: BandwidthReductionFilterStrength | string;
|
|
506
|
+
}
|
|
490
507
|
export declare enum H264CodecLevel {
|
|
491
508
|
AUTO = "AUTO",
|
|
492
509
|
LEVEL_1 = "LEVEL_1",
|
|
@@ -615,6 +632,7 @@ export declare enum H264UnregisteredSeiTimecode {
|
|
|
615
632
|
}
|
|
616
633
|
export interface H264Settings {
|
|
617
634
|
AdaptiveQuantization?: H264AdaptiveQuantization | string;
|
|
635
|
+
BandwidthReductionFilter?: BandwidthReductionFilter;
|
|
618
636
|
Bitrate?: number;
|
|
619
637
|
CodecLevel?: H264CodecLevel | string;
|
|
620
638
|
CodecProfile?: H264CodecProfile | string;
|
|
@@ -1329,6 +1347,10 @@ export declare enum ColorSpaceConversion {
|
|
|
1329
1347
|
FORCE_P3DCI = "FORCE_P3DCI",
|
|
1330
1348
|
NONE = "NONE",
|
|
1331
1349
|
}
|
|
1350
|
+
export declare enum HDRToSDRToneMapper {
|
|
1351
|
+
PRESERVE_DETAILS = "PRESERVE_DETAILS",
|
|
1352
|
+
VIBRANT = "VIBRANT",
|
|
1353
|
+
}
|
|
1332
1354
|
export declare enum SampleRangeConversion {
|
|
1333
1355
|
LIMITED_RANGE_CLIP = "LIMITED_RANGE_CLIP",
|
|
1334
1356
|
LIMITED_RANGE_SQUEEZE = "LIMITED_RANGE_SQUEEZE",
|
|
@@ -1340,6 +1362,7 @@ export interface ColorCorrector {
|
|
|
1340
1362
|
ColorSpaceConversion?: ColorSpaceConversion | string;
|
|
1341
1363
|
Contrast?: number;
|
|
1342
1364
|
Hdr10Metadata?: Hdr10Metadata;
|
|
1365
|
+
HdrToSdrToneMapper?: HDRToSDRToneMapper | string;
|
|
1343
1366
|
Hue?: number;
|
|
1344
1367
|
SampleRangeConversion?: SampleRangeConversion | string;
|
|
1345
1368
|
Saturation?: number;
|
|
@@ -1831,16 +1854,6 @@ export interface DisassociateCertificateResponse {}
|
|
|
1831
1854
|
export interface GetJobRequest {
|
|
1832
1855
|
Id: string | undefined;
|
|
1833
1856
|
}
|
|
1834
|
-
export interface GetJobResponse {
|
|
1835
|
-
Job?: Job;
|
|
1836
|
-
}
|
|
1837
|
-
export interface GetJobTemplateRequest {
|
|
1838
|
-
Name: string | undefined;
|
|
1839
|
-
}
|
|
1840
|
-
export interface GetJobTemplateResponse {
|
|
1841
|
-
JobTemplate?: JobTemplate;
|
|
1842
|
-
}
|
|
1843
|
-
export interface GetPolicyRequest {}
|
|
1844
1857
|
export declare const DvbSdtSettingsFilterSensitiveLog: (
|
|
1845
1858
|
obj: DvbSdtSettings
|
|
1846
1859
|
) => any;
|
|
@@ -1879,6 +1892,9 @@ export declare const AvcIntraSettingsFilterSensitiveLog: (
|
|
|
1879
1892
|
export declare const FrameCaptureSettingsFilterSensitiveLog: (
|
|
1880
1893
|
obj: FrameCaptureSettings
|
|
1881
1894
|
) => any;
|
|
1895
|
+
export declare const BandwidthReductionFilterFilterSensitiveLog: (
|
|
1896
|
+
obj: BandwidthReductionFilter
|
|
1897
|
+
) => any;
|
|
1882
1898
|
export declare const H264QvbrSettingsFilterSensitiveLog: (
|
|
1883
1899
|
obj: H264QvbrSettings
|
|
1884
1900
|
) => any;
|
|
@@ -2051,15 +2067,3 @@ export declare const DisassociateCertificateResponseFilterSensitiveLog: (
|
|
|
2051
2067
|
export declare const GetJobRequestFilterSensitiveLog: (
|
|
2052
2068
|
obj: GetJobRequest
|
|
2053
2069
|
) => any;
|
|
2054
|
-
export declare const GetJobResponseFilterSensitiveLog: (
|
|
2055
|
-
obj: GetJobResponse
|
|
2056
|
-
) => any;
|
|
2057
|
-
export declare const GetJobTemplateRequestFilterSensitiveLog: (
|
|
2058
|
-
obj: GetJobTemplateRequest
|
|
2059
|
-
) => any;
|
|
2060
|
-
export declare const GetJobTemplateResponseFilterSensitiveLog: (
|
|
2061
|
-
obj: GetJobTemplateResponse
|
|
2062
|
-
) => any;
|
|
2063
|
-
export declare const GetPolicyRequestFilterSensitiveLog: (
|
|
2064
|
-
obj: GetPolicyRequest
|
|
2065
|
-
) => any;
|
|
@@ -11,6 +11,16 @@ import {
|
|
|
11
11
|
ReservationPlanSettings,
|
|
12
12
|
StatusUpdateInterval,
|
|
13
13
|
} from "./models_1";
|
|
14
|
+
export interface GetJobResponse {
|
|
15
|
+
Job?: Job;
|
|
16
|
+
}
|
|
17
|
+
export interface GetJobTemplateRequest {
|
|
18
|
+
Name: string | undefined;
|
|
19
|
+
}
|
|
20
|
+
export interface GetJobTemplateResponse {
|
|
21
|
+
JobTemplate?: JobTemplate;
|
|
22
|
+
}
|
|
23
|
+
export interface GetPolicyRequest {}
|
|
14
24
|
export declare enum InputPolicy {
|
|
15
25
|
ALLOWED = "ALLOWED",
|
|
16
26
|
DISALLOWED = "DISALLOWED",
|
|
@@ -154,6 +164,18 @@ export interface UpdateQueueRequest {
|
|
|
154
164
|
export interface UpdateQueueResponse {
|
|
155
165
|
Queue?: Queue;
|
|
156
166
|
}
|
|
167
|
+
export declare const GetJobResponseFilterSensitiveLog: (
|
|
168
|
+
obj: GetJobResponse
|
|
169
|
+
) => any;
|
|
170
|
+
export declare const GetJobTemplateRequestFilterSensitiveLog: (
|
|
171
|
+
obj: GetJobTemplateRequest
|
|
172
|
+
) => any;
|
|
173
|
+
export declare const GetJobTemplateResponseFilterSensitiveLog: (
|
|
174
|
+
obj: GetJobTemplateResponse
|
|
175
|
+
) => any;
|
|
176
|
+
export declare const GetPolicyRequestFilterSensitiveLog: (
|
|
177
|
+
obj: GetPolicyRequest
|
|
178
|
+
) => any;
|
|
157
179
|
export declare const PolicyFilterSensitiveLog: (obj: Policy) => any;
|
|
158
180
|
export declare const GetPolicyResponseFilterSensitiveLog: (
|
|
159
181
|
obj: GetPolicyResponse
|
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.281.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.281.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.272.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.281.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.272.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|