@aws-sdk/client-mediaconvert 3.46.0 → 3.48.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/CHANGELOG.md +38 -0
- package/dist-cjs/commands/UntagResourceCommand.js +3 -3
- package/dist-cjs/commands/UpdateJobTemplateCommand.js +3 -3
- package/dist-cjs/commands/UpdatePresetCommand.js +1 -2
- package/dist-cjs/endpoints.js +0 -20
- package/dist-cjs/models/models_0.js +21 -21
- package/dist-cjs/models/models_1.js +33 -72
- package/dist-cjs/models/models_2.js +31 -1
- package/dist-cjs/protocols/Aws_restJson1.js +16 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +10 -2
- package/dist-es/commands/UntagResourceCommand.js +1 -1
- package/dist-es/commands/UpdateJobTemplateCommand.js +1 -1
- package/dist-es/commands/UpdatePresetCommand.js +1 -2
- package/dist-es/endpoints.js +0 -20
- package/dist-es/models/models_0.js +16 -14
- package/dist-es/models/models_1.js +25 -44
- package/dist-es/models/models_2.js +20 -0
- package/dist-es/protocols/Aws_restJson1.js +21 -12
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -4
- package/dist-types/MediaConvertClient.d.ts +5 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePresetCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +33 -95
- package/dist-types/models/models_1.d.ts +114 -142
- package/dist-types/models/models_2.d.ts +106 -1
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/MediaConvertClient.d.ts +3 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +23 -53
- package/dist-types/ts3.4/models/models_1.d.ts +67 -87
- package/dist-types/ts3.4/models/models_2.d.ts +64 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +35 -35
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { MediaConvertClientConfig } from "./MediaConvertClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: MediaConvertClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: MediaConvertClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateCertificateCommandInput, AssociateCertificateCommandOutput } from "./commands/AssociateCertificateCommand";
|
|
10
10
|
import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
|
|
@@ -79,6 +79,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
79
79
|
regionInfoProvider?: RegionInfoProvider;
|
|
80
80
|
|
|
81
81
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
82
|
+
|
|
83
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
82
84
|
}
|
|
83
85
|
declare type MediaConvertClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
84
86
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
4
|
-
import { UntagResourceRequest, UntagResourceResponse } from "../models/
|
|
4
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_2";
|
|
5
5
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
4
|
-
import { UpdateJobTemplateRequest, UpdateJobTemplateResponse } from "../models/
|
|
4
|
+
import { UpdateJobTemplateRequest, UpdateJobTemplateResponse } from "../models/models_2";
|
|
5
5
|
export interface UpdateJobTemplateCommandInput extends UpdateJobTemplateRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateResponse, __MetadataBearer {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
4
|
-
import { UpdatePresetRequest } from "../models/
|
|
5
|
-
import { UpdatePresetResponse } from "../models/models_2";
|
|
4
|
+
import { UpdatePresetRequest, UpdatePresetResponse } from "../models/models_2";
|
|
6
5
|
export interface UpdatePresetCommandInput extends UpdatePresetRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface UpdatePresetCommandOutput extends UpdatePresetResponse, __MetadataBearer {
|
|
@@ -704,6 +704,7 @@ export declare enum LanguageCode {
|
|
|
704
704
|
SQI = "SQI",
|
|
705
705
|
SRB = "SRB",
|
|
706
706
|
SRD = "SRD",
|
|
707
|
+
SRP = "SRP",
|
|
707
708
|
SSW = "SSW",
|
|
708
709
|
SUN = "SUN",
|
|
709
710
|
SWA = "SWA",
|
|
@@ -1066,6 +1067,10 @@ export declare namespace EmbeddedDestinationSettings {
|
|
|
1066
1067
|
|
|
1067
1068
|
const filterSensitiveLog: (obj: EmbeddedDestinationSettings) => any;
|
|
1068
1069
|
}
|
|
1070
|
+
export declare enum ImscAccessibilitySubs {
|
|
1071
|
+
DISABLED = "DISABLED",
|
|
1072
|
+
ENABLED = "ENABLED"
|
|
1073
|
+
}
|
|
1069
1074
|
export declare enum ImscStylePassthrough {
|
|
1070
1075
|
DISABLED = "DISABLED",
|
|
1071
1076
|
ENABLED = "ENABLED"
|
|
@@ -1073,6 +1078,8 @@ export declare enum ImscStylePassthrough {
|
|
|
1073
1078
|
|
|
1074
1079
|
export interface ImscDestinationSettings {
|
|
1075
1080
|
|
|
1081
|
+
Accessibility?: ImscAccessibilitySubs | string;
|
|
1082
|
+
|
|
1076
1083
|
StylePassthrough?: ImscStylePassthrough | string;
|
|
1077
1084
|
}
|
|
1078
1085
|
export declare namespace ImscDestinationSettings {
|
|
@@ -1139,6 +1146,10 @@ export declare namespace TtmlDestinationSettings {
|
|
|
1139
1146
|
|
|
1140
1147
|
const filterSensitiveLog: (obj: TtmlDestinationSettings) => any;
|
|
1141
1148
|
}
|
|
1149
|
+
export declare enum WebvttAccessibilitySubs {
|
|
1150
|
+
DISABLED = "DISABLED",
|
|
1151
|
+
ENABLED = "ENABLED"
|
|
1152
|
+
}
|
|
1142
1153
|
export declare enum WebvttStylePassthrough {
|
|
1143
1154
|
DISABLED = "DISABLED",
|
|
1144
1155
|
ENABLED = "ENABLED"
|
|
@@ -1146,6 +1157,8 @@ export declare enum WebvttStylePassthrough {
|
|
|
1146
1157
|
|
|
1147
1158
|
export interface WebvttDestinationSettings {
|
|
1148
1159
|
|
|
1160
|
+
Accessibility?: WebvttAccessibilitySubs | string;
|
|
1161
|
+
|
|
1149
1162
|
StylePassthrough?: WebvttStylePassthrough | string;
|
|
1150
1163
|
}
|
|
1151
1164
|
export declare namespace WebvttDestinationSettings {
|
|
@@ -1743,6 +1756,8 @@ export interface Input {
|
|
|
1743
1756
|
|
|
1744
1757
|
DenoiseFilter?: InputDenoiseFilter | string;
|
|
1745
1758
|
|
|
1759
|
+
DolbyVisionMetadataXml?: string;
|
|
1760
|
+
|
|
1746
1761
|
FileInput?: string;
|
|
1747
1762
|
|
|
1748
1763
|
FilterEnable?: InputFilterEnable | string;
|
|
@@ -1794,6 +1809,8 @@ export interface InputTemplate {
|
|
|
1794
1809
|
|
|
1795
1810
|
DenoiseFilter?: InputDenoiseFilter | string;
|
|
1796
1811
|
|
|
1812
|
+
DolbyVisionMetadataXml?: string;
|
|
1813
|
+
|
|
1797
1814
|
FilterEnable?: InputFilterEnable | string;
|
|
1798
1815
|
|
|
1799
1816
|
FilterStrength?: number;
|
|
@@ -2811,6 +2828,10 @@ export declare enum CmfcScte35Source {
|
|
|
2811
2828
|
NONE = "NONE",
|
|
2812
2829
|
PASSTHROUGH = "PASSTHROUGH"
|
|
2813
2830
|
}
|
|
2831
|
+
export declare enum CmfcTimedMetadata {
|
|
2832
|
+
NONE = "NONE",
|
|
2833
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
2834
|
+
}
|
|
2814
2835
|
|
|
2815
2836
|
export interface CmfcSettings {
|
|
2816
2837
|
|
|
@@ -2829,6 +2850,8 @@ export interface CmfcSettings {
|
|
|
2829
2850
|
Scte35Esam?: CmfcScte35Esam | string;
|
|
2830
2851
|
|
|
2831
2852
|
Scte35Source?: CmfcScte35Source | string;
|
|
2853
|
+
|
|
2854
|
+
TimedMetadata?: CmfcTimedMetadata | string;
|
|
2832
2855
|
}
|
|
2833
2856
|
export declare namespace CmfcSettings {
|
|
2834
2857
|
|
|
@@ -3075,56 +3098,3 @@ export declare enum M3u8Scte35Source {
|
|
|
3075
3098
|
NONE = "NONE",
|
|
3076
3099
|
PASSTHROUGH = "PASSTHROUGH"
|
|
3077
3100
|
}
|
|
3078
|
-
export declare enum TimedMetadata {
|
|
3079
|
-
NONE = "NONE",
|
|
3080
|
-
PASSTHROUGH = "PASSTHROUGH"
|
|
3081
|
-
}
|
|
3082
|
-
|
|
3083
|
-
export interface M3u8Settings {
|
|
3084
|
-
|
|
3085
|
-
AudioDuration?: M3u8AudioDuration | string;
|
|
3086
|
-
|
|
3087
|
-
AudioFramesPerPes?: number;
|
|
3088
|
-
|
|
3089
|
-
AudioPids?: number[];
|
|
3090
|
-
|
|
3091
|
-
DataPTSControl?: M3u8DataPtsControl | string;
|
|
3092
|
-
|
|
3093
|
-
MaxPcrInterval?: number;
|
|
3094
|
-
|
|
3095
|
-
NielsenId3?: M3u8NielsenId3 | string;
|
|
3096
|
-
|
|
3097
|
-
PatInterval?: number;
|
|
3098
|
-
|
|
3099
|
-
PcrControl?: M3u8PcrControl | string;
|
|
3100
|
-
|
|
3101
|
-
PcrPid?: number;
|
|
3102
|
-
|
|
3103
|
-
PmtInterval?: number;
|
|
3104
|
-
|
|
3105
|
-
PmtPid?: number;
|
|
3106
|
-
|
|
3107
|
-
PrivateMetadataPid?: number;
|
|
3108
|
-
|
|
3109
|
-
ProgramNumber?: number;
|
|
3110
|
-
|
|
3111
|
-
Scte35Pid?: number;
|
|
3112
|
-
|
|
3113
|
-
Scte35Source?: M3u8Scte35Source | string;
|
|
3114
|
-
|
|
3115
|
-
TimedMetadata?: TimedMetadata | string;
|
|
3116
|
-
|
|
3117
|
-
TimedMetadataPid?: number;
|
|
3118
|
-
|
|
3119
|
-
TransportStreamId?: number;
|
|
3120
|
-
|
|
3121
|
-
VideoPid?: number;
|
|
3122
|
-
}
|
|
3123
|
-
export declare namespace M3u8Settings {
|
|
3124
|
-
|
|
3125
|
-
const filterSensitiveLog: (obj: M3u8Settings) => any;
|
|
3126
|
-
}
|
|
3127
|
-
export declare enum MovClapAtom {
|
|
3128
|
-
EXCLUDE = "EXCLUDE",
|
|
3129
|
-
INCLUDE = "INCLUDE"
|
|
3130
|
-
}
|
|
@@ -1,5 +1,58 @@
|
|
|
1
1
|
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
-
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsSettings,
|
|
2
|
+
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsSettings, M3u8AudioDuration, M3u8DataPtsControl, M3u8NielsenId3, M3u8PcrControl, M3u8Scte35Source, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
|
|
3
|
+
export declare enum TimedMetadata {
|
|
4
|
+
NONE = "NONE",
|
|
5
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export interface M3u8Settings {
|
|
9
|
+
|
|
10
|
+
AudioDuration?: M3u8AudioDuration | string;
|
|
11
|
+
|
|
12
|
+
AudioFramesPerPes?: number;
|
|
13
|
+
|
|
14
|
+
AudioPids?: number[];
|
|
15
|
+
|
|
16
|
+
DataPTSControl?: M3u8DataPtsControl | string;
|
|
17
|
+
|
|
18
|
+
MaxPcrInterval?: number;
|
|
19
|
+
|
|
20
|
+
NielsenId3?: M3u8NielsenId3 | string;
|
|
21
|
+
|
|
22
|
+
PatInterval?: number;
|
|
23
|
+
|
|
24
|
+
PcrControl?: M3u8PcrControl | string;
|
|
25
|
+
|
|
26
|
+
PcrPid?: number;
|
|
27
|
+
|
|
28
|
+
PmtInterval?: number;
|
|
29
|
+
|
|
30
|
+
PmtPid?: number;
|
|
31
|
+
|
|
32
|
+
PrivateMetadataPid?: number;
|
|
33
|
+
|
|
34
|
+
ProgramNumber?: number;
|
|
35
|
+
|
|
36
|
+
Scte35Pid?: number;
|
|
37
|
+
|
|
38
|
+
Scte35Source?: M3u8Scte35Source | string;
|
|
39
|
+
|
|
40
|
+
TimedMetadata?: TimedMetadata | string;
|
|
41
|
+
|
|
42
|
+
TimedMetadataPid?: number;
|
|
43
|
+
|
|
44
|
+
TransportStreamId?: number;
|
|
45
|
+
|
|
46
|
+
VideoPid?: number;
|
|
47
|
+
}
|
|
48
|
+
export declare namespace M3u8Settings {
|
|
49
|
+
|
|
50
|
+
const filterSensitiveLog: (obj: M3u8Settings) => any;
|
|
51
|
+
}
|
|
52
|
+
export declare enum MovClapAtom {
|
|
53
|
+
EXCLUDE = "EXCLUDE",
|
|
54
|
+
INCLUDE = "INCLUDE"
|
|
55
|
+
}
|
|
3
56
|
export declare enum MovCslgAtom {
|
|
4
57
|
EXCLUDE = "EXCLUDE",
|
|
5
58
|
INCLUDE = "INCLUDE"
|
|
@@ -84,6 +137,10 @@ export declare enum MpdScte35Source {
|
|
|
84
137
|
NONE = "NONE",
|
|
85
138
|
PASSTHROUGH = "PASSTHROUGH"
|
|
86
139
|
}
|
|
140
|
+
export declare enum MpdTimedMetadata {
|
|
141
|
+
NONE = "NONE",
|
|
142
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
143
|
+
}
|
|
87
144
|
|
|
88
145
|
export interface MpdSettings {
|
|
89
146
|
|
|
@@ -96,6 +153,8 @@ export interface MpdSettings {
|
|
|
96
153
|
Scte35Esam?: MpdScte35Esam | string;
|
|
97
154
|
|
|
98
155
|
Scte35Source?: MpdScte35Source | string;
|
|
156
|
+
|
|
157
|
+
TimedMetadata?: MpdTimedMetadata | string;
|
|
99
158
|
}
|
|
100
159
|
export declare namespace MpdSettings {
|
|
101
160
|
|
|
@@ -229,6 +288,10 @@ export declare enum Av1AdaptiveQuantization {
|
|
|
229
288
|
MEDIUM = "MEDIUM",
|
|
230
289
|
OFF = "OFF"
|
|
231
290
|
}
|
|
291
|
+
export declare enum Av1BitDepth {
|
|
292
|
+
BIT_10 = "BIT_10",
|
|
293
|
+
BIT_8 = "BIT_8"
|
|
294
|
+
}
|
|
232
295
|
export declare enum Av1FramerateControl {
|
|
233
296
|
INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
|
|
234
297
|
SPECIFIED = "SPECIFIED"
|
|
@@ -261,6 +324,8 @@ export interface Av1Settings {
|
|
|
261
324
|
|
|
262
325
|
AdaptiveQuantization?: Av1AdaptiveQuantization | string;
|
|
263
326
|
|
|
327
|
+
BitDepth?: Av1BitDepth | string;
|
|
328
|
+
|
|
264
329
|
FramerateControl?: Av1FramerateControl | string;
|
|
265
330
|
|
|
266
331
|
FramerateConversionAlgorithm?: Av1FramerateConversionAlgorithm | string;
|
|
@@ -620,6 +685,7 @@ export declare namespace H264Settings {
|
|
|
620
685
|
const filterSensitiveLog: (obj: H264Settings) => any;
|
|
621
686
|
}
|
|
622
687
|
export declare enum H265AdaptiveQuantization {
|
|
688
|
+
AUTO = "AUTO",
|
|
623
689
|
HIGH = "HIGH",
|
|
624
690
|
HIGHER = "HIGHER",
|
|
625
691
|
LOW = "LOW",
|
|
@@ -2200,60 +2266,36 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
|
|
|
2200
2266
|
$fault: "client";
|
|
2201
2267
|
Message?: string;
|
|
2202
2268
|
}
|
|
2203
|
-
export declare namespace BadRequestException {
|
|
2204
|
-
|
|
2205
|
-
const filterSensitiveLog: (obj: BadRequestException) => any;
|
|
2206
|
-
}
|
|
2207
2269
|
|
|
2208
2270
|
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
2209
2271
|
name: "ConflictException";
|
|
2210
2272
|
$fault: "client";
|
|
2211
2273
|
Message?: string;
|
|
2212
2274
|
}
|
|
2213
|
-
export declare namespace ConflictException {
|
|
2214
|
-
|
|
2215
|
-
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
2216
|
-
}
|
|
2217
2275
|
|
|
2218
2276
|
export interface ForbiddenException extends __SmithyException, $MetadataBearer {
|
|
2219
2277
|
name: "ForbiddenException";
|
|
2220
2278
|
$fault: "client";
|
|
2221
2279
|
Message?: string;
|
|
2222
2280
|
}
|
|
2223
|
-
export declare namespace ForbiddenException {
|
|
2224
|
-
|
|
2225
|
-
const filterSensitiveLog: (obj: ForbiddenException) => any;
|
|
2226
|
-
}
|
|
2227
2281
|
|
|
2228
2282
|
export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
|
|
2229
2283
|
name: "InternalServerErrorException";
|
|
2230
2284
|
$fault: "server";
|
|
2231
2285
|
Message?: string;
|
|
2232
2286
|
}
|
|
2233
|
-
export declare namespace InternalServerErrorException {
|
|
2234
|
-
|
|
2235
|
-
const filterSensitiveLog: (obj: InternalServerErrorException) => any;
|
|
2236
|
-
}
|
|
2237
2287
|
|
|
2238
2288
|
export interface NotFoundException extends __SmithyException, $MetadataBearer {
|
|
2239
2289
|
name: "NotFoundException";
|
|
2240
2290
|
$fault: "client";
|
|
2241
2291
|
Message?: string;
|
|
2242
2292
|
}
|
|
2243
|
-
export declare namespace NotFoundException {
|
|
2244
|
-
|
|
2245
|
-
const filterSensitiveLog: (obj: NotFoundException) => any;
|
|
2246
|
-
}
|
|
2247
2293
|
|
|
2248
2294
|
export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
|
|
2249
2295
|
name: "TooManyRequestsException";
|
|
2250
2296
|
$fault: "client";
|
|
2251
2297
|
Message?: string;
|
|
2252
2298
|
}
|
|
2253
|
-
export declare namespace TooManyRequestsException {
|
|
2254
|
-
|
|
2255
|
-
const filterSensitiveLog: (obj: TooManyRequestsException) => any;
|
|
2256
|
-
}
|
|
2257
2299
|
export interface CancelJobRequest {
|
|
2258
2300
|
|
|
2259
2301
|
Id: string | undefined;
|
|
@@ -2788,65 +2830,3 @@ export declare namespace TagResourceResponse {
|
|
|
2788
2830
|
|
|
2789
2831
|
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2790
2832
|
}
|
|
2791
|
-
export interface UntagResourceRequest {
|
|
2792
|
-
|
|
2793
|
-
Arn: string | undefined;
|
|
2794
|
-
|
|
2795
|
-
TagKeys?: string[];
|
|
2796
|
-
}
|
|
2797
|
-
export declare namespace UntagResourceRequest {
|
|
2798
|
-
|
|
2799
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2800
|
-
}
|
|
2801
|
-
export interface UntagResourceResponse {
|
|
2802
|
-
}
|
|
2803
|
-
export declare namespace UntagResourceResponse {
|
|
2804
|
-
|
|
2805
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2806
|
-
}
|
|
2807
|
-
export interface UpdateJobTemplateRequest {
|
|
2808
|
-
|
|
2809
|
-
AccelerationSettings?: AccelerationSettings;
|
|
2810
|
-
|
|
2811
|
-
Category?: string;
|
|
2812
|
-
|
|
2813
|
-
Description?: string;
|
|
2814
|
-
|
|
2815
|
-
HopDestinations?: HopDestination[];
|
|
2816
|
-
|
|
2817
|
-
Name: string | undefined;
|
|
2818
|
-
|
|
2819
|
-
Priority?: number;
|
|
2820
|
-
|
|
2821
|
-
Queue?: string;
|
|
2822
|
-
|
|
2823
|
-
Settings?: JobTemplateSettings;
|
|
2824
|
-
|
|
2825
|
-
StatusUpdateInterval?: StatusUpdateInterval | string;
|
|
2826
|
-
}
|
|
2827
|
-
export declare namespace UpdateJobTemplateRequest {
|
|
2828
|
-
|
|
2829
|
-
const filterSensitiveLog: (obj: UpdateJobTemplateRequest) => any;
|
|
2830
|
-
}
|
|
2831
|
-
export interface UpdateJobTemplateResponse {
|
|
2832
|
-
|
|
2833
|
-
JobTemplate?: JobTemplate;
|
|
2834
|
-
}
|
|
2835
|
-
export declare namespace UpdateJobTemplateResponse {
|
|
2836
|
-
|
|
2837
|
-
const filterSensitiveLog: (obj: UpdateJobTemplateResponse) => any;
|
|
2838
|
-
}
|
|
2839
|
-
export interface UpdatePresetRequest {
|
|
2840
|
-
|
|
2841
|
-
Category?: string;
|
|
2842
|
-
|
|
2843
|
-
Description?: string;
|
|
2844
|
-
|
|
2845
|
-
Name: string | undefined;
|
|
2846
|
-
|
|
2847
|
-
Settings?: PresetSettings;
|
|
2848
|
-
}
|
|
2849
|
-
export declare namespace UpdatePresetRequest {
|
|
2850
|
-
|
|
2851
|
-
const filterSensitiveLog: (obj: UpdatePresetRequest) => any;
|
|
2852
|
-
}
|
|
@@ -1,4 +1,67 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AccelerationSettings, HopDestination } from "./models_0";
|
|
2
|
+
import { JobTemplate, JobTemplateSettings, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
|
|
3
|
+
export interface UntagResourceRequest {
|
|
4
|
+
|
|
5
|
+
Arn: string | undefined;
|
|
6
|
+
|
|
7
|
+
TagKeys?: string[];
|
|
8
|
+
}
|
|
9
|
+
export declare namespace UntagResourceRequest {
|
|
10
|
+
|
|
11
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
12
|
+
}
|
|
13
|
+
export interface UntagResourceResponse {
|
|
14
|
+
}
|
|
15
|
+
export declare namespace UntagResourceResponse {
|
|
16
|
+
|
|
17
|
+
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
18
|
+
}
|
|
19
|
+
export interface UpdateJobTemplateRequest {
|
|
20
|
+
|
|
21
|
+
AccelerationSettings?: AccelerationSettings;
|
|
22
|
+
|
|
23
|
+
Category?: string;
|
|
24
|
+
|
|
25
|
+
Description?: string;
|
|
26
|
+
|
|
27
|
+
HopDestinations?: HopDestination[];
|
|
28
|
+
|
|
29
|
+
Name: string | undefined;
|
|
30
|
+
|
|
31
|
+
Priority?: number;
|
|
32
|
+
|
|
33
|
+
Queue?: string;
|
|
34
|
+
|
|
35
|
+
Settings?: JobTemplateSettings;
|
|
36
|
+
|
|
37
|
+
StatusUpdateInterval?: StatusUpdateInterval | string;
|
|
38
|
+
}
|
|
39
|
+
export declare namespace UpdateJobTemplateRequest {
|
|
40
|
+
|
|
41
|
+
const filterSensitiveLog: (obj: UpdateJobTemplateRequest) => any;
|
|
42
|
+
}
|
|
43
|
+
export interface UpdateJobTemplateResponse {
|
|
44
|
+
|
|
45
|
+
JobTemplate?: JobTemplate;
|
|
46
|
+
}
|
|
47
|
+
export declare namespace UpdateJobTemplateResponse {
|
|
48
|
+
|
|
49
|
+
const filterSensitiveLog: (obj: UpdateJobTemplateResponse) => any;
|
|
50
|
+
}
|
|
51
|
+
export interface UpdatePresetRequest {
|
|
52
|
+
|
|
53
|
+
Category?: string;
|
|
54
|
+
|
|
55
|
+
Description?: string;
|
|
56
|
+
|
|
57
|
+
Name: string | undefined;
|
|
58
|
+
|
|
59
|
+
Settings?: PresetSettings;
|
|
60
|
+
}
|
|
61
|
+
export declare namespace UpdatePresetRequest {
|
|
62
|
+
|
|
63
|
+
const filterSensitiveLog: (obj: UpdatePresetRequest) => any;
|
|
64
|
+
}
|
|
2
65
|
export interface UpdatePresetResponse {
|
|
3
66
|
|
|
4
67
|
Preset?: Preset;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { MediaConvertClientConfig } from "./MediaConvertClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: MediaConvertClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: MediaConvertClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { MediaConvertClientConfig } from "./MediaConvertClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: MediaConvertClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: MediaConvertClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|