@aws-sdk/client-mediaconvert 3.873.0 → 3.875.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/index.js +77 -5
- package/dist-es/MediaConvert.js +2 -0
- package/dist-es/commands/CreateResourceShareCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +8 -8
- package/dist-es/models/models_1.js +9 -0
- package/dist-es/models/models_2.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +32 -0
- package/dist-types/MediaConvert.d.ts +7 -0
- package/dist-types/MediaConvertClient.d.ts +3 -2
- package/dist-types/commands/CreateJobCommand.d.ts +14 -2
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +12 -2
- package/dist-types/commands/CreatePresetCommand.d.ts +2 -0
- package/dist-types/commands/CreateResourceShareCommand.d.ts +89 -0
- package/dist-types/commands/GetJobCommand.d.ts +8 -1
- package/dist-types/commands/GetJobTemplateCommand.d.ts +6 -1
- package/dist-types/commands/GetPresetCommand.d.ts +1 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +6 -1
- package/dist-types/commands/ListJobsCommand.d.ts +8 -1
- package/dist-types/commands/ListPresetsCommand.d.ts +1 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +8 -1
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +12 -2
- package/dist-types/commands/UpdatePresetCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +43 -28
- package/dist-types/models/models_1.d.ts +27 -39
- package/dist-types/models/models_2.d.ts +82 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/MediaConvert.d.ts +17 -0
- package/dist-types/ts3.4/MediaConvertClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateResourceShareCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +15 -12
- package/dist-types/ts3.4/models/models_1.d.ts +13 -12
- package/dist-types/ts3.4/models/models_2.d.ts +24 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +1 -1
|
@@ -1,7 +1,44 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
3
|
-
import { AccelerationSettings, AccelerationStatus, AudioDescription, AvailBlanking, BillingTagsSource, CaptionDescriptionPreset, ColorConversion3DLUTSetting, Endpoint, EsamSettings, ExtendedDataServices, HopDestination, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, QueueTransition } from "./models_0";
|
|
4
|
-
import { ContainerSettings, OutputGroup,
|
|
3
|
+
import { AccelerationSettings, AccelerationStatus, AudioDescription, AvailBlanking, BillingTagsSource, CaptionDescriptionPreset, ColorConversion3DLUTSetting, Endpoint, EsamSettings, ExtendedDataServices, HopDestination, Id3Insertion, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, QueueTransition } from "./models_0";
|
|
4
|
+
import { ContainerSettings, OutputGroup, TimecodeSource, VideoDescription } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* These settings control how the service handles timecodes throughout the job. These settings don't affect input clipping.
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface TimecodeConfig {
|
|
10
|
+
/**
|
|
11
|
+
* If you use an editing platform that relies on an anchor timecode, use Anchor Timecode to specify a timecode that will match the input video frame to the output video frame. Use 24-hour format with frame number, (HH:MM:SS:FF) or (HH:MM:SS;FF). This setting ignores frame rate conversion. System behavior for Anchor Timecode varies depending on your setting for Source. * If Source is set to Specified Start, the first input frame is the specified value in Start Timecode. Anchor Timecode and Start Timecode are used calculate output timecode. * If Source is set to Start at 0 the first frame is 00:00:00:00. * If Source is set to Embedded, the first frame is the timecode value on the first input frame of the input.
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
Anchor?: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* Use Source to set how timecodes are handled within this job. To make sure that your video, audio, captions, and markers are synchronized and that time-based features, such as image inserter, work correctly, choose the Timecode source option that matches your assets. All timecodes are in a 24-hour format with frame number (HH:MM:SS:FF). * Embedded - Use the timecode that is in the input video. If no embedded timecode is in the source, the service will use Start at 0 instead. * Start at 0 - Set the timecode of the initial frame to 00:00:00:00. * Specified Start - Set the timecode of the initial frame to a value other than zero. You use Start timecode to provide this value.
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
Source?: TimecodeSource | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* Only use when you set Source to Specified start. Use Start timecode to specify the timecode for the initial frame. Use 24-hour format with frame number, (HH:MM:SS:FF) or (HH:MM:SS;FF).
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
Start?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* Only applies to outputs that support program-date-time stamp. Use Timestamp offset to overwrite the timecode date without affecting the time and frame number. Provide the new date as a string in the format "yyyy-mm-dd". To use Timestamp offset, you must also enable Insert program-date-time in the output settings. For example, if the date part of your timecodes is 2002-1-25 and you want to change it to one year later, set Timestamp offset to 2003-1-25.
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
TimestampOffset?: string | undefined;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Insert user-defined custom ID3 metadata at timecodes that you specify. In each output that you want to include this metadata, you must set ID3 metadata to Passthrough.
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export interface TimedMetadataInsertion {
|
|
36
|
+
/**
|
|
37
|
+
* Id3Insertions contains the array of Id3Insertion instances.
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
Id3Insertions?: Id3Insertion[] | undefined;
|
|
41
|
+
}
|
|
5
42
|
/**
|
|
6
43
|
* JobSettings contains all the transcode settings for a job.
|
|
7
44
|
* @public
|
|
@@ -78,6 +115,19 @@ export interface JobSettings {
|
|
|
78
115
|
*/
|
|
79
116
|
TimedMetadataInsertion?: TimedMetadataInsertion | undefined;
|
|
80
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
* @enum
|
|
121
|
+
*/
|
|
122
|
+
export declare const ShareStatus: {
|
|
123
|
+
readonly INITIATED: "INITIATED";
|
|
124
|
+
readonly NOT_SHARED: "NOT_SHARED";
|
|
125
|
+
readonly SHARED: "SHARED";
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
81
131
|
/**
|
|
82
132
|
* @public
|
|
83
133
|
* @enum
|
|
@@ -247,6 +297,11 @@ export interface Job {
|
|
|
247
297
|
* @public
|
|
248
298
|
*/
|
|
249
299
|
JobTemplate?: string | undefined;
|
|
300
|
+
/**
|
|
301
|
+
* Contains information about the most recent share attempt for the job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/creating-resource-share.html
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
LastShareDetails?: string | undefined;
|
|
250
305
|
/**
|
|
251
306
|
* Provides messages from the service about jobs that you have already successfully submitted.
|
|
252
307
|
* @public
|
|
@@ -287,6 +342,11 @@ export interface Job {
|
|
|
287
342
|
* @public
|
|
288
343
|
*/
|
|
289
344
|
Settings: JobSettings | undefined;
|
|
345
|
+
/**
|
|
346
|
+
* A job's share status can be NOT_SHARED, INITIATED, or SHARED
|
|
347
|
+
* @public
|
|
348
|
+
*/
|
|
349
|
+
ShareStatus?: ShareStatus | undefined;
|
|
290
350
|
/**
|
|
291
351
|
* 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.
|
|
292
352
|
* @public
|
|
@@ -1520,6 +1580,26 @@ export interface CreateQueueResponse {
|
|
|
1520
1580
|
*/
|
|
1521
1581
|
Queue?: Queue | undefined;
|
|
1522
1582
|
}
|
|
1583
|
+
/**
|
|
1584
|
+
* @public
|
|
1585
|
+
*/
|
|
1586
|
+
export interface CreateResourceShareRequest {
|
|
1587
|
+
/**
|
|
1588
|
+
* Specify MediaConvert Job ID or ARN to share
|
|
1589
|
+
* @public
|
|
1590
|
+
*/
|
|
1591
|
+
JobId: string | undefined;
|
|
1592
|
+
/**
|
|
1593
|
+
* AWS Support case identifier
|
|
1594
|
+
* @public
|
|
1595
|
+
*/
|
|
1596
|
+
SupportCaseId: string | undefined;
|
|
1597
|
+
}
|
|
1598
|
+
/**
|
|
1599
|
+
* @public
|
|
1600
|
+
*/
|
|
1601
|
+
export interface CreateResourceShareResponse {
|
|
1602
|
+
}
|
|
1523
1603
|
/**
|
|
1524
1604
|
* @public
|
|
1525
1605
|
*/
|
|
@@ -6,6 +6,7 @@ import { CreateJobCommandInput, CreateJobCommandOutput } from "../commands/Creat
|
|
|
6
6
|
import { CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput } from "../commands/CreateJobTemplateCommand";
|
|
7
7
|
import { CreatePresetCommandInput, CreatePresetCommandOutput } from "../commands/CreatePresetCommand";
|
|
8
8
|
import { CreateQueueCommandInput, CreateQueueCommandOutput } from "../commands/CreateQueueCommand";
|
|
9
|
+
import { CreateResourceShareCommandInput, CreateResourceShareCommandOutput } from "../commands/CreateResourceShareCommand";
|
|
9
10
|
import { DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput } from "../commands/DeleteJobTemplateCommand";
|
|
10
11
|
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "../commands/DeletePolicyCommand";
|
|
11
12
|
import { DeletePresetCommandInput, DeletePresetCommandOutput } from "../commands/DeletePresetCommand";
|
|
@@ -55,6 +56,10 @@ export declare const se_CreatePresetCommand: (input: CreatePresetCommandInput, c
|
|
|
55
56
|
* serializeAws_restJson1CreateQueueCommand
|
|
56
57
|
*/
|
|
57
58
|
export declare const se_CreateQueueCommand: (input: CreateQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
/**
|
|
60
|
+
* serializeAws_restJson1CreateResourceShareCommand
|
|
61
|
+
*/
|
|
62
|
+
export declare const se_CreateResourceShareCommand: (input: CreateResourceShareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
63
|
/**
|
|
59
64
|
* serializeAws_restJson1DeleteJobTemplateCommand
|
|
60
65
|
*/
|
|
@@ -179,6 +184,10 @@ export declare const de_CreatePresetCommand: (output: __HttpResponse, context: _
|
|
|
179
184
|
* deserializeAws_restJson1CreateQueueCommand
|
|
180
185
|
*/
|
|
181
186
|
export declare const de_CreateQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQueueCommandOutput>;
|
|
187
|
+
/**
|
|
188
|
+
* deserializeAws_restJson1CreateResourceShareCommand
|
|
189
|
+
*/
|
|
190
|
+
export declare const de_CreateResourceShareCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateResourceShareCommandOutput>;
|
|
182
191
|
/**
|
|
183
192
|
* deserializeAws_restJson1DeleteJobTemplateCommand
|
|
184
193
|
*/
|
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
CreateQueueCommandInput,
|
|
24
24
|
CreateQueueCommandOutput,
|
|
25
25
|
} from "./commands/CreateQueueCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateResourceShareCommandInput,
|
|
28
|
+
CreateResourceShareCommandOutput,
|
|
29
|
+
} from "./commands/CreateResourceShareCommand";
|
|
26
30
|
import {
|
|
27
31
|
DeleteJobTemplateCommandInput,
|
|
28
32
|
DeleteJobTemplateCommandOutput,
|
|
@@ -200,6 +204,19 @@ export interface MediaConvert {
|
|
|
200
204
|
options: __HttpHandlerOptions,
|
|
201
205
|
cb: (err: any, data?: CreateQueueCommandOutput) => void
|
|
202
206
|
): void;
|
|
207
|
+
createResourceShare(
|
|
208
|
+
args: CreateResourceShareCommandInput,
|
|
209
|
+
options?: __HttpHandlerOptions
|
|
210
|
+
): Promise<CreateResourceShareCommandOutput>;
|
|
211
|
+
createResourceShare(
|
|
212
|
+
args: CreateResourceShareCommandInput,
|
|
213
|
+
cb: (err: any, data?: CreateResourceShareCommandOutput) => void
|
|
214
|
+
): void;
|
|
215
|
+
createResourceShare(
|
|
216
|
+
args: CreateResourceShareCommandInput,
|
|
217
|
+
options: __HttpHandlerOptions,
|
|
218
|
+
cb: (err: any, data?: CreateResourceShareCommandOutput) => void
|
|
219
|
+
): void;
|
|
203
220
|
deleteJobTemplate(
|
|
204
221
|
args: DeleteJobTemplateCommandInput,
|
|
205
222
|
options?: __HttpHandlerOptions
|
|
@@ -69,6 +69,10 @@ import {
|
|
|
69
69
|
CreateQueueCommandInput,
|
|
70
70
|
CreateQueueCommandOutput,
|
|
71
71
|
} from "./commands/CreateQueueCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreateResourceShareCommandInput,
|
|
74
|
+
CreateResourceShareCommandOutput,
|
|
75
|
+
} from "./commands/CreateResourceShareCommand";
|
|
72
76
|
import {
|
|
73
77
|
DeleteJobTemplateCommandInput,
|
|
74
78
|
DeleteJobTemplateCommandOutput,
|
|
@@ -180,6 +184,7 @@ export type ServiceInputTypes =
|
|
|
180
184
|
| CreateJobTemplateCommandInput
|
|
181
185
|
| CreatePresetCommandInput
|
|
182
186
|
| CreateQueueCommandInput
|
|
187
|
+
| CreateResourceShareCommandInput
|
|
183
188
|
| DeleteJobTemplateCommandInput
|
|
184
189
|
| DeletePolicyCommandInput
|
|
185
190
|
| DeletePresetCommandInput
|
|
@@ -212,6 +217,7 @@ export type ServiceOutputTypes =
|
|
|
212
217
|
| CreateJobTemplateCommandOutput
|
|
213
218
|
| CreatePresetCommandOutput
|
|
214
219
|
| CreateQueueCommandOutput
|
|
220
|
+
| CreateResourceShareCommandOutput
|
|
215
221
|
| DeleteJobTemplateCommandOutput
|
|
216
222
|
| DeletePolicyCommandOutput
|
|
217
223
|
| DeletePresetCommandOutput
|
|
@@ -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
|
+
CreateResourceShareRequest,
|
|
10
|
+
CreateResourceShareResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateResourceShareCommandInput
|
|
15
|
+
extends CreateResourceShareRequest {}
|
|
16
|
+
export interface CreateResourceShareCommandOutput
|
|
17
|
+
extends CreateResourceShareResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateResourceShareCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateResourceShareCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateResourceShareCommandInput,
|
|
24
|
+
CreateResourceShareCommandOutput,
|
|
25
|
+
MediaConvertClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateResourceShareCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateResourceShareCommandInput,
|
|
33
|
+
CreateResourceShareCommandOutput,
|
|
34
|
+
MediaConvertClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateResourceShareCommand extends CreateResourceShareCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateResourceShareRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateResourceShareCommandInput;
|
|
48
|
+
output: CreateResourceShareCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -4,6 +4,7 @@ export * from "./CreateJobCommand";
|
|
|
4
4
|
export * from "./CreateJobTemplateCommand";
|
|
5
5
|
export * from "./CreatePresetCommand";
|
|
6
6
|
export * from "./CreateQueueCommand";
|
|
7
|
+
export * from "./CreateResourceShareCommand";
|
|
7
8
|
export * from "./DeleteJobTemplateCommand";
|
|
8
9
|
export * from "./DeletePolicyCommand";
|
|
9
10
|
export * from "./DeletePresetCommand";
|
|
@@ -465,7 +465,14 @@ export interface FlacSettings {
|
|
|
465
465
|
Channels?: number | undefined;
|
|
466
466
|
SampleRate?: number | undefined;
|
|
467
467
|
}
|
|
468
|
+
export declare const Mp2AudioDescriptionMix: {
|
|
469
|
+
readonly BROADCASTER_MIXED_AD: "BROADCASTER_MIXED_AD";
|
|
470
|
+
readonly NONE: "NONE";
|
|
471
|
+
};
|
|
472
|
+
export type Mp2AudioDescriptionMix =
|
|
473
|
+
(typeof Mp2AudioDescriptionMix)[keyof typeof Mp2AudioDescriptionMix];
|
|
468
474
|
export interface Mp2Settings {
|
|
475
|
+
AudioDescriptionMix?: Mp2AudioDescriptionMix | undefined;
|
|
469
476
|
Bitrate?: number | undefined;
|
|
470
477
|
Channels?: number | undefined;
|
|
471
478
|
SampleRate?: number | undefined;
|
|
@@ -1599,6 +1606,12 @@ export declare const InputSampleRange: {
|
|
|
1599
1606
|
};
|
|
1600
1607
|
export type InputSampleRange =
|
|
1601
1608
|
(typeof InputSampleRange)[keyof typeof InputSampleRange];
|
|
1609
|
+
export declare const VideoSelectorType: {
|
|
1610
|
+
readonly AUTO: "AUTO";
|
|
1611
|
+
readonly STREAM: "STREAM";
|
|
1612
|
+
};
|
|
1613
|
+
export type VideoSelectorType =
|
|
1614
|
+
(typeof VideoSelectorType)[keyof typeof VideoSelectorType];
|
|
1602
1615
|
export interface VideoSelector {
|
|
1603
1616
|
AlphaBehavior?: AlphaBehavior | undefined;
|
|
1604
1617
|
ColorSpace?: ColorSpace | undefined;
|
|
@@ -1611,6 +1624,8 @@ export interface VideoSelector {
|
|
|
1611
1624
|
ProgramNumber?: number | undefined;
|
|
1612
1625
|
Rotate?: InputRotate | undefined;
|
|
1613
1626
|
SampleRange?: InputSampleRange | undefined;
|
|
1627
|
+
SelectorType?: VideoSelectorType | undefined;
|
|
1628
|
+
Streams?: number[] | undefined;
|
|
1614
1629
|
}
|
|
1615
1630
|
export interface Input {
|
|
1616
1631
|
AdvancedInputFilter?: AdvancedInputFilter | undefined;
|
|
@@ -2364,15 +2379,3 @@ export declare const HlsSegmentLengthControl: {
|
|
|
2364
2379
|
};
|
|
2365
2380
|
export type HlsSegmentLengthControl =
|
|
2366
2381
|
(typeof HlsSegmentLengthControl)[keyof typeof HlsSegmentLengthControl];
|
|
2367
|
-
export declare const HlsStreamInfResolution: {
|
|
2368
|
-
readonly EXCLUDE: "EXCLUDE";
|
|
2369
|
-
readonly INCLUDE: "INCLUDE";
|
|
2370
|
-
};
|
|
2371
|
-
export type HlsStreamInfResolution =
|
|
2372
|
-
(typeof HlsStreamInfResolution)[keyof typeof HlsStreamInfResolution];
|
|
2373
|
-
export declare const HlsTargetDurationCompatibilityMode: {
|
|
2374
|
-
readonly LEGACY: "LEGACY";
|
|
2375
|
-
readonly SPEC_COMPLIANT: "SPEC_COMPLIANT";
|
|
2376
|
-
};
|
|
2377
|
-
export type HlsTargetDurationCompatibilityMode =
|
|
2378
|
-
(typeof HlsTargetDurationCompatibilityMode)[keyof typeof HlsTargetDurationCompatibilityMode];
|
|
@@ -27,13 +27,22 @@ import {
|
|
|
27
27
|
HlsProgressiveWriteHlsManifest,
|
|
28
28
|
HlsSegmentControl,
|
|
29
29
|
HlsSegmentLengthControl,
|
|
30
|
-
HlsStreamInfResolution,
|
|
31
|
-
HlsTargetDurationCompatibilityMode,
|
|
32
|
-
Id3Insertion,
|
|
33
30
|
ImageInserter,
|
|
34
31
|
Rectangle,
|
|
35
32
|
SpekeKeyProvider,
|
|
36
33
|
} from "./models_0";
|
|
34
|
+
export declare const HlsStreamInfResolution: {
|
|
35
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
36
|
+
readonly INCLUDE: "INCLUDE";
|
|
37
|
+
};
|
|
38
|
+
export type HlsStreamInfResolution =
|
|
39
|
+
(typeof HlsStreamInfResolution)[keyof typeof HlsStreamInfResolution];
|
|
40
|
+
export declare const HlsTargetDurationCompatibilityMode: {
|
|
41
|
+
readonly LEGACY: "LEGACY";
|
|
42
|
+
readonly SPEC_COMPLIANT: "SPEC_COMPLIANT";
|
|
43
|
+
};
|
|
44
|
+
export type HlsTargetDurationCompatibilityMode =
|
|
45
|
+
(typeof HlsTargetDurationCompatibilityMode)[keyof typeof HlsTargetDurationCompatibilityMode];
|
|
37
46
|
export declare const HlsTimedMetadataId3Frame: {
|
|
38
47
|
readonly NONE: "NONE";
|
|
39
48
|
readonly PRIV: "PRIV";
|
|
@@ -664,6 +673,7 @@ export type HlsDescriptiveVideoServiceFlag =
|
|
|
664
673
|
export declare const HlsIFrameOnlyManifest: {
|
|
665
674
|
readonly EXCLUDE: "EXCLUDE";
|
|
666
675
|
readonly INCLUDE: "INCLUDE";
|
|
676
|
+
readonly INCLUDE_AS_TS: "INCLUDE_AS_TS";
|
|
667
677
|
};
|
|
668
678
|
export type HlsIFrameOnlyManifest =
|
|
669
679
|
(typeof HlsIFrameOnlyManifest)[keyof typeof HlsIFrameOnlyManifest];
|
|
@@ -2314,12 +2324,3 @@ export declare const TimecodeSource: {
|
|
|
2314
2324
|
};
|
|
2315
2325
|
export type TimecodeSource =
|
|
2316
2326
|
(typeof TimecodeSource)[keyof typeof TimecodeSource];
|
|
2317
|
-
export interface TimecodeConfig {
|
|
2318
|
-
Anchor?: string | undefined;
|
|
2319
|
-
Source?: TimecodeSource | undefined;
|
|
2320
|
-
Start?: string | undefined;
|
|
2321
|
-
TimestampOffset?: string | undefined;
|
|
2322
|
-
}
|
|
2323
|
-
export interface TimedMetadataInsertion {
|
|
2324
|
-
Id3Insertions?: Id3Insertion[] | undefined;
|
|
2325
|
-
}
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
EsamSettings,
|
|
13
13
|
ExtendedDataServices,
|
|
14
14
|
HopDestination,
|
|
15
|
+
Id3Insertion,
|
|
15
16
|
Input,
|
|
16
17
|
InputTemplate,
|
|
17
18
|
JobMessages,
|
|
@@ -26,10 +27,18 @@ import {
|
|
|
26
27
|
import {
|
|
27
28
|
ContainerSettings,
|
|
28
29
|
OutputGroup,
|
|
29
|
-
|
|
30
|
-
TimedMetadataInsertion,
|
|
30
|
+
TimecodeSource,
|
|
31
31
|
VideoDescription,
|
|
32
32
|
} from "./models_1";
|
|
33
|
+
export interface TimecodeConfig {
|
|
34
|
+
Anchor?: string | undefined;
|
|
35
|
+
Source?: TimecodeSource | undefined;
|
|
36
|
+
Start?: string | undefined;
|
|
37
|
+
TimestampOffset?: string | undefined;
|
|
38
|
+
}
|
|
39
|
+
export interface TimedMetadataInsertion {
|
|
40
|
+
Id3Insertions?: Id3Insertion[] | undefined;
|
|
41
|
+
}
|
|
33
42
|
export interface JobSettings {
|
|
34
43
|
AdAvailOffset?: number | undefined;
|
|
35
44
|
AvailBlanking?: AvailBlanking | undefined;
|
|
@@ -46,6 +55,12 @@ export interface JobSettings {
|
|
|
46
55
|
TimecodeConfig?: TimecodeConfig | undefined;
|
|
47
56
|
TimedMetadataInsertion?: TimedMetadataInsertion | undefined;
|
|
48
57
|
}
|
|
58
|
+
export declare const ShareStatus: {
|
|
59
|
+
readonly INITIATED: "INITIATED";
|
|
60
|
+
readonly NOT_SHARED: "NOT_SHARED";
|
|
61
|
+
readonly SHARED: "SHARED";
|
|
62
|
+
};
|
|
63
|
+
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
49
64
|
export declare const SimulateReservedQueue: {
|
|
50
65
|
readonly DISABLED: "DISABLED";
|
|
51
66
|
readonly ENABLED: "ENABLED";
|
|
@@ -104,6 +119,7 @@ export interface Job {
|
|
|
104
119
|
JobEngineVersionUsed?: string | undefined;
|
|
105
120
|
JobPercentComplete?: number | undefined;
|
|
106
121
|
JobTemplate?: string | undefined;
|
|
122
|
+
LastShareDetails?: string | undefined;
|
|
107
123
|
Messages?: JobMessages | undefined;
|
|
108
124
|
OutputGroupDetails?: OutputGroupDetail[] | undefined;
|
|
109
125
|
Priority?: number | undefined;
|
|
@@ -112,6 +128,7 @@ export interface Job {
|
|
|
112
128
|
RetryCount?: number | undefined;
|
|
113
129
|
Role: string | undefined;
|
|
114
130
|
Settings: JobSettings | undefined;
|
|
131
|
+
ShareStatus?: ShareStatus | undefined;
|
|
115
132
|
SimulateReservedQueue?: SimulateReservedQueue | undefined;
|
|
116
133
|
Status?: JobStatus | undefined;
|
|
117
134
|
StatusUpdateInterval?: StatusUpdateInterval | undefined;
|
|
@@ -503,6 +520,11 @@ export interface CreateQueueRequest {
|
|
|
503
520
|
export interface CreateQueueResponse {
|
|
504
521
|
Queue?: Queue | undefined;
|
|
505
522
|
}
|
|
523
|
+
export interface CreateResourceShareRequest {
|
|
524
|
+
JobId: string | undefined;
|
|
525
|
+
SupportCaseId: string | undefined;
|
|
526
|
+
}
|
|
527
|
+
export interface CreateResourceShareResponse {}
|
|
506
528
|
export interface DeleteJobTemplateRequest {
|
|
507
529
|
Name: string | undefined;
|
|
508
530
|
}
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
CreateQueueCommandInput,
|
|
28
28
|
CreateQueueCommandOutput,
|
|
29
29
|
} from "../commands/CreateQueueCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateResourceShareCommandInput,
|
|
32
|
+
CreateResourceShareCommandOutput,
|
|
33
|
+
} from "../commands/CreateResourceShareCommand";
|
|
30
34
|
import {
|
|
31
35
|
DeleteJobTemplateCommandInput,
|
|
32
36
|
DeleteJobTemplateCommandOutput,
|
|
@@ -151,6 +155,10 @@ export declare const se_CreateQueueCommand: (
|
|
|
151
155
|
input: CreateQueueCommandInput,
|
|
152
156
|
context: __SerdeContext
|
|
153
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_CreateResourceShareCommand: (
|
|
159
|
+
input: CreateResourceShareCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
154
162
|
export declare const se_DeleteJobTemplateCommand: (
|
|
155
163
|
input: DeleteJobTemplateCommandInput,
|
|
156
164
|
context: __SerdeContext
|
|
@@ -275,6 +283,10 @@ export declare const de_CreateQueueCommand: (
|
|
|
275
283
|
output: __HttpResponse,
|
|
276
284
|
context: __SerdeContext
|
|
277
285
|
) => Promise<CreateQueueCommandOutput>;
|
|
286
|
+
export declare const de_CreateResourceShareCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<CreateResourceShareCommandOutput>;
|
|
278
290
|
export declare const de_DeleteJobTemplateCommand: (
|
|
279
291
|
output: __HttpResponse,
|
|
280
292
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconvert",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.875.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediaconvert",
|