@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,204 +1,237 @@
1
- import { AccelerationSettings, HopDestination } from "./models_0";
2
- import { Job, JobTemplate, JobTemplateListBy, JobTemplateSettings, Order, Policy, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
3
- export interface ListJobsResponse {
4
-
5
- Jobs?: Job[];
6
-
7
- NextToken?: string;
8
- }
9
- export interface ListJobTemplatesRequest {
10
-
11
- Category?: string;
12
-
13
- ListBy?: JobTemplateListBy | string;
14
-
15
- MaxResults?: number;
16
-
17
- NextToken?: string;
18
-
19
- Order?: Order | string;
20
- }
21
- export interface ListJobTemplatesResponse {
22
-
23
- JobTemplates?: JobTemplate[];
24
-
25
- NextToken?: string;
26
- }
27
- export declare enum PresetListBy {
28
- CREATION_DATE = "CREATION_DATE",
29
- NAME = "NAME",
30
- SYSTEM = "SYSTEM"
31
- }
32
- export interface ListPresetsRequest {
33
-
34
- Category?: string;
35
-
36
- ListBy?: PresetListBy | string;
37
-
38
- MaxResults?: number;
39
-
40
- NextToken?: string;
41
-
42
- Order?: Order | string;
43
- }
44
- export interface ListPresetsResponse {
45
-
46
- NextToken?: string;
47
-
48
- Presets?: Preset[];
49
- }
50
- export declare enum QueueListBy {
51
- CREATION_DATE = "CREATION_DATE",
52
- NAME = "NAME"
53
- }
54
- export interface ListQueuesRequest {
55
-
56
- ListBy?: QueueListBy | string;
57
-
58
- MaxResults?: number;
59
-
60
- NextToken?: string;
61
-
62
- Order?: Order | string;
63
- }
64
- export interface ListQueuesResponse {
65
-
66
- NextToken?: string;
67
-
68
- Queues?: Queue[];
69
- }
70
- export interface ListTagsForResourceRequest {
71
-
72
- Arn: string | undefined;
73
- }
74
-
75
- export interface ResourceTags {
76
-
77
- Arn?: string;
78
-
79
- Tags?: Record<string, string>;
80
- }
81
- export interface ListTagsForResourceResponse {
82
-
83
- ResourceTags?: ResourceTags;
84
- }
85
- export interface PutPolicyRequest {
86
-
87
- Policy: Policy | undefined;
88
- }
89
- export interface PutPolicyResponse {
90
-
91
- Policy?: Policy;
92
- }
93
- export interface TagResourceRequest {
94
-
95
- Arn: string | undefined;
96
-
97
- Tags: Record<string, string> | undefined;
98
- }
99
- export interface TagResourceResponse {
100
- }
101
- export interface UntagResourceRequest {
102
-
103
- Arn: string | undefined;
104
-
105
- TagKeys?: string[];
106
- }
107
- export interface UntagResourceResponse {
108
- }
109
- export interface UpdateJobTemplateRequest {
110
-
111
- AccelerationSettings?: AccelerationSettings;
112
-
113
- Category?: string;
114
-
115
- Description?: string;
116
-
117
- HopDestinations?: HopDestination[];
118
-
119
- Name: string | undefined;
120
-
121
- Priority?: number;
122
-
123
- Queue?: string;
124
-
125
- Settings?: JobTemplateSettings;
126
-
127
- StatusUpdateInterval?: StatusUpdateInterval | string;
128
- }
129
- export interface UpdateJobTemplateResponse {
130
-
131
- JobTemplate?: JobTemplate;
132
- }
133
- export interface UpdatePresetRequest {
134
-
135
- Category?: string;
136
-
137
- Description?: string;
138
-
139
- Name: string | undefined;
140
-
141
- Settings?: PresetSettings;
142
- }
143
- export interface UpdatePresetResponse {
144
-
145
- Preset?: Preset;
146
- }
147
- export interface UpdateQueueRequest {
148
-
149
- Description?: string;
150
-
151
- Name: string | undefined;
152
-
153
- ReservationPlanSettings?: ReservationPlanSettings;
154
-
155
- Status?: QueueStatus | string;
156
- }
157
- export interface UpdateQueueResponse {
158
-
159
- Queue?: Queue;
160
- }
161
-
162
- export declare const ListJobsResponseFilterSensitiveLog: (obj: ListJobsResponse) => any;
163
-
164
- export declare const ListJobTemplatesRequestFilterSensitiveLog: (obj: ListJobTemplatesRequest) => any;
165
-
166
- export declare const ListJobTemplatesResponseFilterSensitiveLog: (obj: ListJobTemplatesResponse) => any;
167
-
168
- export declare const ListPresetsRequestFilterSensitiveLog: (obj: ListPresetsRequest) => any;
169
-
170
- export declare const ListPresetsResponseFilterSensitiveLog: (obj: ListPresetsResponse) => any;
171
-
172
- export declare const ListQueuesRequestFilterSensitiveLog: (obj: ListQueuesRequest) => any;
173
-
174
- export declare const ListQueuesResponseFilterSensitiveLog: (obj: ListQueuesResponse) => any;
175
-
176
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
177
-
178
- export declare const ResourceTagsFilterSensitiveLog: (obj: ResourceTags) => any;
179
-
180
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
181
-
182
- export declare const PutPolicyRequestFilterSensitiveLog: (obj: PutPolicyRequest) => any;
183
-
184
- export declare const PutPolicyResponseFilterSensitiveLog: (obj: PutPolicyResponse) => any;
185
-
186
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
187
-
188
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
189
-
190
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
191
-
192
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
193
-
194
- export declare const UpdateJobTemplateRequestFilterSensitiveLog: (obj: UpdateJobTemplateRequest) => any;
195
-
196
- export declare const UpdateJobTemplateResponseFilterSensitiveLog: (obj: UpdateJobTemplateResponse) => any;
197
-
198
- export declare const UpdatePresetRequestFilterSensitiveLog: (obj: UpdatePresetRequest) => any;
199
-
200
- export declare const UpdatePresetResponseFilterSensitiveLog: (obj: UpdatePresetResponse) => any;
201
-
202
- export declare const UpdateQueueRequestFilterSensitiveLog: (obj: UpdateQueueRequest) => any;
203
-
204
- export declare const UpdateQueueResponseFilterSensitiveLog: (obj: UpdateQueueResponse) => any;
1
+ import { AccelerationSettings, HopDestination } from "./models_0";
2
+ import {
3
+ Job,
4
+ JobTemplate,
5
+ JobTemplateListBy,
6
+ JobTemplateSettings,
7
+ Order,
8
+ Policy,
9
+ Preset,
10
+ PresetSettings,
11
+ Queue,
12
+ QueueStatus,
13
+ ReservationPlanSettings,
14
+ StatusUpdateInterval,
15
+ } from "./models_1";
16
+ export interface ListJobsResponse {
17
+ Jobs?: Job[];
18
+
19
+ NextToken?: string;
20
+ }
21
+ export interface ListJobTemplatesRequest {
22
+ Category?: string;
23
+
24
+ ListBy?: JobTemplateListBy | string;
25
+
26
+ MaxResults?: number;
27
+
28
+ NextToken?: string;
29
+
30
+ Order?: Order | string;
31
+ }
32
+ export interface ListJobTemplatesResponse {
33
+ JobTemplates?: JobTemplate[];
34
+
35
+ NextToken?: string;
36
+ }
37
+ export declare enum PresetListBy {
38
+ CREATION_DATE = "CREATION_DATE",
39
+ NAME = "NAME",
40
+ SYSTEM = "SYSTEM",
41
+ }
42
+ export interface ListPresetsRequest {
43
+ Category?: string;
44
+
45
+ ListBy?: PresetListBy | string;
46
+
47
+ MaxResults?: number;
48
+
49
+ NextToken?: string;
50
+
51
+ Order?: Order | string;
52
+ }
53
+ export interface ListPresetsResponse {
54
+ NextToken?: string;
55
+
56
+ Presets?: Preset[];
57
+ }
58
+ export declare enum QueueListBy {
59
+ CREATION_DATE = "CREATION_DATE",
60
+ NAME = "NAME",
61
+ }
62
+ export interface ListQueuesRequest {
63
+ ListBy?: QueueListBy | string;
64
+
65
+ MaxResults?: number;
66
+
67
+ NextToken?: string;
68
+
69
+ Order?: Order | string;
70
+ }
71
+ export interface ListQueuesResponse {
72
+ NextToken?: string;
73
+
74
+ Queues?: Queue[];
75
+ }
76
+ export interface ListTagsForResourceRequest {
77
+ Arn: string | undefined;
78
+ }
79
+
80
+ export interface ResourceTags {
81
+ Arn?: string;
82
+
83
+ Tags?: Record<string, string>;
84
+ }
85
+ export interface ListTagsForResourceResponse {
86
+ ResourceTags?: ResourceTags;
87
+ }
88
+ export interface PutPolicyRequest {
89
+ Policy: Policy | undefined;
90
+ }
91
+ export interface PutPolicyResponse {
92
+ Policy?: Policy;
93
+ }
94
+ export interface TagResourceRequest {
95
+ Arn: string | undefined;
96
+
97
+ Tags: Record<string, string> | undefined;
98
+ }
99
+ export interface TagResourceResponse {}
100
+ export interface UntagResourceRequest {
101
+ Arn: string | undefined;
102
+
103
+ TagKeys?: string[];
104
+ }
105
+ export interface UntagResourceResponse {}
106
+ export interface UpdateJobTemplateRequest {
107
+ AccelerationSettings?: AccelerationSettings;
108
+
109
+ Category?: string;
110
+
111
+ Description?: string;
112
+
113
+ HopDestinations?: HopDestination[];
114
+
115
+ Name: string | undefined;
116
+
117
+ Priority?: number;
118
+
119
+ Queue?: string;
120
+
121
+ Settings?: JobTemplateSettings;
122
+
123
+ StatusUpdateInterval?: StatusUpdateInterval | string;
124
+ }
125
+ export interface UpdateJobTemplateResponse {
126
+ JobTemplate?: JobTemplate;
127
+ }
128
+ export interface UpdatePresetRequest {
129
+ Category?: string;
130
+
131
+ Description?: string;
132
+
133
+ Name: string | undefined;
134
+
135
+ Settings?: PresetSettings;
136
+ }
137
+ export interface UpdatePresetResponse {
138
+ Preset?: Preset;
139
+ }
140
+ export interface UpdateQueueRequest {
141
+ Description?: string;
142
+
143
+ Name: string | undefined;
144
+
145
+ ReservationPlanSettings?: ReservationPlanSettings;
146
+
147
+ Status?: QueueStatus | string;
148
+ }
149
+ export interface UpdateQueueResponse {
150
+ Queue?: Queue;
151
+ }
152
+
153
+ export declare const ListJobsResponseFilterSensitiveLog: (
154
+ obj: ListJobsResponse
155
+ ) => any;
156
+
157
+ export declare const ListJobTemplatesRequestFilterSensitiveLog: (
158
+ obj: ListJobTemplatesRequest
159
+ ) => any;
160
+
161
+ export declare const ListJobTemplatesResponseFilterSensitiveLog: (
162
+ obj: ListJobTemplatesResponse
163
+ ) => any;
164
+
165
+ export declare const ListPresetsRequestFilterSensitiveLog: (
166
+ obj: ListPresetsRequest
167
+ ) => any;
168
+
169
+ export declare const ListPresetsResponseFilterSensitiveLog: (
170
+ obj: ListPresetsResponse
171
+ ) => any;
172
+
173
+ export declare const ListQueuesRequestFilterSensitiveLog: (
174
+ obj: ListQueuesRequest
175
+ ) => any;
176
+
177
+ export declare const ListQueuesResponseFilterSensitiveLog: (
178
+ obj: ListQueuesResponse
179
+ ) => any;
180
+
181
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
182
+ obj: ListTagsForResourceRequest
183
+ ) => any;
184
+
185
+ export declare const ResourceTagsFilterSensitiveLog: (obj: ResourceTags) => any;
186
+
187
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
188
+ obj: ListTagsForResourceResponse
189
+ ) => any;
190
+
191
+ export declare const PutPolicyRequestFilterSensitiveLog: (
192
+ obj: PutPolicyRequest
193
+ ) => any;
194
+
195
+ export declare const PutPolicyResponseFilterSensitiveLog: (
196
+ obj: PutPolicyResponse
197
+ ) => any;
198
+
199
+ export declare const TagResourceRequestFilterSensitiveLog: (
200
+ obj: TagResourceRequest
201
+ ) => any;
202
+
203
+ export declare const TagResourceResponseFilterSensitiveLog: (
204
+ obj: TagResourceResponse
205
+ ) => any;
206
+
207
+ export declare const UntagResourceRequestFilterSensitiveLog: (
208
+ obj: UntagResourceRequest
209
+ ) => any;
210
+
211
+ export declare const UntagResourceResponseFilterSensitiveLog: (
212
+ obj: UntagResourceResponse
213
+ ) => any;
214
+
215
+ export declare const UpdateJobTemplateRequestFilterSensitiveLog: (
216
+ obj: UpdateJobTemplateRequest
217
+ ) => any;
218
+
219
+ export declare const UpdateJobTemplateResponseFilterSensitiveLog: (
220
+ obj: UpdateJobTemplateResponse
221
+ ) => any;
222
+
223
+ export declare const UpdatePresetRequestFilterSensitiveLog: (
224
+ obj: UpdatePresetRequest
225
+ ) => any;
226
+
227
+ export declare const UpdatePresetResponseFilterSensitiveLog: (
228
+ obj: UpdatePresetResponse
229
+ ) => any;
230
+
231
+ export declare const UpdateQueueRequestFilterSensitiveLog: (
232
+ obj: UpdateQueueRequest
233
+ ) => any;
234
+
235
+ export declare const UpdateQueueResponseFilterSensitiveLog: (
236
+ obj: UpdateQueueResponse
237
+ ) => any;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "../commands/DescribeEndpointsCommand";
3
- import { MediaConvertPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeEndpoints(config: MediaConvertPaginationConfiguration, input: DescribeEndpointsCommandInput, ...additionalArguments: any): Paginator<DescribeEndpointsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeEndpointsCommandInput,
4
+ DescribeEndpointsCommandOutput,
5
+ } from "../commands/DescribeEndpointsCommand";
6
+ import { MediaConvertPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeEndpoints(
8
+ config: MediaConvertPaginationConfiguration,
9
+ input: DescribeEndpointsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeEndpointsCommandOutput>;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { MediaConvert } from "../MediaConvert";
3
- import { MediaConvertClient } from "../MediaConvertClient";
4
- export interface MediaConvertPaginationConfiguration extends PaginationConfiguration {
5
- client: MediaConvert | MediaConvertClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { MediaConvert } from "../MediaConvert";
3
+ import { MediaConvertClient } from "../MediaConvertClient";
4
+ export interface MediaConvertPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: MediaConvert | MediaConvertClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput } from "../commands/ListJobTemplatesCommand";
3
- import { MediaConvertPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListJobTemplates(config: MediaConvertPaginationConfiguration, input: ListJobTemplatesCommandInput, ...additionalArguments: any): Paginator<ListJobTemplatesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListJobTemplatesCommandInput,
4
+ ListJobTemplatesCommandOutput,
5
+ } from "../commands/ListJobTemplatesCommand";
6
+ import { MediaConvertPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListJobTemplates(
8
+ config: MediaConvertPaginationConfiguration,
9
+ input: ListJobTemplatesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListJobTemplatesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
3
- import { MediaConvertPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListJobs(config: MediaConvertPaginationConfiguration, input: ListJobsCommandInput, ...additionalArguments: any): Paginator<ListJobsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListJobsCommandInput,
4
+ ListJobsCommandOutput,
5
+ } from "../commands/ListJobsCommand";
6
+ import { MediaConvertPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListJobs(
8
+ config: MediaConvertPaginationConfiguration,
9
+ input: ListJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListJobsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListPresetsCommandInput, ListPresetsCommandOutput } from "../commands/ListPresetsCommand";
3
- import { MediaConvertPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListPresets(config: MediaConvertPaginationConfiguration, input: ListPresetsCommandInput, ...additionalArguments: any): Paginator<ListPresetsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListPresetsCommandInput,
4
+ ListPresetsCommandOutput,
5
+ } from "../commands/ListPresetsCommand";
6
+ import { MediaConvertPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListPresets(
8
+ config: MediaConvertPaginationConfiguration,
9
+ input: ListPresetsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListPresetsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand";
3
- import { MediaConvertPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListQueues(config: MediaConvertPaginationConfiguration, input: ListQueuesCommandInput, ...additionalArguments: any): Paginator<ListQueuesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListQueuesCommandInput,
4
+ ListQueuesCommandOutput,
5
+ } from "../commands/ListQueuesCommand";
6
+ import { MediaConvertPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListQueues(
8
+ config: MediaConvertPaginationConfiguration,
9
+ input: ListQueuesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListQueuesCommandOutput>;
@@ -1,6 +1,6 @@
1
- export * from "./DescribeEndpointsPaginator";
2
- export * from "./Interfaces";
3
- export * from "./ListJobTemplatesPaginator";
4
- export * from "./ListJobsPaginator";
5
- export * from "./ListPresetsPaginator";
6
- export * from "./ListQueuesPaginator";
1
+ export * from "./DescribeEndpointsPaginator";
2
+ export * from "./Interfaces";
3
+ export * from "./ListJobTemplatesPaginator";
4
+ export * from "./ListJobsPaginator";
5
+ export * from "./ListPresetsPaginator";
6
+ export * from "./ListQueuesPaginator";