@aws-sdk/client-mediaconvert 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/MediaConvert.d.ts +29 -0
- package/dist-types/MediaConvertClient.d.ts +24 -4
- package/dist-types/commands/AssociateCertificateCommand.d.ts +16 -0
- package/dist-types/commands/CancelJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/CreatePresetCommand.d.ts +16 -0
- package/dist-types/commands/CreateQueueCommand.d.ts +16 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeletePresetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +16 -0
- package/dist-types/commands/GetJobCommand.d.ts +16 -0
- package/dist-types/commands/GetJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetPresetCommand.d.ts +16 -0
- package/dist-types/commands/GetQueueCommand.d.ts +16 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/ListJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListPresetsCommand.d.ts +16 -0
- package/dist-types/commands/ListQueuesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePresetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateQueueCommand.d.ts +16 -0
- package/dist-types/models/MediaConvertServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +686 -0
- package/dist-types/models/models_1.d.ts +758 -0
- package/dist-types/models/models_2.d.ts +110 -0
- package/dist-types/pagination/DescribeEndpointsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListJobTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPresetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListQueuesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -29,172 +29,201 @@ import { UpdatePresetCommandInput, UpdatePresetCommandOutput } from "./commands/
|
|
|
29
29
|
import { UpdateQueueCommandInput, UpdateQueueCommandOutput } from "./commands/UpdateQueueCommand";
|
|
30
30
|
import { MediaConvertClient } from "./MediaConvertClient";
|
|
31
31
|
/**
|
|
32
|
+
* @public
|
|
32
33
|
* AWS Elemental MediaConvert
|
|
33
34
|
*/
|
|
34
35
|
export declare class MediaConvert extends MediaConvertClient {
|
|
35
36
|
/**
|
|
37
|
+
* @public
|
|
36
38
|
* Associates an AWS Certificate Manager (ACM) Amazon Resource Name (ARN) with AWS Elemental MediaConvert.
|
|
37
39
|
*/
|
|
38
40
|
associateCertificate(args: AssociateCertificateCommandInput, options?: __HttpHandlerOptions): Promise<AssociateCertificateCommandOutput>;
|
|
39
41
|
associateCertificate(args: AssociateCertificateCommandInput, cb: (err: any, data?: AssociateCertificateCommandOutput) => void): void;
|
|
40
42
|
associateCertificate(args: AssociateCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateCertificateCommandOutput) => void): void;
|
|
41
43
|
/**
|
|
44
|
+
* @public
|
|
42
45
|
* Permanently cancel a job. Once you have canceled a job, you can't start it again.
|
|
43
46
|
*/
|
|
44
47
|
cancelJob(args: CancelJobCommandInput, options?: __HttpHandlerOptions): Promise<CancelJobCommandOutput>;
|
|
45
48
|
cancelJob(args: CancelJobCommandInput, cb: (err: any, data?: CancelJobCommandOutput) => void): void;
|
|
46
49
|
cancelJob(args: CancelJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelJobCommandOutput) => void): void;
|
|
47
50
|
/**
|
|
51
|
+
* @public
|
|
48
52
|
* Create a new transcoding job. For information about jobs and job settings, see the User Guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
49
53
|
*/
|
|
50
54
|
createJob(args: CreateJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateJobCommandOutput>;
|
|
51
55
|
createJob(args: CreateJobCommandInput, cb: (err: any, data?: CreateJobCommandOutput) => void): void;
|
|
52
56
|
createJob(args: CreateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateJobCommandOutput) => void): void;
|
|
53
57
|
/**
|
|
58
|
+
* @public
|
|
54
59
|
* Create a new job template. For information about job templates see the User Guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
55
60
|
*/
|
|
56
61
|
createJobTemplate(args: CreateJobTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateJobTemplateCommandOutput>;
|
|
57
62
|
createJobTemplate(args: CreateJobTemplateCommandInput, cb: (err: any, data?: CreateJobTemplateCommandOutput) => void): void;
|
|
58
63
|
createJobTemplate(args: CreateJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateJobTemplateCommandOutput) => void): void;
|
|
59
64
|
/**
|
|
65
|
+
* @public
|
|
60
66
|
* Create a new preset. For information about job templates see the User Guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
61
67
|
*/
|
|
62
68
|
createPreset(args: CreatePresetCommandInput, options?: __HttpHandlerOptions): Promise<CreatePresetCommandOutput>;
|
|
63
69
|
createPreset(args: CreatePresetCommandInput, cb: (err: any, data?: CreatePresetCommandOutput) => void): void;
|
|
64
70
|
createPreset(args: CreatePresetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePresetCommandOutput) => void): void;
|
|
65
71
|
/**
|
|
72
|
+
* @public
|
|
66
73
|
* Create a new transcoding queue. For information about queues, see Working With Queues in the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html
|
|
67
74
|
*/
|
|
68
75
|
createQueue(args: CreateQueueCommandInput, options?: __HttpHandlerOptions): Promise<CreateQueueCommandOutput>;
|
|
69
76
|
createQueue(args: CreateQueueCommandInput, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
|
|
70
77
|
createQueue(args: CreateQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQueueCommandOutput) => void): void;
|
|
71
78
|
/**
|
|
79
|
+
* @public
|
|
72
80
|
* Permanently delete a job template you have created.
|
|
73
81
|
*/
|
|
74
82
|
deleteJobTemplate(args: DeleteJobTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteJobTemplateCommandOutput>;
|
|
75
83
|
deleteJobTemplate(args: DeleteJobTemplateCommandInput, cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void): void;
|
|
76
84
|
deleteJobTemplate(args: DeleteJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void): void;
|
|
77
85
|
/**
|
|
86
|
+
* @public
|
|
78
87
|
* Permanently delete a policy that you created.
|
|
79
88
|
*/
|
|
80
89
|
deletePolicy(args: DeletePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeletePolicyCommandOutput>;
|
|
81
90
|
deletePolicy(args: DeletePolicyCommandInput, cb: (err: any, data?: DeletePolicyCommandOutput) => void): void;
|
|
82
91
|
deletePolicy(args: DeletePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePolicyCommandOutput) => void): void;
|
|
83
92
|
/**
|
|
93
|
+
* @public
|
|
84
94
|
* Permanently delete a preset you have created.
|
|
85
95
|
*/
|
|
86
96
|
deletePreset(args: DeletePresetCommandInput, options?: __HttpHandlerOptions): Promise<DeletePresetCommandOutput>;
|
|
87
97
|
deletePreset(args: DeletePresetCommandInput, cb: (err: any, data?: DeletePresetCommandOutput) => void): void;
|
|
88
98
|
deletePreset(args: DeletePresetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePresetCommandOutput) => void): void;
|
|
89
99
|
/**
|
|
100
|
+
* @public
|
|
90
101
|
* Permanently delete a queue you have created.
|
|
91
102
|
*/
|
|
92
103
|
deleteQueue(args: DeleteQueueCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueueCommandOutput>;
|
|
93
104
|
deleteQueue(args: DeleteQueueCommandInput, cb: (err: any, data?: DeleteQueueCommandOutput) => void): void;
|
|
94
105
|
deleteQueue(args: DeleteQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueueCommandOutput) => void): void;
|
|
95
106
|
/**
|
|
107
|
+
* @public
|
|
96
108
|
* Send an request with an empty body to the regional API endpoint to get your account API endpoint.
|
|
97
109
|
*/
|
|
98
110
|
describeEndpoints(args: DescribeEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointsCommandOutput>;
|
|
99
111
|
describeEndpoints(args: DescribeEndpointsCommandInput, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
|
|
100
112
|
describeEndpoints(args: DescribeEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
|
|
101
113
|
/**
|
|
114
|
+
* @public
|
|
102
115
|
* Removes an association between the Amazon Resource Name (ARN) of an AWS Certificate Manager (ACM) certificate and an AWS Elemental MediaConvert resource.
|
|
103
116
|
*/
|
|
104
117
|
disassociateCertificate(args: DisassociateCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateCertificateCommandOutput>;
|
|
105
118
|
disassociateCertificate(args: DisassociateCertificateCommandInput, cb: (err: any, data?: DisassociateCertificateCommandOutput) => void): void;
|
|
106
119
|
disassociateCertificate(args: DisassociateCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateCertificateCommandOutput) => void): void;
|
|
107
120
|
/**
|
|
121
|
+
* @public
|
|
108
122
|
* Retrieve the JSON for a specific completed transcoding job.
|
|
109
123
|
*/
|
|
110
124
|
getJob(args: GetJobCommandInput, options?: __HttpHandlerOptions): Promise<GetJobCommandOutput>;
|
|
111
125
|
getJob(args: GetJobCommandInput, cb: (err: any, data?: GetJobCommandOutput) => void): void;
|
|
112
126
|
getJob(args: GetJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobCommandOutput) => void): void;
|
|
113
127
|
/**
|
|
128
|
+
* @public
|
|
114
129
|
* Retrieve the JSON for a specific job template.
|
|
115
130
|
*/
|
|
116
131
|
getJobTemplate(args: GetJobTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetJobTemplateCommandOutput>;
|
|
117
132
|
getJobTemplate(args: GetJobTemplateCommandInput, cb: (err: any, data?: GetJobTemplateCommandOutput) => void): void;
|
|
118
133
|
getJobTemplate(args: GetJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobTemplateCommandOutput) => void): void;
|
|
119
134
|
/**
|
|
135
|
+
* @public
|
|
120
136
|
* Retrieve the JSON for your policy.
|
|
121
137
|
*/
|
|
122
138
|
getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyCommandOutput>;
|
|
123
139
|
getPolicy(args: GetPolicyCommandInput, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
124
140
|
getPolicy(args: GetPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
125
141
|
/**
|
|
142
|
+
* @public
|
|
126
143
|
* Retrieve the JSON for a specific preset.
|
|
127
144
|
*/
|
|
128
145
|
getPreset(args: GetPresetCommandInput, options?: __HttpHandlerOptions): Promise<GetPresetCommandOutput>;
|
|
129
146
|
getPreset(args: GetPresetCommandInput, cb: (err: any, data?: GetPresetCommandOutput) => void): void;
|
|
130
147
|
getPreset(args: GetPresetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPresetCommandOutput) => void): void;
|
|
131
148
|
/**
|
|
149
|
+
* @public
|
|
132
150
|
* Retrieve the JSON for a specific queue.
|
|
133
151
|
*/
|
|
134
152
|
getQueue(args: GetQueueCommandInput, options?: __HttpHandlerOptions): Promise<GetQueueCommandOutput>;
|
|
135
153
|
getQueue(args: GetQueueCommandInput, cb: (err: any, data?: GetQueueCommandOutput) => void): void;
|
|
136
154
|
getQueue(args: GetQueueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQueueCommandOutput) => void): void;
|
|
137
155
|
/**
|
|
156
|
+
* @public
|
|
138
157
|
* Retrieve a JSON array of up to twenty of your most recently created jobs. This array includes in-process, completed, and errored jobs. This will return the jobs themselves, not just a list of the jobs. To retrieve the twenty next most recent jobs, use the nextToken string returned with the array.
|
|
139
158
|
*/
|
|
140
159
|
listJobs(args: ListJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobsCommandOutput>;
|
|
141
160
|
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
142
161
|
listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
143
162
|
/**
|
|
163
|
+
* @public
|
|
144
164
|
* Retrieve a JSON array of up to twenty of your job templates. This will return the templates themselves, not just a list of them. To retrieve the next twenty templates, use the nextToken string returned with the array
|
|
145
165
|
*/
|
|
146
166
|
listJobTemplates(args: ListJobTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListJobTemplatesCommandOutput>;
|
|
147
167
|
listJobTemplates(args: ListJobTemplatesCommandInput, cb: (err: any, data?: ListJobTemplatesCommandOutput) => void): void;
|
|
148
168
|
listJobTemplates(args: ListJobTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobTemplatesCommandOutput) => void): void;
|
|
149
169
|
/**
|
|
170
|
+
* @public
|
|
150
171
|
* Retrieve a JSON array of up to twenty of your presets. This will return the presets themselves, not just a list of them. To retrieve the next twenty presets, use the nextToken string returned with the array.
|
|
151
172
|
*/
|
|
152
173
|
listPresets(args: ListPresetsCommandInput, options?: __HttpHandlerOptions): Promise<ListPresetsCommandOutput>;
|
|
153
174
|
listPresets(args: ListPresetsCommandInput, cb: (err: any, data?: ListPresetsCommandOutput) => void): void;
|
|
154
175
|
listPresets(args: ListPresetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPresetsCommandOutput) => void): void;
|
|
155
176
|
/**
|
|
177
|
+
* @public
|
|
156
178
|
* Retrieve a JSON array of up to twenty of your queues. This will return the queues themselves, not just a list of them. To retrieve the next twenty queues, use the nextToken string returned with the array.
|
|
157
179
|
*/
|
|
158
180
|
listQueues(args: ListQueuesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueuesCommandOutput>;
|
|
159
181
|
listQueues(args: ListQueuesCommandInput, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
|
|
160
182
|
listQueues(args: ListQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueuesCommandOutput) => void): void;
|
|
161
183
|
/**
|
|
184
|
+
* @public
|
|
162
185
|
* Retrieve the tags for a MediaConvert resource.
|
|
163
186
|
*/
|
|
164
187
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
165
188
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
166
189
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
167
190
|
/**
|
|
191
|
+
* @public
|
|
168
192
|
* Create or change your policy. For more information about policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
169
193
|
*/
|
|
170
194
|
putPolicy(args: PutPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutPolicyCommandOutput>;
|
|
171
195
|
putPolicy(args: PutPolicyCommandInput, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
|
|
172
196
|
putPolicy(args: PutPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
|
|
173
197
|
/**
|
|
198
|
+
* @public
|
|
174
199
|
* Add tags to a MediaConvert queue, preset, or job template. For information about tagging, see the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/tagging-resources.html
|
|
175
200
|
*/
|
|
176
201
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
177
202
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
178
203
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
179
204
|
/**
|
|
205
|
+
* @public
|
|
180
206
|
* Remove tags from a MediaConvert queue, preset, or job template. For information about tagging, see the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/tagging-resources.html
|
|
181
207
|
*/
|
|
182
208
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
183
209
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
184
210
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
185
211
|
/**
|
|
212
|
+
* @public
|
|
186
213
|
* Modify one of your existing job templates.
|
|
187
214
|
*/
|
|
188
215
|
updateJobTemplate(args: UpdateJobTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateJobTemplateCommandOutput>;
|
|
189
216
|
updateJobTemplate(args: UpdateJobTemplateCommandInput, cb: (err: any, data?: UpdateJobTemplateCommandOutput) => void): void;
|
|
190
217
|
updateJobTemplate(args: UpdateJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateJobTemplateCommandOutput) => void): void;
|
|
191
218
|
/**
|
|
219
|
+
* @public
|
|
192
220
|
* Modify one of your existing presets.
|
|
193
221
|
*/
|
|
194
222
|
updatePreset(args: UpdatePresetCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePresetCommandOutput>;
|
|
195
223
|
updatePreset(args: UpdatePresetCommandInput, cb: (err: any, data?: UpdatePresetCommandOutput) => void): void;
|
|
196
224
|
updatePreset(args: UpdatePresetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePresetCommandOutput) => void): void;
|
|
197
225
|
/**
|
|
226
|
+
* @public
|
|
198
227
|
* Modify one of your existing queues.
|
|
199
228
|
*/
|
|
200
229
|
updateQueue(args: UpdateQueueCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQueueCommandOutput>;
|
|
@@ -36,15 +36,24 @@ import { UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput } from ".
|
|
|
36
36
|
import { UpdatePresetCommandInput, UpdatePresetCommandOutput } from "./commands/UpdatePresetCommand";
|
|
37
37
|
import { UpdateQueueCommandInput, UpdateQueueCommandOutput } from "./commands/UpdateQueueCommand";
|
|
38
38
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
39
42
|
export 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;
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
40
46
|
export 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;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
41
50
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
42
51
|
/**
|
|
43
52
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
44
53
|
*/
|
|
45
54
|
requestHandler?: __HttpHandler;
|
|
46
55
|
/**
|
|
47
|
-
* A constructor for a class implementing the {@link
|
|
56
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
48
57
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
49
58
|
* @internal
|
|
50
59
|
*/
|
|
@@ -134,23 +143,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
134
143
|
*/
|
|
135
144
|
logger?: __Logger;
|
|
136
145
|
/**
|
|
137
|
-
* The {@link
|
|
146
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
138
147
|
*/
|
|
139
148
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
140
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
141
153
|
type MediaConvertClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
142
154
|
/**
|
|
143
|
-
*
|
|
155
|
+
* @public
|
|
156
|
+
*
|
|
157
|
+
* The configuration interface of MediaConvertClient class constructor that set the region, credentials and other options.
|
|
144
158
|
*/
|
|
145
159
|
export interface MediaConvertClientConfig extends MediaConvertClientConfigType {
|
|
146
160
|
}
|
|
161
|
+
/**
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
147
164
|
type MediaConvertClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
148
165
|
/**
|
|
149
|
-
*
|
|
166
|
+
* @public
|
|
167
|
+
*
|
|
168
|
+
* The resolved configuration interface of MediaConvertClient class. This is resolved and normalized from the {@link MediaConvertClientConfig | constructor configuration interface}.
|
|
150
169
|
*/
|
|
151
170
|
export interface MediaConvertClientResolvedConfig extends MediaConvertClientResolvedConfigType {
|
|
152
171
|
}
|
|
153
172
|
/**
|
|
173
|
+
* @public
|
|
154
174
|
* AWS Elemental MediaConvert
|
|
155
175
|
*/
|
|
156
176
|
export declare class MediaConvertClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MediaConvertClientResolvedConfig> {
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
5
5
|
import { AssociateCertificateRequest, AssociateCertificateResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateCertificateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateCertificateCommandInput extends AssociateCertificateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateCertificateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateCertificateCommandOutput extends AssociateCertificateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Associates an AWS Certificate Manager (ACM) Amazon Resource Name (ARN) with AWS Elemental MediaConvert.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface AssociateCertificateCommandOutput extends AssociateCertificateR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param AssociateCertificateCommandInput - {@link AssociateCertificateCommandInput}
|
|
34
|
+
* @returns {@link AssociateCertificateCommandOutput}
|
|
28
35
|
* @see {@link AssociateCertificateCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link AssociateCertificateCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface AssociateCertificateCommandOutput extends AssociateCertificateR
|
|
|
52
59
|
export declare class AssociateCertificateCommand extends $Command<AssociateCertificateCommandInput, AssociateCertificateCommandOutput, MediaConvertClientResolvedConfig> {
|
|
53
60
|
readonly input: AssociateCertificateCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: AssociateCertificateCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateCertificateCommandInput, AssociateCertificateCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
5
5
|
import { CancelJobRequest, CancelJobResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelJobCommandInput extends CancelJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Permanently cancel a job. Once you have canceled a job, you can't start it again.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CancelJobCommandInput - {@link CancelJobCommandInput}
|
|
34
|
+
* @returns {@link CancelJobCommandOutput}
|
|
28
35
|
* @see {@link CancelJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CancelJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea
|
|
|
52
59
|
export declare class CancelJobCommand extends $Command<CancelJobCommandInput, CancelJobCommandOutput, MediaConvertClientResolvedConfig> {
|
|
53
60
|
readonly input: CancelJobCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CancelJobCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelJobCommandInput, CancelJobCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
5
5
|
import { CreateJobRequest, CreateJobResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateJobCommandInput extends CreateJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Create a new transcoding job. For information about jobs and job settings, see the User Guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateJobCommandInput - {@link CreateJobCommandInput}
|
|
34
|
+
* @returns {@link CreateJobCommandOutput}
|
|
28
35
|
* @see {@link CreateJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
52
59
|
export declare class CreateJobCommand extends $Command<CreateJobCommandInput, CreateJobCommandOutput, MediaConvertClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateJobCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateJobCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateJobCommandInput, CreateJobCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
5
5
|
import { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateJobTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateJobTemplateCommandInput extends CreateJobTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateJobTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateJobTemplateCommandOutput extends CreateJobTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Create a new job template. For information about job templates see the User Guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateJobTemplateCommandInput - {@link CreateJobTemplateCommandInput}
|
|
34
|
+
* @returns {@link CreateJobTemplateCommandOutput}
|
|
28
35
|
* @see {@link CreateJobTemplateCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateJobTemplateCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
|
|
|
52
59
|
export declare class CreateJobTemplateCommand extends $Command<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput, MediaConvertClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateJobTemplateCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateJobTemplateCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
5
5
|
import { CreatePresetRequest, CreatePresetResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreatePresetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreatePresetCommandInput extends CreatePresetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreatePresetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreatePresetCommandOutput extends CreatePresetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Create a new preset. For information about job templates see the User Guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreatePresetCommandInput - {@link CreatePresetCommandInput}
|
|
34
|
+
* @returns {@link CreatePresetCommandOutput}
|
|
28
35
|
* @see {@link CreatePresetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreatePresetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreatePresetCommandOutput extends CreatePresetResponse, __Metad
|
|
|
52
59
|
export declare class CreatePresetCommand extends $Command<CreatePresetCommandInput, CreatePresetCommandOutput, MediaConvertClientResolvedConfig> {
|
|
53
60
|
readonly input: CreatePresetCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreatePresetCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePresetCommandInput, CreatePresetCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
5
5
|
import { CreateQueueRequest, CreateQueueResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateQueueCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateQueueCommandInput extends CreateQueueRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateQueueCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateQueueCommandOutput extends CreateQueueResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Create a new transcoding queue. For information about queues, see Working With Queues in the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateQueueCommandOutput extends CreateQueueResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateQueueCommandInput - {@link CreateQueueCommandInput}
|
|
34
|
+
* @returns {@link CreateQueueCommandOutput}
|
|
28
35
|
* @see {@link CreateQueueCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateQueueCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateQueueCommandOutput extends CreateQueueResponse, __Metadat
|
|
|
52
59
|
export declare class CreateQueueCommand extends $Command<CreateQueueCommandInput, CreateQueueCommandOutput, MediaConvertClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateQueueCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateQueueCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateQueueCommandInput, CreateQueueCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
5
5
|
import { DeleteJobTemplateRequest, DeleteJobTemplateResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteJobTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteJobTemplateCommandInput extends DeleteJobTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteJobTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Permanently delete a job template you have created.
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteJobTemplateCommandInput - {@link DeleteJobTemplateCommandInput}
|
|
34
|
+
* @returns {@link DeleteJobTemplateCommandOutput}
|
|
28
35
|
* @see {@link DeleteJobTemplateCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteJobTemplateCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
|
|
|
52
59
|
export declare class DeleteJobTemplateCommand extends $Command<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput, MediaConvertClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteJobTemplateCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteJobTemplateCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|