@aws-sdk/client-mediaconvert 3.168.0 → 3.170.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.
Files changed (52) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/MediaConvert.d.ts +508 -145
  3. package/dist-types/ts3.4/MediaConvertClient.d.ts +298 -101
  4. package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/GetPresetCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/GetQueueCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +35 -18
  23. package/dist-types/ts3.4/commands/ListPresetsCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +38 -17
  30. package/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +34 -17
  31. package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +34 -17
  32. package/dist-types/ts3.4/commands/index.d.ts +28 -28
  33. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  34. package/dist-types/ts3.4/index.d.ts +6 -6
  35. package/dist-types/ts3.4/models/MediaConvertServiceException.d.ts +8 -6
  36. package/dist-types/ts3.4/models/index.d.ts +3 -3
  37. package/dist-types/ts3.4/models/models_0.d.ts +2930 -2849
  38. package/dist-types/ts3.4/models/models_1.d.ts +2735 -2642
  39. package/dist-types/ts3.4/models/models_2.d.ts +237 -204
  40. package/dist-types/ts3.4/pagination/DescribeEndpointsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  42. package/dist-types/ts3.4/pagination/ListJobTemplatesPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListPresetsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  52. package/package.json +34 -34
@@ -1,101 +1,298 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, 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
- import { AssociateCertificateCommandInput, AssociateCertificateCommandOutput } from "./commands/AssociateCertificateCommand";
10
- import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
11
- import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
12
- import { CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput } from "./commands/CreateJobTemplateCommand";
13
- import { CreatePresetCommandInput, CreatePresetCommandOutput } from "./commands/CreatePresetCommand";
14
- import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
15
- import { DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput } from "./commands/DeleteJobTemplateCommand";
16
- import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
17
- import { DeletePresetCommandInput, DeletePresetCommandOutput } from "./commands/DeletePresetCommand";
18
- import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/DeleteQueueCommand";
19
- import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
20
- import { DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput } from "./commands/DisassociateCertificateCommand";
21
- import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
22
- import { GetJobTemplateCommandInput, GetJobTemplateCommandOutput } from "./commands/GetJobTemplateCommand";
23
- import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
24
- import { GetPresetCommandInput, GetPresetCommandOutput } from "./commands/GetPresetCommand";
25
- import { GetQueueCommandInput, GetQueueCommandOutput } from "./commands/GetQueueCommand";
26
- import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
27
- import { ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput } from "./commands/ListJobTemplatesCommand";
28
- import { ListPresetsCommandInput, ListPresetsCommandOutput } from "./commands/ListPresetsCommand";
29
- import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
30
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
31
- import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
32
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
33
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
34
- import { UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput } from "./commands/UpdateJobTemplateCommand";
35
- import { UpdatePresetCommandInput, UpdatePresetCommandOutput } from "./commands/UpdatePresetCommand";
36
- import { UpdateQueueCommandInput, UpdateQueueCommandOutput } from "./commands/UpdateQueueCommand";
37
- export declare type ServiceInputTypes = AssociateCertificateCommandInput | CancelJobCommandInput | CreateJobCommandInput | CreateJobTemplateCommandInput | CreatePresetCommandInput | CreateQueueCommandInput | DeleteJobTemplateCommandInput | DeletePolicyCommandInput | DeletePresetCommandInput | DeleteQueueCommandInput | DescribeEndpointsCommandInput | DisassociateCertificateCommandInput | GetJobCommandInput | GetJobTemplateCommandInput | GetPolicyCommandInput | GetPresetCommandInput | GetQueueCommandInput | ListJobTemplatesCommandInput | ListJobsCommandInput | ListPresetsCommandInput | ListQueuesCommandInput | ListTagsForResourceCommandInput | PutPolicyCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateJobTemplateCommandInput | UpdatePresetCommandInput | UpdateQueueCommandInput;
38
- export declare type ServiceOutputTypes = AssociateCertificateCommandOutput | CancelJobCommandOutput | CreateJobCommandOutput | CreateJobTemplateCommandOutput | CreatePresetCommandOutput | CreateQueueCommandOutput | DeleteJobTemplateCommandOutput | DeletePolicyCommandOutput | DeletePresetCommandOutput | DeleteQueueCommandOutput | DescribeEndpointsCommandOutput | DisassociateCertificateCommandOutput | GetJobCommandOutput | GetJobTemplateCommandOutput | GetPolicyCommandOutput | GetPresetCommandOutput | GetQueueCommandOutput | ListJobTemplatesCommandOutput | ListJobsCommandOutput | ListPresetsCommandOutput | ListQueuesCommandOutput | ListTagsForResourceCommandOutput | PutPolicyCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateJobTemplateCommandOutput | UpdatePresetCommandOutput | UpdateQueueCommandOutput;
39
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
40
-
41
- requestHandler?: __HttpHandler;
42
-
43
- sha256?: __HashConstructor;
44
-
45
- urlParser?: __UrlParser;
46
-
47
- bodyLengthChecker?: __BodyLengthCalculator;
48
-
49
- streamCollector?: __StreamCollector;
50
-
51
- base64Decoder?: __Decoder;
52
-
53
- base64Encoder?: __Encoder;
54
-
55
- utf8Decoder?: __Decoder;
56
-
57
- utf8Encoder?: __Encoder;
58
-
59
- runtime?: string;
60
-
61
- disableHostPrefix?: boolean;
62
-
63
- maxAttempts?: number | __Provider<number>;
64
-
65
- retryMode?: string | __Provider<string>;
66
-
67
- logger?: __Logger;
68
-
69
- useDualstackEndpoint?: boolean | __Provider<boolean>;
70
-
71
- useFipsEndpoint?: boolean | __Provider<boolean>;
72
-
73
- serviceId?: string;
74
-
75
- region?: string | __Provider<string>;
76
-
77
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
78
-
79
- regionInfoProvider?: RegionInfoProvider;
80
-
81
- defaultUserAgentProvider?: Provider<__UserAgent>;
82
-
83
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
84
- }
85
- declare type MediaConvertClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
86
-
87
- export interface MediaConvertClientConfig extends MediaConvertClientConfigType {
88
- }
89
- declare type MediaConvertClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
90
-
91
- export interface MediaConvertClientResolvedConfig extends MediaConvertClientResolvedConfigType {
92
- }
93
-
94
- export declare class MediaConvertClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MediaConvertClientResolvedConfig> {
95
-
96
- readonly config: MediaConvertClientResolvedConfig;
97
- constructor(configuration: MediaConvertClientConfig);
98
-
99
- destroy(): void;
100
- }
101
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ AssociateCertificateCommandInput,
47
+ AssociateCertificateCommandOutput,
48
+ } from "./commands/AssociateCertificateCommand";
49
+ import {
50
+ CancelJobCommandInput,
51
+ CancelJobCommandOutput,
52
+ } from "./commands/CancelJobCommand";
53
+ import {
54
+ CreateJobCommandInput,
55
+ CreateJobCommandOutput,
56
+ } from "./commands/CreateJobCommand";
57
+ import {
58
+ CreateJobTemplateCommandInput,
59
+ CreateJobTemplateCommandOutput,
60
+ } from "./commands/CreateJobTemplateCommand";
61
+ import {
62
+ CreatePresetCommandInput,
63
+ CreatePresetCommandOutput,
64
+ } from "./commands/CreatePresetCommand";
65
+ import {
66
+ CreateQueueCommandInput,
67
+ CreateQueueCommandOutput,
68
+ } from "./commands/CreateQueueCommand";
69
+ import {
70
+ DeleteJobTemplateCommandInput,
71
+ DeleteJobTemplateCommandOutput,
72
+ } from "./commands/DeleteJobTemplateCommand";
73
+ import {
74
+ DeletePolicyCommandInput,
75
+ DeletePolicyCommandOutput,
76
+ } from "./commands/DeletePolicyCommand";
77
+ import {
78
+ DeletePresetCommandInput,
79
+ DeletePresetCommandOutput,
80
+ } from "./commands/DeletePresetCommand";
81
+ import {
82
+ DeleteQueueCommandInput,
83
+ DeleteQueueCommandOutput,
84
+ } from "./commands/DeleteQueueCommand";
85
+ import {
86
+ DescribeEndpointsCommandInput,
87
+ DescribeEndpointsCommandOutput,
88
+ } from "./commands/DescribeEndpointsCommand";
89
+ import {
90
+ DisassociateCertificateCommandInput,
91
+ DisassociateCertificateCommandOutput,
92
+ } from "./commands/DisassociateCertificateCommand";
93
+ import {
94
+ GetJobCommandInput,
95
+ GetJobCommandOutput,
96
+ } from "./commands/GetJobCommand";
97
+ import {
98
+ GetJobTemplateCommandInput,
99
+ GetJobTemplateCommandOutput,
100
+ } from "./commands/GetJobTemplateCommand";
101
+ import {
102
+ GetPolicyCommandInput,
103
+ GetPolicyCommandOutput,
104
+ } from "./commands/GetPolicyCommand";
105
+ import {
106
+ GetPresetCommandInput,
107
+ GetPresetCommandOutput,
108
+ } from "./commands/GetPresetCommand";
109
+ import {
110
+ GetQueueCommandInput,
111
+ GetQueueCommandOutput,
112
+ } from "./commands/GetQueueCommand";
113
+ import {
114
+ ListJobsCommandInput,
115
+ ListJobsCommandOutput,
116
+ } from "./commands/ListJobsCommand";
117
+ import {
118
+ ListJobTemplatesCommandInput,
119
+ ListJobTemplatesCommandOutput,
120
+ } from "./commands/ListJobTemplatesCommand";
121
+ import {
122
+ ListPresetsCommandInput,
123
+ ListPresetsCommandOutput,
124
+ } from "./commands/ListPresetsCommand";
125
+ import {
126
+ ListQueuesCommandInput,
127
+ ListQueuesCommandOutput,
128
+ } from "./commands/ListQueuesCommand";
129
+ import {
130
+ ListTagsForResourceCommandInput,
131
+ ListTagsForResourceCommandOutput,
132
+ } from "./commands/ListTagsForResourceCommand";
133
+ import {
134
+ PutPolicyCommandInput,
135
+ PutPolicyCommandOutput,
136
+ } from "./commands/PutPolicyCommand";
137
+ import {
138
+ TagResourceCommandInput,
139
+ TagResourceCommandOutput,
140
+ } from "./commands/TagResourceCommand";
141
+ import {
142
+ UntagResourceCommandInput,
143
+ UntagResourceCommandOutput,
144
+ } from "./commands/UntagResourceCommand";
145
+ import {
146
+ UpdateJobTemplateCommandInput,
147
+ UpdateJobTemplateCommandOutput,
148
+ } from "./commands/UpdateJobTemplateCommand";
149
+ import {
150
+ UpdatePresetCommandInput,
151
+ UpdatePresetCommandOutput,
152
+ } from "./commands/UpdatePresetCommand";
153
+ import {
154
+ UpdateQueueCommandInput,
155
+ UpdateQueueCommandOutput,
156
+ } from "./commands/UpdateQueueCommand";
157
+ export declare type ServiceInputTypes =
158
+ | AssociateCertificateCommandInput
159
+ | CancelJobCommandInput
160
+ | CreateJobCommandInput
161
+ | CreateJobTemplateCommandInput
162
+ | CreatePresetCommandInput
163
+ | CreateQueueCommandInput
164
+ | DeleteJobTemplateCommandInput
165
+ | DeletePolicyCommandInput
166
+ | DeletePresetCommandInput
167
+ | DeleteQueueCommandInput
168
+ | DescribeEndpointsCommandInput
169
+ | DisassociateCertificateCommandInput
170
+ | GetJobCommandInput
171
+ | GetJobTemplateCommandInput
172
+ | GetPolicyCommandInput
173
+ | GetPresetCommandInput
174
+ | GetQueueCommandInput
175
+ | ListJobTemplatesCommandInput
176
+ | ListJobsCommandInput
177
+ | ListPresetsCommandInput
178
+ | ListQueuesCommandInput
179
+ | ListTagsForResourceCommandInput
180
+ | PutPolicyCommandInput
181
+ | TagResourceCommandInput
182
+ | UntagResourceCommandInput
183
+ | UpdateJobTemplateCommandInput
184
+ | UpdatePresetCommandInput
185
+ | UpdateQueueCommandInput;
186
+ export declare type ServiceOutputTypes =
187
+ | AssociateCertificateCommandOutput
188
+ | CancelJobCommandOutput
189
+ | CreateJobCommandOutput
190
+ | CreateJobTemplateCommandOutput
191
+ | CreatePresetCommandOutput
192
+ | CreateQueueCommandOutput
193
+ | DeleteJobTemplateCommandOutput
194
+ | DeletePolicyCommandOutput
195
+ | DeletePresetCommandOutput
196
+ | DeleteQueueCommandOutput
197
+ | DescribeEndpointsCommandOutput
198
+ | DisassociateCertificateCommandOutput
199
+ | GetJobCommandOutput
200
+ | GetJobTemplateCommandOutput
201
+ | GetPolicyCommandOutput
202
+ | GetPresetCommandOutput
203
+ | GetQueueCommandOutput
204
+ | ListJobTemplatesCommandOutput
205
+ | ListJobsCommandOutput
206
+ | ListPresetsCommandOutput
207
+ | ListQueuesCommandOutput
208
+ | ListTagsForResourceCommandOutput
209
+ | PutPolicyCommandOutput
210
+ | TagResourceCommandOutput
211
+ | UntagResourceCommandOutput
212
+ | UpdateJobTemplateCommandOutput
213
+ | UpdatePresetCommandOutput
214
+ | UpdateQueueCommandOutput;
215
+ export interface ClientDefaults
216
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
217
+ requestHandler?: __HttpHandler;
218
+
219
+ sha256?: __HashConstructor;
220
+
221
+ urlParser?: __UrlParser;
222
+
223
+ bodyLengthChecker?: __BodyLengthCalculator;
224
+
225
+ streamCollector?: __StreamCollector;
226
+
227
+ base64Decoder?: __Decoder;
228
+
229
+ base64Encoder?: __Encoder;
230
+
231
+ utf8Decoder?: __Decoder;
232
+
233
+ utf8Encoder?: __Encoder;
234
+
235
+ runtime?: string;
236
+
237
+ disableHostPrefix?: boolean;
238
+
239
+ maxAttempts?: number | __Provider<number>;
240
+
241
+ retryMode?: string | __Provider<string>;
242
+
243
+ logger?: __Logger;
244
+
245
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
246
+
247
+ useFipsEndpoint?: boolean | __Provider<boolean>;
248
+
249
+ serviceId?: string;
250
+
251
+ region?: string | __Provider<string>;
252
+
253
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
254
+
255
+ regionInfoProvider?: RegionInfoProvider;
256
+
257
+ defaultUserAgentProvider?: Provider<__UserAgent>;
258
+
259
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
260
+ }
261
+ declare type MediaConvertClientConfigType = Partial<
262
+ __SmithyConfiguration<__HttpHandlerOptions>
263
+ > &
264
+ ClientDefaults &
265
+ RegionInputConfig &
266
+ EndpointsInputConfig &
267
+ RetryInputConfig &
268
+ HostHeaderInputConfig &
269
+ AwsAuthInputConfig &
270
+ UserAgentInputConfig;
271
+
272
+ export interface MediaConvertClientConfig
273
+ extends MediaConvertClientConfigType {}
274
+ declare type MediaConvertClientResolvedConfigType =
275
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
276
+ Required<ClientDefaults> &
277
+ RegionResolvedConfig &
278
+ EndpointsResolvedConfig &
279
+ RetryResolvedConfig &
280
+ HostHeaderResolvedConfig &
281
+ AwsAuthResolvedConfig &
282
+ UserAgentResolvedConfig;
283
+
284
+ export interface MediaConvertClientResolvedConfig
285
+ extends MediaConvertClientResolvedConfigType {}
286
+
287
+ export declare class MediaConvertClient extends __Client<
288
+ __HttpHandlerOptions,
289
+ ServiceInputTypes,
290
+ ServiceOutputTypes,
291
+ MediaConvertClientResolvedConfig
292
+ > {
293
+ readonly config: MediaConvertClientResolvedConfig;
294
+ constructor(configuration: MediaConvertClientConfig);
295
+
296
+ destroy(): void;
297
+ }
298
+ export {};
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { AssociateCertificateRequest, AssociateCertificateResponse } from "../models/models_1";
5
- export interface AssociateCertificateCommandInput extends AssociateCertificateRequest {
6
- }
7
- export interface AssociateCertificateCommandOutput extends AssociateCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class AssociateCertificateCommand extends $Command<AssociateCertificateCommandInput, AssociateCertificateCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: AssociateCertificateCommandInput;
12
- constructor(input: AssociateCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateCertificateCommandInput, AssociateCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConvertClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConvertClient";
13
+ import {
14
+ AssociateCertificateRequest,
15
+ AssociateCertificateResponse,
16
+ } from "../models/models_1";
17
+ export interface AssociateCertificateCommandInput
18
+ extends AssociateCertificateRequest {}
19
+ export interface AssociateCertificateCommandOutput
20
+ extends AssociateCertificateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class AssociateCertificateCommand extends $Command<
24
+ AssociateCertificateCommandInput,
25
+ AssociateCertificateCommandOutput,
26
+ MediaConvertClientResolvedConfig
27
+ > {
28
+ readonly input: AssociateCertificateCommandInput;
29
+ constructor(input: AssociateCertificateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConvertClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ AssociateCertificateCommandInput,
37
+ AssociateCertificateCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { CancelJobRequest, CancelJobResponse } from "../models/models_1";
5
- export interface CancelJobCommandInput extends CancelJobRequest {
6
- }
7
- export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CancelJobCommand extends $Command<CancelJobCommandInput, CancelJobCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: CancelJobCommandInput;
12
- constructor(input: CancelJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelJobCommandInput, CancelJobCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConvertClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConvertClient";
13
+ import { CancelJobRequest, CancelJobResponse } from "../models/models_1";
14
+ export interface CancelJobCommandInput extends CancelJobRequest {}
15
+ export interface CancelJobCommandOutput
16
+ extends CancelJobResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CancelJobCommand extends $Command<
20
+ CancelJobCommandInput,
21
+ CancelJobCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: CancelJobCommandInput;
25
+ constructor(input: CancelJobCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CancelJobCommandInput, CancelJobCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { CreateJobRequest, CreateJobResponse } from "../models/models_1";
5
- export interface CreateJobCommandInput extends CreateJobRequest {
6
- }
7
- export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateJobCommand extends $Command<CreateJobCommandInput, CreateJobCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: CreateJobCommandInput;
12
- constructor(input: CreateJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateJobCommandInput, CreateJobCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConvertClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConvertClient";
13
+ import { CreateJobRequest, CreateJobResponse } from "../models/models_1";
14
+ export interface CreateJobCommandInput extends CreateJobRequest {}
15
+ export interface CreateJobCommandOutput
16
+ extends CreateJobResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateJobCommand extends $Command<
20
+ CreateJobCommandInput,
21
+ CreateJobCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: CreateJobCommandInput;
25
+ constructor(input: CreateJobCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateJobCommandInput, CreateJobCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_1";
5
- export interface CreateJobTemplateCommandInput extends CreateJobTemplateRequest {
6
- }
7
- export interface CreateJobTemplateCommandOutput extends CreateJobTemplateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateJobTemplateCommand extends $Command<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: CreateJobTemplateCommandInput;
12
- constructor(input: CreateJobTemplateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConvertClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConvertClient";
13
+ import {
14
+ CreateJobTemplateRequest,
15
+ CreateJobTemplateResponse,
16
+ } from "../models/models_1";
17
+ export interface CreateJobTemplateCommandInput
18
+ extends CreateJobTemplateRequest {}
19
+ export interface CreateJobTemplateCommandOutput
20
+ extends CreateJobTemplateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateJobTemplateCommand extends $Command<
24
+ CreateJobTemplateCommandInput,
25
+ CreateJobTemplateCommandOutput,
26
+ MediaConvertClientResolvedConfig
27
+ > {
28
+ readonly input: CreateJobTemplateCommandInput;
29
+ constructor(input: CreateJobTemplateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConvertClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }