@aws-sdk/client-mediaconvert 3.484.0 → 3.489.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +1 -5
- package/dist-cjs/models/models_1.js +41 -5
- package/dist-cjs/protocols/Aws_restJson1.js +85 -0
- package/dist-es/models/models_0.js +0 -4
- package/dist-es/models/models_1.js +36 -0
- package/dist-es/protocols/Aws_restJson1.js +85 -0
- package/dist-types/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +49 -5
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +49 -5
- package/dist-types/commands/CreatePresetCommand.d.ts +29 -5
- package/dist-types/commands/GetJobCommand.d.ts +24 -2
- package/dist-types/commands/GetJobTemplateCommand.d.ts +24 -2
- package/dist-types/commands/GetPresetCommand.d.ts +14 -2
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +24 -2
- package/dist-types/commands/ListJobsCommand.d.ts +24 -2
- package/dist-types/commands/ListPresetsCommand.d.ts +14 -2
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +48 -4
- package/dist-types/commands/UpdatePresetCommand.d.ts +28 -4
- package/dist-types/models/models_0.d.ts +40 -16
- package/dist-types/models/models_1.d.ts +174 -224
- package/dist-types/models/models_2.d.ts +223 -2
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +8 -6
- package/dist-types/ts3.4/models/models_1.d.ts +68 -53
- package/dist-types/ts3.4/models/models_2.d.ts +62 -2
- package/package.json +34 -34
|
@@ -1,5 +1,226 @@
|
|
|
1
|
-
import { AccelerationSettings, Endpoint, HopDestination } from "./models_0";
|
|
2
|
-
import { Job, JobStatus, JobTemplate, JobTemplateSettings, Preset, PresetSettings, PricingPlan, Queue, QueueStatus,
|
|
1
|
+
import { AccelerationSettings, BillingTagsSource, Endpoint, HopDestination } from "./models_0";
|
|
2
|
+
import { Commitment, Job, JobSettings, JobStatus, JobTemplate, JobTemplateSettings, Preset, PresetSettings, PricingPlan, Queue, QueueStatus, RenewalType, SimulateReservedQueue, StatusUpdateInterval } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface CancelJobRequest {
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
* The Job ID of the job to be cancelled.
|
|
10
|
+
*/
|
|
11
|
+
Id: string | undefined;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export interface CancelJobResponse {
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export interface CreateJobRequest {
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
* Optional. Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide.
|
|
25
|
+
*/
|
|
26
|
+
AccelerationSettings?: AccelerationSettings;
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* Optional. Choose a tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up. Any transcoding outputs that don't have an associated tag will appear in your billing report unsorted. If you don't choose a valid value for this field, your job outputs will appear on the billing report unsorted.
|
|
30
|
+
*/
|
|
31
|
+
BillingTagsSource?: BillingTagsSource;
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
* Prevent duplicate jobs from being created and ensure idempotency for your requests. A client request token can be any string that includes up to 64 ASCII characters. If you reuse a client request token within one minute of a successful request, the API returns the job details of the original request instead. For more information see https://docs.aws.amazon.com/mediaconvert/latest/apireference/idempotency.html.
|
|
35
|
+
*/
|
|
36
|
+
ClientRequestToken?: string;
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
* Optional. Use queue hopping to avoid overly long waits in the backlog of the queue that you submit your job to. Specify an alternate queue and the maximum time that your job will wait in the initial queue before hopping. For more information about this feature, see the AWS Elemental MediaConvert User Guide.
|
|
40
|
+
*/
|
|
41
|
+
HopDestinations?: HopDestination[];
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
* Optional. When you create a job, you can either specify a job template or specify the transcoding settings individually.
|
|
45
|
+
*/
|
|
46
|
+
JobTemplate?: string;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
* Optional. Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0.
|
|
50
|
+
*/
|
|
51
|
+
Priority?: number;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* Optional. When you create a job, you can specify a queue to send it to. If you don't specify, the job will go to the default queue. For more about queues, see the User Guide topic at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html.
|
|
55
|
+
*/
|
|
56
|
+
Queue?: string;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
* Required. The IAM role you use for creating this job. For details about permissions, see the User Guide topic at the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/iam-role.html.
|
|
60
|
+
*/
|
|
61
|
+
Role: string | undefined;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
* JobSettings contains all the transcode settings for a job.
|
|
65
|
+
*/
|
|
66
|
+
Settings: JobSettings | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
* Optional. Enable this setting when you run a test job to estimate how many reserved transcoding slots (RTS) you need. When this is enabled, MediaConvert runs your job from an on-demand queue with similar performance to what you will see with one RTS in a reserved queue. This setting is disabled by default.
|
|
70
|
+
*/
|
|
71
|
+
SimulateReservedQueue?: SimulateReservedQueue;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
* Optional. Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
|
|
75
|
+
*/
|
|
76
|
+
StatusUpdateInterval?: StatusUpdateInterval;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
* Optional. The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key. Use standard AWS tags on your job for automatic integration with AWS services and for custom integrations and workflows.
|
|
80
|
+
*/
|
|
81
|
+
Tags?: Record<string, string>;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
* Optional. User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs. Use only for existing integrations or workflows that rely on job metadata tags. Otherwise, we recommend that you use standard AWS tags.
|
|
85
|
+
*/
|
|
86
|
+
UserMetadata?: Record<string, string>;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export interface CreateJobResponse {
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
* 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
|
|
95
|
+
*/
|
|
96
|
+
Job?: Job;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export interface CreateJobTemplateRequest {
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
* Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide.
|
|
105
|
+
*/
|
|
106
|
+
AccelerationSettings?: AccelerationSettings;
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
* Optional. A category for the job template you are creating
|
|
110
|
+
*/
|
|
111
|
+
Category?: string;
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
* Optional. A description of the job template you are creating.
|
|
115
|
+
*/
|
|
116
|
+
Description?: string;
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
* Optional. Use queue hopping to avoid overly long waits in the backlog of the queue that you submit your job to. Specify an alternate queue and the maximum time that your job will wait in the initial queue before hopping. For more information about this feature, see the AWS Elemental MediaConvert User Guide.
|
|
120
|
+
*/
|
|
121
|
+
HopDestinations?: HopDestination[];
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
* The name of the job template you are creating.
|
|
125
|
+
*/
|
|
126
|
+
Name: string | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
* Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0.
|
|
130
|
+
*/
|
|
131
|
+
Priority?: number;
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
* Optional. The queue that jobs created from this template are assigned to. If you don't specify this, jobs will go to the default queue.
|
|
135
|
+
*/
|
|
136
|
+
Queue?: string;
|
|
137
|
+
/**
|
|
138
|
+
* @public
|
|
139
|
+
* JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.
|
|
140
|
+
*/
|
|
141
|
+
Settings: JobTemplateSettings | undefined;
|
|
142
|
+
/**
|
|
143
|
+
* @public
|
|
144
|
+
* Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
|
|
145
|
+
*/
|
|
146
|
+
StatusUpdateInterval?: StatusUpdateInterval;
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
* The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
|
|
150
|
+
*/
|
|
151
|
+
Tags?: Record<string, string>;
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
export interface CreateJobTemplateResponse {
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
* A job template is a pre-made set of encoding instructions that you can use to quickly create a job.
|
|
160
|
+
*/
|
|
161
|
+
JobTemplate?: JobTemplate;
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
export interface CreatePresetRequest {
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
* Optional. A category for the preset you are creating.
|
|
170
|
+
*/
|
|
171
|
+
Category?: string;
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* Optional. A description of the preset you are creating.
|
|
175
|
+
*/
|
|
176
|
+
Description?: string;
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
* The name of the preset you are creating.
|
|
180
|
+
*/
|
|
181
|
+
Name: string | undefined;
|
|
182
|
+
/**
|
|
183
|
+
* @public
|
|
184
|
+
* Settings for preset
|
|
185
|
+
*/
|
|
186
|
+
Settings: PresetSettings | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
* The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
|
|
190
|
+
*/
|
|
191
|
+
Tags?: Record<string, string>;
|
|
192
|
+
}
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
export interface CreatePresetResponse {
|
|
197
|
+
/**
|
|
198
|
+
* @public
|
|
199
|
+
* A preset is a collection of preconfigured media conversion settings that you want MediaConvert to apply to the output during the conversion process.
|
|
200
|
+
*/
|
|
201
|
+
Preset?: Preset;
|
|
202
|
+
}
|
|
203
|
+
/**
|
|
204
|
+
* @public
|
|
205
|
+
* Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.
|
|
206
|
+
*/
|
|
207
|
+
export interface ReservationPlanSettings {
|
|
208
|
+
/**
|
|
209
|
+
* @public
|
|
210
|
+
* The length of the term of your reserved queue pricing plan commitment.
|
|
211
|
+
*/
|
|
212
|
+
Commitment: Commitment | undefined;
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
* Specifies whether the term of your reserved queue pricing plan is automatically extended (AUTO_RENEW) or expires (EXPIRE) at the end of the term. When your term is auto renewed, you extend your commitment by 12 months from the auto renew date. You can cancel this commitment.
|
|
216
|
+
*/
|
|
217
|
+
RenewalType: RenewalType | undefined;
|
|
218
|
+
/**
|
|
219
|
+
* @public
|
|
220
|
+
* Specifies the number of reserved transcode slots (RTS) for this queue. The number of RTS determines how many jobs the queue can process in parallel; each RTS can process one job at a time. You can't decrease the number of RTS in your reserved queue. You can increase the number of RTS by extending your existing commitment with a new 12-month commitment for the larger number. The new commitment begins when you purchase the additional capacity. You can't cancel your commitment or revert to your original commitment after you increase the capacity.
|
|
221
|
+
*/
|
|
222
|
+
ReservedSlots: number | undefined;
|
|
223
|
+
}
|
|
3
224
|
/**
|
|
4
225
|
* @public
|
|
5
226
|
*/
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../MediaConvertClient";
|
|
8
|
-
import { CancelJobRequest, CancelJobResponse } from "../models/
|
|
8
|
+
import { CancelJobRequest, CancelJobResponse } from "../models/models_2";
|
|
9
9
|
export { __MetadataBearer, $Command };
|
|
10
10
|
export interface CancelJobCommandInput extends CancelJobRequest {}
|
|
11
11
|
export interface CancelJobCommandOutput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../MediaConvertClient";
|
|
8
|
-
import { CreateJobRequest, CreateJobResponse } from "../models/
|
|
8
|
+
import { CreateJobRequest, CreateJobResponse } from "../models/models_2";
|
|
9
9
|
export { __MetadataBearer, $Command };
|
|
10
10
|
export interface CreateJobCommandInput extends CreateJobRequest {}
|
|
11
11
|
export interface CreateJobCommandOutput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
CreateJobTemplateRequest,
|
|
10
10
|
CreateJobTemplateResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer, $Command };
|
|
13
13
|
export interface CreateJobTemplateCommandInput
|
|
14
14
|
extends CreateJobTemplateRequest {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../MediaConvertClient";
|
|
8
|
-
import { CreatePresetRequest, CreatePresetResponse } from "../models/
|
|
8
|
+
import { CreatePresetRequest, CreatePresetResponse } from "../models/models_2";
|
|
9
9
|
export { __MetadataBearer, $Command };
|
|
10
10
|
export interface CreatePresetCommandInput extends CreatePresetRequest {}
|
|
11
11
|
export interface CreatePresetCommandOutput
|
|
@@ -1471,6 +1471,7 @@ export interface VideoSelector {
|
|
|
1471
1471
|
ColorSpaceUsage?: ColorSpaceUsage;
|
|
1472
1472
|
EmbeddedTimecodeOverride?: EmbeddedTimecodeOverride;
|
|
1473
1473
|
Hdr10Metadata?: Hdr10Metadata;
|
|
1474
|
+
MaxLuminance?: number;
|
|
1474
1475
|
PadVideo?: PadVideo;
|
|
1475
1476
|
Pid?: number;
|
|
1476
1477
|
ProgramNumber?: number;
|
|
@@ -1582,6 +1583,13 @@ export interface QueueTransition {
|
|
|
1582
1583
|
export interface AvailBlanking {
|
|
1583
1584
|
AvailBlankingImage?: string;
|
|
1584
1585
|
}
|
|
1586
|
+
export interface ColorConversion3DLUTSetting {
|
|
1587
|
+
FileInput?: string;
|
|
1588
|
+
InputColorSpace?: ColorSpace;
|
|
1589
|
+
InputMasteringLuminance?: number;
|
|
1590
|
+
OutputColorSpace?: ColorSpace;
|
|
1591
|
+
OutputMasteringLuminance?: number;
|
|
1592
|
+
}
|
|
1585
1593
|
export interface EsamManifestConfirmConditionNotification {
|
|
1586
1594
|
MccXml?: string;
|
|
1587
1595
|
}
|
|
@@ -2326,9 +2334,3 @@ export declare const CmfcScte35Esam: {
|
|
|
2326
2334
|
};
|
|
2327
2335
|
export type CmfcScte35Esam =
|
|
2328
2336
|
(typeof CmfcScte35Esam)[keyof typeof CmfcScte35Esam];
|
|
2329
|
-
export declare const CmfcScte35Source: {
|
|
2330
|
-
readonly NONE: "NONE";
|
|
2331
|
-
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
2332
|
-
};
|
|
2333
|
-
export type CmfcScte35Source =
|
|
2334
|
-
(typeof CmfcScte35Source)[keyof typeof CmfcScte35Source];
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
CmfcKlvMetadata,
|
|
17
17
|
CmfcManifestMetadataSignaling,
|
|
18
18
|
CmfcScte35Esam,
|
|
19
|
-
|
|
19
|
+
ColorConversion3DLUTSetting,
|
|
20
20
|
EsamSettings,
|
|
21
21
|
ExtendedDataServices,
|
|
22
22
|
Hdr10Metadata,
|
|
@@ -36,6 +36,12 @@ import {
|
|
|
36
36
|
QueueTransition,
|
|
37
37
|
Rectangle,
|
|
38
38
|
} from "./models_0";
|
|
39
|
+
export declare const CmfcScte35Source: {
|
|
40
|
+
readonly NONE: "NONE";
|
|
41
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
42
|
+
};
|
|
43
|
+
export type CmfcScte35Source =
|
|
44
|
+
(typeof CmfcScte35Source)[keyof typeof CmfcScte35Source];
|
|
39
45
|
export declare const CmfcTimedMetadata: {
|
|
40
46
|
readonly NONE: "NONE";
|
|
41
47
|
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
@@ -76,6 +82,7 @@ export declare const ContainerType: {
|
|
|
76
82
|
readonly MXF: "MXF";
|
|
77
83
|
readonly RAW: "RAW";
|
|
78
84
|
readonly WEBM: "WEBM";
|
|
85
|
+
readonly Y4M: "Y4M";
|
|
79
86
|
};
|
|
80
87
|
export type ContainerType = (typeof ContainerType)[keyof typeof ContainerType];
|
|
81
88
|
export declare const F4vMoovPlacement: {
|
|
@@ -666,6 +673,7 @@ export declare const VideoCodec: {
|
|
|
666
673
|
readonly MPEG2: "MPEG2";
|
|
667
674
|
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
668
675
|
readonly PRORES: "PRORES";
|
|
676
|
+
readonly UNCOMPRESSED: "UNCOMPRESSED";
|
|
669
677
|
readonly VC3: "VC3";
|
|
670
678
|
readonly VP8: "VP8";
|
|
671
679
|
readonly VP9: "VP9";
|
|
@@ -1400,6 +1408,61 @@ export interface ProresSettings {
|
|
|
1400
1408
|
SlowPal?: ProresSlowPal;
|
|
1401
1409
|
Telecine?: ProresTelecine;
|
|
1402
1410
|
}
|
|
1411
|
+
export declare const UncompressedFourcc: {
|
|
1412
|
+
readonly I420: "I420";
|
|
1413
|
+
readonly I422: "I422";
|
|
1414
|
+
readonly I444: "I444";
|
|
1415
|
+
};
|
|
1416
|
+
export type UncompressedFourcc =
|
|
1417
|
+
(typeof UncompressedFourcc)[keyof typeof UncompressedFourcc];
|
|
1418
|
+
export declare const UncompressedFramerateControl: {
|
|
1419
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1420
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1421
|
+
};
|
|
1422
|
+
export type UncompressedFramerateControl =
|
|
1423
|
+
(typeof UncompressedFramerateControl)[keyof typeof UncompressedFramerateControl];
|
|
1424
|
+
export declare const UncompressedFramerateConversionAlgorithm: {
|
|
1425
|
+
readonly DUPLICATE_DROP: "DUPLICATE_DROP";
|
|
1426
|
+
readonly FRAMEFORMER: "FRAMEFORMER";
|
|
1427
|
+
readonly INTERPOLATE: "INTERPOLATE";
|
|
1428
|
+
};
|
|
1429
|
+
export type UncompressedFramerateConversionAlgorithm =
|
|
1430
|
+
(typeof UncompressedFramerateConversionAlgorithm)[keyof typeof UncompressedFramerateConversionAlgorithm];
|
|
1431
|
+
export declare const UncompressedInterlaceMode: {
|
|
1432
|
+
readonly INTERLACED: "INTERLACED";
|
|
1433
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
1434
|
+
};
|
|
1435
|
+
export type UncompressedInterlaceMode =
|
|
1436
|
+
(typeof UncompressedInterlaceMode)[keyof typeof UncompressedInterlaceMode];
|
|
1437
|
+
export declare const UncompressedScanTypeConversionMode: {
|
|
1438
|
+
readonly INTERLACED: "INTERLACED";
|
|
1439
|
+
readonly INTERLACED_OPTIMIZE: "INTERLACED_OPTIMIZE";
|
|
1440
|
+
};
|
|
1441
|
+
export type UncompressedScanTypeConversionMode =
|
|
1442
|
+
(typeof UncompressedScanTypeConversionMode)[keyof typeof UncompressedScanTypeConversionMode];
|
|
1443
|
+
export declare const UncompressedSlowPal: {
|
|
1444
|
+
readonly DISABLED: "DISABLED";
|
|
1445
|
+
readonly ENABLED: "ENABLED";
|
|
1446
|
+
};
|
|
1447
|
+
export type UncompressedSlowPal =
|
|
1448
|
+
(typeof UncompressedSlowPal)[keyof typeof UncompressedSlowPal];
|
|
1449
|
+
export declare const UncompressedTelecine: {
|
|
1450
|
+
readonly HARD: "HARD";
|
|
1451
|
+
readonly NONE: "NONE";
|
|
1452
|
+
};
|
|
1453
|
+
export type UncompressedTelecine =
|
|
1454
|
+
(typeof UncompressedTelecine)[keyof typeof UncompressedTelecine];
|
|
1455
|
+
export interface UncompressedSettings {
|
|
1456
|
+
Fourcc?: UncompressedFourcc;
|
|
1457
|
+
FramerateControl?: UncompressedFramerateControl;
|
|
1458
|
+
FramerateConversionAlgorithm?: UncompressedFramerateConversionAlgorithm;
|
|
1459
|
+
FramerateDenominator?: number;
|
|
1460
|
+
FramerateNumerator?: number;
|
|
1461
|
+
InterlaceMode?: UncompressedInterlaceMode;
|
|
1462
|
+
ScanTypeConversionMode?: UncompressedScanTypeConversionMode;
|
|
1463
|
+
SlowPal?: UncompressedSlowPal;
|
|
1464
|
+
Telecine?: UncompressedTelecine;
|
|
1465
|
+
}
|
|
1403
1466
|
export declare const Vc3FramerateControl: {
|
|
1404
1467
|
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1405
1468
|
readonly SPECIFIED: "SPECIFIED";
|
|
@@ -1735,6 +1798,7 @@ export interface VideoCodecSettings {
|
|
|
1735
1798
|
H265Settings?: H265Settings;
|
|
1736
1799
|
Mpeg2Settings?: Mpeg2Settings;
|
|
1737
1800
|
ProresSettings?: ProresSettings;
|
|
1801
|
+
UncompressedSettings?: UncompressedSettings;
|
|
1738
1802
|
Vc3Settings?: Vc3Settings;
|
|
1739
1803
|
Vp8Settings?: Vp8Settings;
|
|
1740
1804
|
Vp9Settings?: Vp9Settings;
|
|
@@ -1811,6 +1875,7 @@ export interface ColorCorrector {
|
|
|
1811
1875
|
Hdr10Metadata?: Hdr10Metadata;
|
|
1812
1876
|
HdrToSdrToneMapper?: HDRToSDRToneMapper;
|
|
1813
1877
|
Hue?: number;
|
|
1878
|
+
MaxLuminance?: number;
|
|
1814
1879
|
SampleRangeConversion?: SampleRangeConversion;
|
|
1815
1880
|
Saturation?: number;
|
|
1816
1881
|
SdrReferenceWhiteLevel?: number;
|
|
@@ -2021,6 +2086,7 @@ export interface TimedMetadataInsertion {
|
|
|
2021
2086
|
export interface JobSettings {
|
|
2022
2087
|
AdAvailOffset?: number;
|
|
2023
2088
|
AvailBlanking?: AvailBlanking;
|
|
2089
|
+
ColorConversion3DLUTSettings?: ColorConversion3DLUTSetting[];
|
|
2024
2090
|
Esam?: EsamSettings;
|
|
2025
2091
|
ExtendedDataServices?: ExtendedDataServices;
|
|
2026
2092
|
FollowSource?: number;
|
|
@@ -2107,6 +2173,7 @@ export interface Job {
|
|
|
2107
2173
|
export interface JobTemplateSettings {
|
|
2108
2174
|
AdAvailOffset?: number;
|
|
2109
2175
|
AvailBlanking?: AvailBlanking;
|
|
2176
|
+
ColorConversion3DLUTSettings?: ColorConversion3DLUTSetting[];
|
|
2110
2177
|
Esam?: EsamSettings;
|
|
2111
2178
|
ExtendedDataServices?: ExtendedDataServices;
|
|
2112
2179
|
FollowSource?: number;
|
|
@@ -2247,55 +2314,3 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
2247
2314
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
2248
2315
|
);
|
|
2249
2316
|
}
|
|
2250
|
-
export interface CancelJobRequest {
|
|
2251
|
-
Id: string | undefined;
|
|
2252
|
-
}
|
|
2253
|
-
export interface CancelJobResponse {}
|
|
2254
|
-
export interface CreateJobRequest {
|
|
2255
|
-
AccelerationSettings?: AccelerationSettings;
|
|
2256
|
-
BillingTagsSource?: BillingTagsSource;
|
|
2257
|
-
ClientRequestToken?: string;
|
|
2258
|
-
HopDestinations?: HopDestination[];
|
|
2259
|
-
JobTemplate?: string;
|
|
2260
|
-
Priority?: number;
|
|
2261
|
-
Queue?: string;
|
|
2262
|
-
Role: string | undefined;
|
|
2263
|
-
Settings: JobSettings | undefined;
|
|
2264
|
-
SimulateReservedQueue?: SimulateReservedQueue;
|
|
2265
|
-
StatusUpdateInterval?: StatusUpdateInterval;
|
|
2266
|
-
Tags?: Record<string, string>;
|
|
2267
|
-
UserMetadata?: Record<string, string>;
|
|
2268
|
-
}
|
|
2269
|
-
export interface CreateJobResponse {
|
|
2270
|
-
Job?: Job;
|
|
2271
|
-
}
|
|
2272
|
-
export interface CreateJobTemplateRequest {
|
|
2273
|
-
AccelerationSettings?: AccelerationSettings;
|
|
2274
|
-
Category?: string;
|
|
2275
|
-
Description?: string;
|
|
2276
|
-
HopDestinations?: HopDestination[];
|
|
2277
|
-
Name: string | undefined;
|
|
2278
|
-
Priority?: number;
|
|
2279
|
-
Queue?: string;
|
|
2280
|
-
Settings: JobTemplateSettings | undefined;
|
|
2281
|
-
StatusUpdateInterval?: StatusUpdateInterval;
|
|
2282
|
-
Tags?: Record<string, string>;
|
|
2283
|
-
}
|
|
2284
|
-
export interface CreateJobTemplateResponse {
|
|
2285
|
-
JobTemplate?: JobTemplate;
|
|
2286
|
-
}
|
|
2287
|
-
export interface CreatePresetRequest {
|
|
2288
|
-
Category?: string;
|
|
2289
|
-
Description?: string;
|
|
2290
|
-
Name: string | undefined;
|
|
2291
|
-
Settings: PresetSettings | undefined;
|
|
2292
|
-
Tags?: Record<string, string>;
|
|
2293
|
-
}
|
|
2294
|
-
export interface CreatePresetResponse {
|
|
2295
|
-
Preset?: Preset;
|
|
2296
|
-
}
|
|
2297
|
-
export interface ReservationPlanSettings {
|
|
2298
|
-
Commitment: Commitment | undefined;
|
|
2299
|
-
RenewalType: RenewalType | undefined;
|
|
2300
|
-
ReservedSlots: number | undefined;
|
|
2301
|
-
}
|
|
@@ -1,6 +1,13 @@
|
|
|
1
|
-
import { AccelerationSettings, Endpoint, HopDestination } from "./models_0";
|
|
2
1
|
import {
|
|
2
|
+
AccelerationSettings,
|
|
3
|
+
BillingTagsSource,
|
|
4
|
+
Endpoint,
|
|
5
|
+
HopDestination,
|
|
6
|
+
} from "./models_0";
|
|
7
|
+
import {
|
|
8
|
+
Commitment,
|
|
3
9
|
Job,
|
|
10
|
+
JobSettings,
|
|
4
11
|
JobStatus,
|
|
5
12
|
JobTemplate,
|
|
6
13
|
JobTemplateSettings,
|
|
@@ -9,9 +16,62 @@ import {
|
|
|
9
16
|
PricingPlan,
|
|
10
17
|
Queue,
|
|
11
18
|
QueueStatus,
|
|
12
|
-
|
|
19
|
+
RenewalType,
|
|
20
|
+
SimulateReservedQueue,
|
|
13
21
|
StatusUpdateInterval,
|
|
14
22
|
} from "./models_1";
|
|
23
|
+
export interface CancelJobRequest {
|
|
24
|
+
Id: string | undefined;
|
|
25
|
+
}
|
|
26
|
+
export interface CancelJobResponse {}
|
|
27
|
+
export interface CreateJobRequest {
|
|
28
|
+
AccelerationSettings?: AccelerationSettings;
|
|
29
|
+
BillingTagsSource?: BillingTagsSource;
|
|
30
|
+
ClientRequestToken?: string;
|
|
31
|
+
HopDestinations?: HopDestination[];
|
|
32
|
+
JobTemplate?: string;
|
|
33
|
+
Priority?: number;
|
|
34
|
+
Queue?: string;
|
|
35
|
+
Role: string | undefined;
|
|
36
|
+
Settings: JobSettings | undefined;
|
|
37
|
+
SimulateReservedQueue?: SimulateReservedQueue;
|
|
38
|
+
StatusUpdateInterval?: StatusUpdateInterval;
|
|
39
|
+
Tags?: Record<string, string>;
|
|
40
|
+
UserMetadata?: Record<string, string>;
|
|
41
|
+
}
|
|
42
|
+
export interface CreateJobResponse {
|
|
43
|
+
Job?: Job;
|
|
44
|
+
}
|
|
45
|
+
export interface CreateJobTemplateRequest {
|
|
46
|
+
AccelerationSettings?: AccelerationSettings;
|
|
47
|
+
Category?: string;
|
|
48
|
+
Description?: string;
|
|
49
|
+
HopDestinations?: HopDestination[];
|
|
50
|
+
Name: string | undefined;
|
|
51
|
+
Priority?: number;
|
|
52
|
+
Queue?: string;
|
|
53
|
+
Settings: JobTemplateSettings | undefined;
|
|
54
|
+
StatusUpdateInterval?: StatusUpdateInterval;
|
|
55
|
+
Tags?: Record<string, string>;
|
|
56
|
+
}
|
|
57
|
+
export interface CreateJobTemplateResponse {
|
|
58
|
+
JobTemplate?: JobTemplate;
|
|
59
|
+
}
|
|
60
|
+
export interface CreatePresetRequest {
|
|
61
|
+
Category?: string;
|
|
62
|
+
Description?: string;
|
|
63
|
+
Name: string | undefined;
|
|
64
|
+
Settings: PresetSettings | undefined;
|
|
65
|
+
Tags?: Record<string, string>;
|
|
66
|
+
}
|
|
67
|
+
export interface CreatePresetResponse {
|
|
68
|
+
Preset?: Preset;
|
|
69
|
+
}
|
|
70
|
+
export interface ReservationPlanSettings {
|
|
71
|
+
Commitment: Commitment | undefined;
|
|
72
|
+
RenewalType: RenewalType | undefined;
|
|
73
|
+
ReservedSlots: number | undefined;
|
|
74
|
+
}
|
|
15
75
|
export interface CreateQueueRequest {
|
|
16
76
|
Description?: string;
|
|
17
77
|
Name: string | undefined;
|
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.489.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,42 +20,42 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/core": "^1.2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^2.3.
|
|
39
|
-
"@smithy/hash-node": "^2.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.
|
|
43
|
-
"@smithy/middleware-retry": "^2.0.
|
|
44
|
-
"@smithy/middleware-serde": "^2.0.
|
|
45
|
-
"@smithy/middleware-stack": "^2.0.
|
|
46
|
-
"@smithy/node-config-provider": "^2.1.
|
|
47
|
-
"@smithy/node-http-handler": "^2.2.
|
|
48
|
-
"@smithy/protocol-http": "^3.0.
|
|
49
|
-
"@smithy/smithy-client": "^2.2.
|
|
50
|
-
"@smithy/types": "^2.
|
|
51
|
-
"@smithy/url-parser": "^2.0.
|
|
23
|
+
"@aws-sdk/client-sts": "3.489.0",
|
|
24
|
+
"@aws-sdk/core": "3.485.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.489.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.489.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.489.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.489.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.489.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.489.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.489.0",
|
|
32
|
+
"@aws-sdk/types": "3.489.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.489.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.489.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.489.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.23",
|
|
37
|
+
"@smithy/core": "^1.2.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^2.3.2",
|
|
39
|
+
"@smithy/hash-node": "^2.0.18",
|
|
40
|
+
"@smithy/invalid-dependency": "^2.0.16",
|
|
41
|
+
"@smithy/middleware-content-length": "^2.0.18",
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.3.0",
|
|
43
|
+
"@smithy/middleware-retry": "^2.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^2.0.16",
|
|
45
|
+
"@smithy/middleware-stack": "^2.0.10",
|
|
46
|
+
"@smithy/node-config-provider": "^2.1.9",
|
|
47
|
+
"@smithy/node-http-handler": "^2.2.2",
|
|
48
|
+
"@smithy/protocol-http": "^3.0.12",
|
|
49
|
+
"@smithy/smithy-client": "^2.2.1",
|
|
50
|
+
"@smithy/types": "^2.8.0",
|
|
51
|
+
"@smithy/url-parser": "^2.0.16",
|
|
52
52
|
"@smithy/util-base64": "^2.0.1",
|
|
53
53
|
"@smithy/util-body-length-browser": "^2.0.1",
|
|
54
54
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
57
|
-
"@smithy/util-endpoints": "^1.0.
|
|
58
|
-
"@smithy/util-retry": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.0.24",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.0.32",
|
|
57
|
+
"@smithy/util-endpoints": "^1.0.8",
|
|
58
|
+
"@smithy/util-retry": "^2.0.9",
|
|
59
59
|
"@smithy/util-utf8": "^2.0.2",
|
|
60
60
|
"tslib": "^2.5.0",
|
|
61
61
|
"uuid": "^8.3.2"
|