@aws-sdk/client-mediaconvert 3.50.0 → 3.53.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 (63) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/MediaConvertServiceException.js +11 -0
  4. package/dist-cjs/models/models_1.js +87 -2
  5. package/dist-cjs/protocols/Aws_restJson1.js +390 -1366
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/MediaConvertServiceException.js +12 -0
  8. package/dist-es/models/models_1.js +80 -1
  9. package/dist-es/protocols/Aws_restJson1.js +771 -1485
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/MediaConvertServiceException.d.ts +10 -0
  12. package/dist-types/models/models_1.d.ts +44 -19
  13. package/dist-types/ts3.4/MediaConvert.d.ts +145 -0
  14. package/dist-types/ts3.4/MediaConvertClient.d.ts +101 -0
  15. package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/GetPresetCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/GetQueueCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/ListPresetsCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +28 -0
  44. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  45. package/dist-types/ts3.4/index.d.ts +6 -0
  46. package/dist-types/ts3.4/models/MediaConvertServiceException.d.ts +6 -0
  47. package/dist-types/ts3.4/models/index.d.ts +3 -0
  48. package/dist-types/ts3.4/models/models_0.d.ts +3100 -0
  49. package/dist-types/ts3.4/models/models_1.d.ts +2845 -0
  50. package/dist-types/ts3.4/models/models_2.d.ts +94 -0
  51. package/dist-types/ts3.4/pagination/DescribeEndpointsPaginator.d.ts +4 -0
  52. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  53. package/dist-types/ts3.4/pagination/ListJobTemplatesPaginator.d.ts +4 -0
  54. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +4 -0
  55. package/dist-types/ts3.4/pagination/ListPresetsPaginator.d.ts +4 -0
  56. package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +4 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  58. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +86 -0
  59. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  60. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  61. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  62. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  63. package/package.json +33 -33
@@ -3,3 +3,4 @@ export * from "./MediaConvertClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { MediaConvertServiceException } from "./models/MediaConvertServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from MediaConvert service.
4
+ */
5
+ export declare class MediaConvertServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
2
3
  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
4
  export declare enum TimedMetadata {
4
5
  NONE = "NONE",
@@ -3447,50 +3448,74 @@ export declare namespace AssociateCertificateResponse {
3447
3448
  /**
3448
3449
  * The service can't process your request because of a problem in the request. Please check your request form and syntax.
3449
3450
  */
3450
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
3451
- name: "BadRequestException";
3452
- $fault: "client";
3451
+ export declare class BadRequestException extends __BaseException {
3452
+ readonly name: "BadRequestException";
3453
+ readonly $fault: "client";
3453
3454
  Message?: string;
3455
+ /**
3456
+ * @internal
3457
+ */
3458
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
3454
3459
  }
3455
3460
  /**
3456
3461
  * The service couldn't complete your request because there is a conflict with the current state of the resource.
3457
3462
  */
3458
- export interface ConflictException extends __SmithyException, $MetadataBearer {
3459
- name: "ConflictException";
3460
- $fault: "client";
3463
+ export declare class ConflictException extends __BaseException {
3464
+ readonly name: "ConflictException";
3465
+ readonly $fault: "client";
3461
3466
  Message?: string;
3467
+ /**
3468
+ * @internal
3469
+ */
3470
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
3462
3471
  }
3463
3472
  /**
3464
3473
  * You don't have permissions for this action with the credentials you sent.
3465
3474
  */
3466
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
3467
- name: "ForbiddenException";
3468
- $fault: "client";
3475
+ export declare class ForbiddenException extends __BaseException {
3476
+ readonly name: "ForbiddenException";
3477
+ readonly $fault: "client";
3469
3478
  Message?: string;
3479
+ /**
3480
+ * @internal
3481
+ */
3482
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
3470
3483
  }
3471
3484
  /**
3472
3485
  * The service encountered an unexpected condition and can't fulfill your request.
3473
3486
  */
3474
- export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
3475
- name: "InternalServerErrorException";
3476
- $fault: "server";
3487
+ export declare class InternalServerErrorException extends __BaseException {
3488
+ readonly name: "InternalServerErrorException";
3489
+ readonly $fault: "server";
3477
3490
  Message?: string;
3491
+ /**
3492
+ * @internal
3493
+ */
3494
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
3478
3495
  }
3479
3496
  /**
3480
3497
  * The resource you requested doesn't exist.
3481
3498
  */
3482
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
3483
- name: "NotFoundException";
3484
- $fault: "client";
3499
+ export declare class NotFoundException extends __BaseException {
3500
+ readonly name: "NotFoundException";
3501
+ readonly $fault: "client";
3485
3502
  Message?: string;
3503
+ /**
3504
+ * @internal
3505
+ */
3506
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
3486
3507
  }
3487
3508
  /**
3488
3509
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
3489
3510
  */
3490
- export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
3491
- name: "TooManyRequestsException";
3492
- $fault: "client";
3511
+ export declare class TooManyRequestsException extends __BaseException {
3512
+ readonly name: "TooManyRequestsException";
3513
+ readonly $fault: "client";
3493
3514
  Message?: string;
3515
+ /**
3516
+ * @internal
3517
+ */
3518
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
3494
3519
  }
3495
3520
  export interface CancelJobRequest {
3496
3521
  /**
@@ -0,0 +1,145 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AssociateCertificateCommandInput, AssociateCertificateCommandOutput } from "./commands/AssociateCertificateCommand";
3
+ import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
4
+ import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
5
+ import { CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput } from "./commands/CreateJobTemplateCommand";
6
+ import { CreatePresetCommandInput, CreatePresetCommandOutput } from "./commands/CreatePresetCommand";
7
+ import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
8
+ import { DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput } from "./commands/DeleteJobTemplateCommand";
9
+ import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
10
+ import { DeletePresetCommandInput, DeletePresetCommandOutput } from "./commands/DeletePresetCommand";
11
+ import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/DeleteQueueCommand";
12
+ import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
13
+ import { DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput } from "./commands/DisassociateCertificateCommand";
14
+ import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
15
+ import { GetJobTemplateCommandInput, GetJobTemplateCommandOutput } from "./commands/GetJobTemplateCommand";
16
+ import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
17
+ import { GetPresetCommandInput, GetPresetCommandOutput } from "./commands/GetPresetCommand";
18
+ import { GetQueueCommandInput, GetQueueCommandOutput } from "./commands/GetQueueCommand";
19
+ import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
20
+ import { ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput } from "./commands/ListJobTemplatesCommand";
21
+ import { ListPresetsCommandInput, ListPresetsCommandOutput } from "./commands/ListPresetsCommand";
22
+ import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
23
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
24
+ import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
25
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
26
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
27
+ import { UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput } from "./commands/UpdateJobTemplateCommand";
28
+ import { UpdatePresetCommandInput, UpdatePresetCommandOutput } from "./commands/UpdatePresetCommand";
29
+ import { UpdateQueueCommandInput, UpdateQueueCommandOutput } from "./commands/UpdateQueueCommand";
30
+ import { MediaConvertClient } from "./MediaConvertClient";
31
+
32
+ export declare class MediaConvert extends MediaConvertClient {
33
+
34
+ associateCertificate(args: AssociateCertificateCommandInput, options?: __HttpHandlerOptions): Promise<AssociateCertificateCommandOutput>;
35
+ associateCertificate(args: AssociateCertificateCommandInput, cb: (err: any, data?: AssociateCertificateCommandOutput) => void): void;
36
+ associateCertificate(args: AssociateCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateCertificateCommandOutput) => void): void;
37
+
38
+ cancelJob(args: CancelJobCommandInput, options?: __HttpHandlerOptions): Promise<CancelJobCommandOutput>;
39
+ cancelJob(args: CancelJobCommandInput, cb: (err: any, data?: CancelJobCommandOutput) => void): void;
40
+ cancelJob(args: CancelJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelJobCommandOutput) => void): void;
41
+
42
+ createJob(args: CreateJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateJobCommandOutput>;
43
+ createJob(args: CreateJobCommandInput, cb: (err: any, data?: CreateJobCommandOutput) => void): void;
44
+ createJob(args: CreateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateJobCommandOutput) => void): void;
45
+
46
+ createJobTemplate(args: CreateJobTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateJobTemplateCommandOutput>;
47
+ createJobTemplate(args: CreateJobTemplateCommandInput, cb: (err: any, data?: CreateJobTemplateCommandOutput) => void): void;
48
+ createJobTemplate(args: CreateJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateJobTemplateCommandOutput) => void): void;
49
+
50
+ createPreset(args: CreatePresetCommandInput, options?: __HttpHandlerOptions): Promise<CreatePresetCommandOutput>;
51
+ createPreset(args: CreatePresetCommandInput, cb: (err: any, data?: CreatePresetCommandOutput) => void): void;
52
+ createPreset(args: CreatePresetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePresetCommandOutput) => void): void;
53
+
54
+ createQueue(args: CreateQueueCommandInput, options?: __HttpHandlerOptions): Promise<CreateQueueCommandOutput>;
55
+ createQueue(args: CreateQueueCommandInput, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
56
+ createQueue(args: CreateQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
57
+
58
+ deleteJobTemplate(args: DeleteJobTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteJobTemplateCommandOutput>;
59
+ deleteJobTemplate(args: DeleteJobTemplateCommandInput, cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void): void;
60
+ deleteJobTemplate(args: DeleteJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void): void;
61
+
62
+ deletePolicy(args: DeletePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeletePolicyCommandOutput>;
63
+ deletePolicy(args: DeletePolicyCommandInput, cb: (err: any, data?: DeletePolicyCommandOutput) => void): void;
64
+ deletePolicy(args: DeletePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePolicyCommandOutput) => void): void;
65
+
66
+ deletePreset(args: DeletePresetCommandInput, options?: __HttpHandlerOptions): Promise<DeletePresetCommandOutput>;
67
+ deletePreset(args: DeletePresetCommandInput, cb: (err: any, data?: DeletePresetCommandOutput) => void): void;
68
+ deletePreset(args: DeletePresetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePresetCommandOutput) => void): void;
69
+
70
+ deleteQueue(args: DeleteQueueCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueueCommandOutput>;
71
+ deleteQueue(args: DeleteQueueCommandInput, cb: (err: any, data?: DeleteQueueCommandOutput) => void): void;
72
+ deleteQueue(args: DeleteQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueueCommandOutput) => void): void;
73
+
74
+ describeEndpoints(args: DescribeEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointsCommandOutput>;
75
+ describeEndpoints(args: DescribeEndpointsCommandInput, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
76
+ describeEndpoints(args: DescribeEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
77
+
78
+ disassociateCertificate(args: DisassociateCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateCertificateCommandOutput>;
79
+ disassociateCertificate(args: DisassociateCertificateCommandInput, cb: (err: any, data?: DisassociateCertificateCommandOutput) => void): void;
80
+ disassociateCertificate(args: DisassociateCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateCertificateCommandOutput) => void): void;
81
+
82
+ getJob(args: GetJobCommandInput, options?: __HttpHandlerOptions): Promise<GetJobCommandOutput>;
83
+ getJob(args: GetJobCommandInput, cb: (err: any, data?: GetJobCommandOutput) => void): void;
84
+ getJob(args: GetJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobCommandOutput) => void): void;
85
+
86
+ getJobTemplate(args: GetJobTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetJobTemplateCommandOutput>;
87
+ getJobTemplate(args: GetJobTemplateCommandInput, cb: (err: any, data?: GetJobTemplateCommandOutput) => void): void;
88
+ getJobTemplate(args: GetJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobTemplateCommandOutput) => void): void;
89
+
90
+ getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyCommandOutput>;
91
+ getPolicy(args: GetPolicyCommandInput, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
92
+ getPolicy(args: GetPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
93
+
94
+ getPreset(args: GetPresetCommandInput, options?: __HttpHandlerOptions): Promise<GetPresetCommandOutput>;
95
+ getPreset(args: GetPresetCommandInput, cb: (err: any, data?: GetPresetCommandOutput) => void): void;
96
+ getPreset(args: GetPresetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPresetCommandOutput) => void): void;
97
+
98
+ getQueue(args: GetQueueCommandInput, options?: __HttpHandlerOptions): Promise<GetQueueCommandOutput>;
99
+ getQueue(args: GetQueueCommandInput, cb: (err: any, data?: GetQueueCommandOutput) => void): void;
100
+ getQueue(args: GetQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQueueCommandOutput) => void): void;
101
+
102
+ listJobs(args: ListJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobsCommandOutput>;
103
+ listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
104
+ listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
105
+
106
+ listJobTemplates(args: ListJobTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListJobTemplatesCommandOutput>;
107
+ listJobTemplates(args: ListJobTemplatesCommandInput, cb: (err: any, data?: ListJobTemplatesCommandOutput) => void): void;
108
+ listJobTemplates(args: ListJobTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobTemplatesCommandOutput) => void): void;
109
+
110
+ listPresets(args: ListPresetsCommandInput, options?: __HttpHandlerOptions): Promise<ListPresetsCommandOutput>;
111
+ listPresets(args: ListPresetsCommandInput, cb: (err: any, data?: ListPresetsCommandOutput) => void): void;
112
+ listPresets(args: ListPresetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPresetsCommandOutput) => void): void;
113
+
114
+ listQueues(args: ListQueuesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueuesCommandOutput>;
115
+ listQueues(args: ListQueuesCommandInput, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
116
+ listQueues(args: ListQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
117
+
118
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
119
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
120
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
121
+
122
+ putPolicy(args: PutPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutPolicyCommandOutput>;
123
+ putPolicy(args: PutPolicyCommandInput, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
124
+ putPolicy(args: PutPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
125
+
126
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
127
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
128
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
129
+
130
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
131
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
132
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
133
+
134
+ updateJobTemplate(args: UpdateJobTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateJobTemplateCommandOutput>;
135
+ updateJobTemplate(args: UpdateJobTemplateCommandInput, cb: (err: any, data?: UpdateJobTemplateCommandOutput) => void): void;
136
+ updateJobTemplate(args: UpdateJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateJobTemplateCommandOutput) => void): void;
137
+
138
+ updatePreset(args: UpdatePresetCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePresetCommandOutput>;
139
+ updatePreset(args: UpdatePresetCommandInput, cb: (err: any, data?: UpdatePresetCommandOutput) => void): void;
140
+ updatePreset(args: UpdatePresetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePresetCommandOutput) => void): void;
141
+
142
+ updateQueue(args: UpdateQueueCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueCommandOutput>;
143
+ updateQueue(args: UpdateQueueCommandInput, cb: (err: any, data?: UpdateQueueCommandOutput) => void): void;
144
+ updateQueue(args: UpdateQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQueueCommandOutput) => void): void;
145
+ }
@@ -0,0 +1,101 @@
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 { 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?: (body: any) => number | undefined;
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 {};
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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 { CreatePresetRequest, CreatePresetResponse } from "../models/models_1";
5
+ export interface CreatePresetCommandInput extends CreatePresetRequest {
6
+ }
7
+ export interface CreatePresetCommandOutput extends CreatePresetResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreatePresetCommand extends $Command<CreatePresetCommandInput, CreatePresetCommandOutput, MediaConvertClientResolvedConfig> {
11
+ readonly input: CreatePresetCommandInput;
12
+ constructor(input: CreatePresetCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePresetCommandInput, CreatePresetCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { CreateQueueRequest, CreateQueueResponse } from "../models/models_1";
5
+ export interface CreateQueueCommandInput extends CreateQueueRequest {
6
+ }
7
+ export interface CreateQueueCommandOutput extends CreateQueueResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateQueueCommand extends $Command<CreateQueueCommandInput, CreateQueueCommandOutput, MediaConvertClientResolvedConfig> {
11
+ readonly input: CreateQueueCommandInput;
12
+ constructor(input: CreateQueueCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateQueueCommandInput, CreateQueueCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DeleteJobTemplateRequest, DeleteJobTemplateResponse } from "../models/models_1";
5
+ export interface DeleteJobTemplateCommandInput extends DeleteJobTemplateRequest {
6
+ }
7
+ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteJobTemplateCommand extends $Command<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput, MediaConvertClientResolvedConfig> {
11
+ readonly input: DeleteJobTemplateCommandInput;
12
+ constructor(input: DeleteJobTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DeletePolicyRequest, DeletePolicyResponse } from "../models/models_1";
5
+ export interface DeletePolicyCommandInput extends DeletePolicyRequest {
6
+ }
7
+ export interface DeletePolicyCommandOutput extends DeletePolicyResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeletePolicyCommand extends $Command<DeletePolicyCommandInput, DeletePolicyCommandOutput, MediaConvertClientResolvedConfig> {
11
+ readonly input: DeletePolicyCommandInput;
12
+ constructor(input: DeletePolicyCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePolicyCommandInput, DeletePolicyCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DeletePresetRequest, DeletePresetResponse } from "../models/models_1";
5
+ export interface DeletePresetCommandInput extends DeletePresetRequest {
6
+ }
7
+ export interface DeletePresetCommandOutput extends DeletePresetResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeletePresetCommand extends $Command<DeletePresetCommandInput, DeletePresetCommandOutput, MediaConvertClientResolvedConfig> {
11
+ readonly input: DeletePresetCommandInput;
12
+ constructor(input: DeletePresetCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePresetCommandInput, DeletePresetCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_1";
5
+ export interface DeleteQueueCommandInput extends DeleteQueueRequest {
6
+ }
7
+ export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteQueueCommand extends $Command<DeleteQueueCommandInput, DeleteQueueCommandOutput, MediaConvertClientResolvedConfig> {
11
+ readonly input: DeleteQueueCommandInput;
12
+ constructor(input: DeleteQueueCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteQueueCommandInput, DeleteQueueCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_1";
5
+ export interface DescribeEndpointsCommandInput extends DescribeEndpointsRequest {
6
+ }
7
+ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeEndpointsCommand extends $Command<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, MediaConvertClientResolvedConfig> {
11
+ readonly input: DescribeEndpointsCommandInput;
12
+ constructor(input: DescribeEndpointsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DisassociateCertificateRequest, DisassociateCertificateResponse } from "../models/models_1";
5
+ export interface DisassociateCertificateCommandInput extends DisassociateCertificateRequest {
6
+ }
7
+ export interface DisassociateCertificateCommandOutput extends DisassociateCertificateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DisassociateCertificateCommand extends $Command<DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput, MediaConvertClientResolvedConfig> {
11
+ readonly input: DisassociateCertificateCommandInput;
12
+ constructor(input: DisassociateCertificateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { GetJobRequest, GetJobResponse } from "../models/models_1";
5
+ export interface GetJobCommandInput extends GetJobRequest {
6
+ }
7
+ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetJobCommand extends $Command<GetJobCommandInput, GetJobCommandOutput, MediaConvertClientResolvedConfig> {
11
+ readonly input: GetJobCommandInput;
12
+ constructor(input: GetJobCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobCommandInput, GetJobCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }