@aws-sdk/client-mediaconvert 3.316.0 → 3.319.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 +20 -19
- package/dist-cjs/models/models_1.js +23 -9
- package/dist-cjs/models/models_2.js +5 -1
- package/dist-cjs/protocols/Aws_restJson1.js +22 -0
- package/dist-es/models/models_0.js +17 -16
- package/dist-es/models/models_1.js +18 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +22 -0
- package/dist-types/commands/CreateJobCommand.d.ts +8 -2
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +8 -2
- package/dist-types/commands/CreatePresetCommand.d.ts +2 -2
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +8 -2
- package/dist-types/commands/UpdatePresetCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +90 -73
- package/dist-types/models/models_1.d.ts +89 -78
- package/dist-types/models/models_2.d.ts +58 -1
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +34 -29
- package/dist-types/ts3.4/models/models_1.d.ts +31 -25
- package/dist-types/ts3.4/models/models_2.d.ts +20 -1
- package/package.json +5 -5
|
@@ -1,5 +1,62 @@
|
|
|
1
|
-
import { AccelerationSettings, HopDestination } from "./models_0";
|
|
1
|
+
import { AccelerationSettings, Endpoint, HopDestination } from "./models_0";
|
|
2
2
|
import { Job, JobStatus, JobTemplate, JobTemplateSettings, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* @enum
|
|
6
|
+
*/
|
|
7
|
+
export declare const DescribeEndpointsMode: {
|
|
8
|
+
readonly DEFAULT: "DEFAULT";
|
|
9
|
+
readonly GET_ONLY: "GET_ONLY";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type DescribeEndpointsMode = (typeof DescribeEndpointsMode)[keyof typeof DescribeEndpointsMode];
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* DescribeEndpointsRequest
|
|
18
|
+
*/
|
|
19
|
+
export interface DescribeEndpointsRequest {
|
|
20
|
+
/**
|
|
21
|
+
* Optional. Max number of endpoints, up to twenty, that will be returned at one time.
|
|
22
|
+
*/
|
|
23
|
+
MaxResults?: number;
|
|
24
|
+
/**
|
|
25
|
+
* Optional field, defaults to DEFAULT. Specify DEFAULT for this operation to return your endpoints if any exist, or to create an endpoint for you and return it if one doesn't already exist. Specify GET_ONLY to return your endpoints if any exist, or an empty list if none exist.
|
|
26
|
+
*/
|
|
27
|
+
Mode?: DescribeEndpointsMode | string;
|
|
28
|
+
/**
|
|
29
|
+
* Use this string, provided with the response to a previous request, to request the next batch of endpoints.
|
|
30
|
+
*/
|
|
31
|
+
NextToken?: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export interface DescribeEndpointsResponse {
|
|
37
|
+
/**
|
|
38
|
+
* List of endpoints
|
|
39
|
+
*/
|
|
40
|
+
Endpoints?: Endpoint[];
|
|
41
|
+
/**
|
|
42
|
+
* Use this string to request the next batch of endpoints.
|
|
43
|
+
*/
|
|
44
|
+
NextToken?: string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export interface DisassociateCertificateRequest {
|
|
50
|
+
/**
|
|
51
|
+
* The ARN of the ACM certificate that you want to disassociate from your MediaConvert resource.
|
|
52
|
+
*/
|
|
53
|
+
Arn: string | undefined;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export interface DisassociateCertificateResponse {
|
|
59
|
+
}
|
|
3
60
|
/**
|
|
4
61
|
* @public
|
|
5
62
|
*/
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
DescribeEndpointsRequest,
|
|
16
16
|
DescribeEndpointsResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_2";
|
|
18
18
|
export interface DescribeEndpointsCommandInput
|
|
19
19
|
extends DescribeEndpointsRequest {}
|
|
20
20
|
export interface DescribeEndpointsCommandOutput
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
DisassociateCertificateRequest,
|
|
16
16
|
DisassociateCertificateResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_2";
|
|
18
18
|
export interface DisassociateCertificateCommandInput
|
|
19
19
|
extends DisassociateCertificateRequest {}
|
|
20
20
|
export interface DisassociateCertificateCommandOutput
|
|
@@ -1108,6 +1108,29 @@ export interface Id3Insertion {
|
|
|
1108
1108
|
Id3?: string;
|
|
1109
1109
|
Timecode?: string;
|
|
1110
1110
|
}
|
|
1111
|
+
export declare const AdvancedInputFilter: {
|
|
1112
|
+
readonly DISABLED: "DISABLED";
|
|
1113
|
+
readonly ENABLED: "ENABLED";
|
|
1114
|
+
};
|
|
1115
|
+
export type AdvancedInputFilter =
|
|
1116
|
+
(typeof AdvancedInputFilter)[keyof typeof AdvancedInputFilter];
|
|
1117
|
+
export declare const AdvancedInputFilterAddTexture: {
|
|
1118
|
+
readonly DISABLED: "DISABLED";
|
|
1119
|
+
readonly ENABLED: "ENABLED";
|
|
1120
|
+
};
|
|
1121
|
+
export type AdvancedInputFilterAddTexture =
|
|
1122
|
+
(typeof AdvancedInputFilterAddTexture)[keyof typeof AdvancedInputFilterAddTexture];
|
|
1123
|
+
export declare const AdvancedInputFilterSharpen: {
|
|
1124
|
+
readonly HIGH: "HIGH";
|
|
1125
|
+
readonly LOW: "LOW";
|
|
1126
|
+
readonly OFF: "OFF";
|
|
1127
|
+
};
|
|
1128
|
+
export type AdvancedInputFilterSharpen =
|
|
1129
|
+
(typeof AdvancedInputFilterSharpen)[keyof typeof AdvancedInputFilterSharpen];
|
|
1130
|
+
export interface AdvancedInputFilterSettings {
|
|
1131
|
+
AddTexture?: AdvancedInputFilterAddTexture | string;
|
|
1132
|
+
Sharpening?: AdvancedInputFilterSharpen | string;
|
|
1133
|
+
}
|
|
1111
1134
|
export interface AudioSelectorGroup {
|
|
1112
1135
|
AudioSelectorNames?: string[];
|
|
1113
1136
|
}
|
|
@@ -1196,6 +1219,12 @@ export declare const FileSourceConvert608To708: {
|
|
|
1196
1219
|
};
|
|
1197
1220
|
export type FileSourceConvert608To708 =
|
|
1198
1221
|
(typeof FileSourceConvert608To708)[keyof typeof FileSourceConvert608To708];
|
|
1222
|
+
export declare const CaptionSourceConvertPaintOnToPopOn: {
|
|
1223
|
+
readonly DISABLED: "DISABLED";
|
|
1224
|
+
readonly ENABLED: "ENABLED";
|
|
1225
|
+
};
|
|
1226
|
+
export type CaptionSourceConvertPaintOnToPopOn =
|
|
1227
|
+
(typeof CaptionSourceConvertPaintOnToPopOn)[keyof typeof CaptionSourceConvertPaintOnToPopOn];
|
|
1199
1228
|
export interface CaptionSourceFramerate {
|
|
1200
1229
|
FramerateDenominator?: number;
|
|
1201
1230
|
FramerateNumerator?: number;
|
|
@@ -1208,6 +1237,7 @@ export type FileSourceTimeDeltaUnits =
|
|
|
1208
1237
|
(typeof FileSourceTimeDeltaUnits)[keyof typeof FileSourceTimeDeltaUnits];
|
|
1209
1238
|
export interface FileSourceSettings {
|
|
1210
1239
|
Convert608To708?: FileSourceConvert608To708 | string;
|
|
1240
|
+
ConvertPaintToPop?: CaptionSourceConvertPaintOnToPopOn | string;
|
|
1211
1241
|
Framerate?: CaptionSourceFramerate;
|
|
1212
1242
|
SourceFile?: string;
|
|
1213
1243
|
TimeDelta?: number;
|
|
@@ -1412,6 +1442,8 @@ export interface VideoSelector {
|
|
|
1412
1442
|
SampleRange?: InputSampleRange | string;
|
|
1413
1443
|
}
|
|
1414
1444
|
export interface Input {
|
|
1445
|
+
AdvancedInputFilter?: AdvancedInputFilter | string;
|
|
1446
|
+
AdvancedInputFilterSettings?: AdvancedInputFilterSettings;
|
|
1415
1447
|
AudioSelectorGroups?: Record<string, AudioSelectorGroup>;
|
|
1416
1448
|
AudioSelectors?: Record<string, AudioSelector>;
|
|
1417
1449
|
CaptionSelectors?: Record<string, CaptionSelector>;
|
|
@@ -1436,6 +1468,8 @@ export interface Input {
|
|
|
1436
1468
|
VideoSelector?: VideoSelector;
|
|
1437
1469
|
}
|
|
1438
1470
|
export interface InputTemplate {
|
|
1471
|
+
AdvancedInputFilter?: AdvancedInputFilter | string;
|
|
1472
|
+
AdvancedInputFilterSettings?: AdvancedInputFilterSettings;
|
|
1439
1473
|
AudioSelectorGroups?: Record<string, AudioSelectorGroup>;
|
|
1440
1474
|
AudioSelectors?: Record<string, AudioSelector>;
|
|
1441
1475
|
CaptionSelectors?: Record<string, CaptionSelector>;
|
|
@@ -2299,32 +2333,3 @@ export type F4vMoovPlacement =
|
|
|
2299
2333
|
export interface F4vSettings {
|
|
2300
2334
|
MoovPlacement?: F4vMoovPlacement | string;
|
|
2301
2335
|
}
|
|
2302
|
-
export declare const M2tsAudioBufferModel: {
|
|
2303
|
-
readonly ATSC: "ATSC";
|
|
2304
|
-
readonly DVB: "DVB";
|
|
2305
|
-
};
|
|
2306
|
-
export type M2tsAudioBufferModel =
|
|
2307
|
-
(typeof M2tsAudioBufferModel)[keyof typeof M2tsAudioBufferModel];
|
|
2308
|
-
export declare const M2tsAudioDuration: {
|
|
2309
|
-
readonly DEFAULT_CODEC_DURATION: "DEFAULT_CODEC_DURATION";
|
|
2310
|
-
readonly MATCH_VIDEO_DURATION: "MATCH_VIDEO_DURATION";
|
|
2311
|
-
};
|
|
2312
|
-
export type M2tsAudioDuration =
|
|
2313
|
-
(typeof M2tsAudioDuration)[keyof typeof M2tsAudioDuration];
|
|
2314
|
-
export declare const M2tsBufferModel: {
|
|
2315
|
-
readonly MULTIPLEX: "MULTIPLEX";
|
|
2316
|
-
readonly NONE: "NONE";
|
|
2317
|
-
};
|
|
2318
|
-
export type M2tsBufferModel =
|
|
2319
|
-
(typeof M2tsBufferModel)[keyof typeof M2tsBufferModel];
|
|
2320
|
-
export declare const M2tsDataPtsControl: {
|
|
2321
|
-
readonly ALIGN_TO_VIDEO: "ALIGN_TO_VIDEO";
|
|
2322
|
-
readonly AUTO: "AUTO";
|
|
2323
|
-
};
|
|
2324
|
-
export type M2tsDataPtsControl =
|
|
2325
|
-
(typeof M2tsDataPtsControl)[keyof typeof M2tsDataPtsControl];
|
|
2326
|
-
export interface DvbNitSettings {
|
|
2327
|
-
NetworkId?: number;
|
|
2328
|
-
NetworkName?: string;
|
|
2329
|
-
NitInterval?: number;
|
|
2330
|
-
}
|
|
@@ -12,8 +12,6 @@ import {
|
|
|
12
12
|
CmfcAudioDuration,
|
|
13
13
|
CmfcSettings,
|
|
14
14
|
ContainerType,
|
|
15
|
-
DvbNitSettings,
|
|
16
|
-
Endpoint,
|
|
17
15
|
EsamSettings,
|
|
18
16
|
ExtendedDataServices,
|
|
19
17
|
F4vSettings,
|
|
@@ -26,10 +24,6 @@ import {
|
|
|
26
24
|
JobMessages,
|
|
27
25
|
JobPhase,
|
|
28
26
|
KantarWatermarkSettings,
|
|
29
|
-
M2tsAudioBufferModel,
|
|
30
|
-
M2tsAudioDuration,
|
|
31
|
-
M2tsBufferModel,
|
|
32
|
-
M2tsDataPtsControl,
|
|
33
27
|
MotionImageInserter,
|
|
34
28
|
NielsenConfiguration,
|
|
35
29
|
NielsenNonLinearWatermarkSettings,
|
|
@@ -38,6 +32,35 @@ import {
|
|
|
38
32
|
QueueTransition,
|
|
39
33
|
Rectangle,
|
|
40
34
|
} from "./models_0";
|
|
35
|
+
export declare const M2tsAudioBufferModel: {
|
|
36
|
+
readonly ATSC: "ATSC";
|
|
37
|
+
readonly DVB: "DVB";
|
|
38
|
+
};
|
|
39
|
+
export type M2tsAudioBufferModel =
|
|
40
|
+
(typeof M2tsAudioBufferModel)[keyof typeof M2tsAudioBufferModel];
|
|
41
|
+
export declare const M2tsAudioDuration: {
|
|
42
|
+
readonly DEFAULT_CODEC_DURATION: "DEFAULT_CODEC_DURATION";
|
|
43
|
+
readonly MATCH_VIDEO_DURATION: "MATCH_VIDEO_DURATION";
|
|
44
|
+
};
|
|
45
|
+
export type M2tsAudioDuration =
|
|
46
|
+
(typeof M2tsAudioDuration)[keyof typeof M2tsAudioDuration];
|
|
47
|
+
export declare const M2tsBufferModel: {
|
|
48
|
+
readonly MULTIPLEX: "MULTIPLEX";
|
|
49
|
+
readonly NONE: "NONE";
|
|
50
|
+
};
|
|
51
|
+
export type M2tsBufferModel =
|
|
52
|
+
(typeof M2tsBufferModel)[keyof typeof M2tsBufferModel];
|
|
53
|
+
export declare const M2tsDataPtsControl: {
|
|
54
|
+
readonly ALIGN_TO_VIDEO: "ALIGN_TO_VIDEO";
|
|
55
|
+
readonly AUTO: "AUTO";
|
|
56
|
+
};
|
|
57
|
+
export type M2tsDataPtsControl =
|
|
58
|
+
(typeof M2tsDataPtsControl)[keyof typeof M2tsDataPtsControl];
|
|
59
|
+
export interface DvbNitSettings {
|
|
60
|
+
NetworkId?: number;
|
|
61
|
+
NetworkName?: string;
|
|
62
|
+
NitInterval?: number;
|
|
63
|
+
}
|
|
41
64
|
export declare const OutputSdt: {
|
|
42
65
|
readonly SDT_FOLLOW: "SDT_FOLLOW";
|
|
43
66
|
readonly SDT_FOLLOW_IF_PRESENT: "SDT_FOLLOW_IF_PRESENT";
|
|
@@ -569,6 +592,7 @@ export declare const VideoCodec: {
|
|
|
569
592
|
readonly H_264: "H_264";
|
|
570
593
|
readonly H_265: "H_265";
|
|
571
594
|
readonly MPEG2: "MPEG2";
|
|
595
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
572
596
|
readonly PRORES: "PRORES";
|
|
573
597
|
readonly VC3: "VC3";
|
|
574
598
|
readonly VP8: "VP8";
|
|
@@ -1706,6 +1730,7 @@ export declare const DeinterlaceAlgorithm: {
|
|
|
1706
1730
|
readonly BLEND_TICKER: "BLEND_TICKER";
|
|
1707
1731
|
readonly INTERPOLATE: "INTERPOLATE";
|
|
1708
1732
|
readonly INTERPOLATE_TICKER: "INTERPOLATE_TICKER";
|
|
1733
|
+
readonly LINEAR_INTERPOLATION: "LINEAR_INTERPOLATION";
|
|
1709
1734
|
};
|
|
1710
1735
|
export type DeinterlaceAlgorithm =
|
|
1711
1736
|
(typeof DeinterlaceAlgorithm)[keyof typeof DeinterlaceAlgorithm];
|
|
@@ -2209,22 +2234,3 @@ export interface DeleteQueueRequest {
|
|
|
2209
2234
|
Name: string | undefined;
|
|
2210
2235
|
}
|
|
2211
2236
|
export interface DeleteQueueResponse {}
|
|
2212
|
-
export declare const DescribeEndpointsMode: {
|
|
2213
|
-
readonly DEFAULT: "DEFAULT";
|
|
2214
|
-
readonly GET_ONLY: "GET_ONLY";
|
|
2215
|
-
};
|
|
2216
|
-
export type DescribeEndpointsMode =
|
|
2217
|
-
(typeof DescribeEndpointsMode)[keyof typeof DescribeEndpointsMode];
|
|
2218
|
-
export interface DescribeEndpointsRequest {
|
|
2219
|
-
MaxResults?: number;
|
|
2220
|
-
Mode?: DescribeEndpointsMode | string;
|
|
2221
|
-
NextToken?: string;
|
|
2222
|
-
}
|
|
2223
|
-
export interface DescribeEndpointsResponse {
|
|
2224
|
-
Endpoints?: Endpoint[];
|
|
2225
|
-
NextToken?: string;
|
|
2226
|
-
}
|
|
2227
|
-
export interface DisassociateCertificateRequest {
|
|
2228
|
-
Arn: string | undefined;
|
|
2229
|
-
}
|
|
2230
|
-
export interface DisassociateCertificateResponse {}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccelerationSettings, HopDestination } from "./models_0";
|
|
1
|
+
import { AccelerationSettings, Endpoint, HopDestination } from "./models_0";
|
|
2
2
|
import {
|
|
3
3
|
Job,
|
|
4
4
|
JobStatus,
|
|
@@ -11,6 +11,25 @@ import {
|
|
|
11
11
|
ReservationPlanSettings,
|
|
12
12
|
StatusUpdateInterval,
|
|
13
13
|
} from "./models_1";
|
|
14
|
+
export declare const DescribeEndpointsMode: {
|
|
15
|
+
readonly DEFAULT: "DEFAULT";
|
|
16
|
+
readonly GET_ONLY: "GET_ONLY";
|
|
17
|
+
};
|
|
18
|
+
export type DescribeEndpointsMode =
|
|
19
|
+
(typeof DescribeEndpointsMode)[keyof typeof DescribeEndpointsMode];
|
|
20
|
+
export interface DescribeEndpointsRequest {
|
|
21
|
+
MaxResults?: number;
|
|
22
|
+
Mode?: DescribeEndpointsMode | string;
|
|
23
|
+
NextToken?: string;
|
|
24
|
+
}
|
|
25
|
+
export interface DescribeEndpointsResponse {
|
|
26
|
+
Endpoints?: Endpoint[];
|
|
27
|
+
NextToken?: string;
|
|
28
|
+
}
|
|
29
|
+
export interface DisassociateCertificateRequest {
|
|
30
|
+
Arn: string | undefined;
|
|
31
|
+
}
|
|
32
|
+
export interface DisassociateCertificateResponse {}
|
|
14
33
|
export interface GetJobRequest {
|
|
15
34
|
Id: string | undefined;
|
|
16
35
|
}
|
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.319.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.319.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.319.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.310.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.310.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.310.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.319.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|