@aws-sdk/client-mediaconvert 3.169.0 → 3.171.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 +480 -145
  3. package/dist-types/ts3.4/MediaConvertClient.d.ts +273 -101
  4. package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +30 -17
  17. package/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/GetPresetCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/GetQueueCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +33 -18
  23. package/dist-types/ts3.4/commands/ListPresetsCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  26. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  29. package/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +36 -17
  30. package/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +32 -17
  31. package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +32 -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 +7 -6
  36. package/dist-types/ts3.4/models/index.d.ts +3 -3
  37. package/dist-types/ts3.4/models/models_0.d.ts +2244 -2849
  38. package/dist-types/ts3.4/models/models_1.d.ts +2066 -2642
  39. package/dist-types/ts3.4/models/models_2.d.ts +182 -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 +65 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  52. package/package.json +34 -34
@@ -1,204 +1,182 @@
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
+ NextToken?: string;
19
+ }
20
+ export interface ListJobTemplatesRequest {
21
+ Category?: string;
22
+ ListBy?: JobTemplateListBy | string;
23
+ MaxResults?: number;
24
+ NextToken?: string;
25
+ Order?: Order | string;
26
+ }
27
+ export interface ListJobTemplatesResponse {
28
+ JobTemplates?: JobTemplate[];
29
+ NextToken?: string;
30
+ }
31
+ export declare enum PresetListBy {
32
+ CREATION_DATE = "CREATION_DATE",
33
+ NAME = "NAME",
34
+ SYSTEM = "SYSTEM",
35
+ }
36
+ export interface ListPresetsRequest {
37
+ Category?: string;
38
+ ListBy?: PresetListBy | string;
39
+ MaxResults?: number;
40
+ NextToken?: string;
41
+ Order?: Order | string;
42
+ }
43
+ export interface ListPresetsResponse {
44
+ NextToken?: string;
45
+ Presets?: Preset[];
46
+ }
47
+ export declare enum QueueListBy {
48
+ CREATION_DATE = "CREATION_DATE",
49
+ NAME = "NAME",
50
+ }
51
+ export interface ListQueuesRequest {
52
+ ListBy?: QueueListBy | string;
53
+ MaxResults?: number;
54
+ NextToken?: string;
55
+ Order?: Order | string;
56
+ }
57
+ export interface ListQueuesResponse {
58
+ NextToken?: string;
59
+ Queues?: Queue[];
60
+ }
61
+ export interface ListTagsForResourceRequest {
62
+ Arn: string | undefined;
63
+ }
64
+ export interface ResourceTags {
65
+ Arn?: string;
66
+ Tags?: Record<string, string>;
67
+ }
68
+ export interface ListTagsForResourceResponse {
69
+ ResourceTags?: ResourceTags;
70
+ }
71
+ export interface PutPolicyRequest {
72
+ Policy: Policy | undefined;
73
+ }
74
+ export interface PutPolicyResponse {
75
+ Policy?: Policy;
76
+ }
77
+ export interface TagResourceRequest {
78
+ Arn: string | undefined;
79
+ Tags: Record<string, string> | undefined;
80
+ }
81
+ export interface TagResourceResponse {}
82
+ export interface UntagResourceRequest {
83
+ Arn: string | undefined;
84
+ TagKeys?: string[];
85
+ }
86
+ export interface UntagResourceResponse {}
87
+ export interface UpdateJobTemplateRequest {
88
+ AccelerationSettings?: AccelerationSettings;
89
+ Category?: string;
90
+ Description?: string;
91
+ HopDestinations?: HopDestination[];
92
+ Name: string | undefined;
93
+ Priority?: number;
94
+ Queue?: string;
95
+ Settings?: JobTemplateSettings;
96
+ StatusUpdateInterval?: StatusUpdateInterval | string;
97
+ }
98
+ export interface UpdateJobTemplateResponse {
99
+ JobTemplate?: JobTemplate;
100
+ }
101
+ export interface UpdatePresetRequest {
102
+ Category?: string;
103
+ Description?: string;
104
+ Name: string | undefined;
105
+ Settings?: PresetSettings;
106
+ }
107
+ export interface UpdatePresetResponse {
108
+ Preset?: Preset;
109
+ }
110
+ export interface UpdateQueueRequest {
111
+ Description?: string;
112
+ Name: string | undefined;
113
+ ReservationPlanSettings?: ReservationPlanSettings;
114
+ Status?: QueueStatus | string;
115
+ }
116
+ export interface UpdateQueueResponse {
117
+ Queue?: Queue;
118
+ }
119
+ export declare const ListJobsResponseFilterSensitiveLog: (
120
+ obj: ListJobsResponse
121
+ ) => any;
122
+ export declare const ListJobTemplatesRequestFilterSensitiveLog: (
123
+ obj: ListJobTemplatesRequest
124
+ ) => any;
125
+ export declare const ListJobTemplatesResponseFilterSensitiveLog: (
126
+ obj: ListJobTemplatesResponse
127
+ ) => any;
128
+ export declare const ListPresetsRequestFilterSensitiveLog: (
129
+ obj: ListPresetsRequest
130
+ ) => any;
131
+ export declare const ListPresetsResponseFilterSensitiveLog: (
132
+ obj: ListPresetsResponse
133
+ ) => any;
134
+ export declare const ListQueuesRequestFilterSensitiveLog: (
135
+ obj: ListQueuesRequest
136
+ ) => any;
137
+ export declare const ListQueuesResponseFilterSensitiveLog: (
138
+ obj: ListQueuesResponse
139
+ ) => any;
140
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
141
+ obj: ListTagsForResourceRequest
142
+ ) => any;
143
+ export declare const ResourceTagsFilterSensitiveLog: (obj: ResourceTags) => any;
144
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
145
+ obj: ListTagsForResourceResponse
146
+ ) => any;
147
+ export declare const PutPolicyRequestFilterSensitiveLog: (
148
+ obj: PutPolicyRequest
149
+ ) => any;
150
+ export declare const PutPolicyResponseFilterSensitiveLog: (
151
+ obj: PutPolicyResponse
152
+ ) => any;
153
+ export declare const TagResourceRequestFilterSensitiveLog: (
154
+ obj: TagResourceRequest
155
+ ) => any;
156
+ export declare const TagResourceResponseFilterSensitiveLog: (
157
+ obj: TagResourceResponse
158
+ ) => any;
159
+ export declare const UntagResourceRequestFilterSensitiveLog: (
160
+ obj: UntagResourceRequest
161
+ ) => any;
162
+ export declare const UntagResourceResponseFilterSensitiveLog: (
163
+ obj: UntagResourceResponse
164
+ ) => any;
165
+ export declare const UpdateJobTemplateRequestFilterSensitiveLog: (
166
+ obj: UpdateJobTemplateRequest
167
+ ) => any;
168
+ export declare const UpdateJobTemplateResponseFilterSensitiveLog: (
169
+ obj: UpdateJobTemplateResponse
170
+ ) => any;
171
+ export declare const UpdatePresetRequestFilterSensitiveLog: (
172
+ obj: UpdatePresetRequest
173
+ ) => any;
174
+ export declare const UpdatePresetResponseFilterSensitiveLog: (
175
+ obj: UpdatePresetResponse
176
+ ) => any;
177
+ export declare const UpdateQueueRequestFilterSensitiveLog: (
178
+ obj: UpdateQueueRequest
179
+ ) => any;
180
+ export declare const UpdateQueueResponseFilterSensitiveLog: (
181
+ obj: UpdateQueueResponse
182
+ ) => 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";