@aws-sdk/client-emr-containers 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 (46) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/EMRContainersServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +42 -1
  5. package/dist-cjs/protocols/Aws_restJson1.js +130 -411
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/EMRContainersServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +38 -1
  9. package/dist-es/protocols/Aws_restJson1.js +285 -476
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/EMRContainersServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +23 -13
  13. package/dist-types/ts3.4/EMRContainers.d.ts +80 -0
  14. package/dist-types/ts3.4/EMRContainersClient.d.ts +88 -0
  15. package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  32. package/dist-types/ts3.4/index.d.ts +6 -0
  33. package/dist-types/ts3.4/models/EMRContainersServiceException.d.ts +6 -0
  34. package/dist-types/ts3.4/models/index.d.ts +1 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +660 -0
  36. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  37. package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +4 -0
  38. package/dist-types/ts3.4/pagination/ListManagedEndpointsPaginator.d.ts +4 -0
  39. package/dist-types/ts3.4/pagination/ListVirtualClustersPaginator.d.ts +4 -0
  40. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +47 -0
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  46. package/package.json +33 -33
@@ -0,0 +1,660 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { EMRContainersServiceException as __BaseException } from "./EMRContainersServiceException";
3
+ export interface CancelJobRunRequest {
4
+
5
+ id: string | undefined;
6
+
7
+ virtualClusterId: string | undefined;
8
+ }
9
+ export declare namespace CancelJobRunRequest {
10
+
11
+ const filterSensitiveLog: (obj: CancelJobRunRequest) => any;
12
+ }
13
+ export interface CancelJobRunResponse {
14
+
15
+ id?: string;
16
+
17
+ virtualClusterId?: string;
18
+ }
19
+ export declare namespace CancelJobRunResponse {
20
+
21
+ const filterSensitiveLog: (obj: CancelJobRunResponse) => any;
22
+ }
23
+
24
+ export declare class InternalServerException extends __BaseException {
25
+ readonly name: "InternalServerException";
26
+ readonly $fault: "server";
27
+
28
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
29
+ }
30
+
31
+ export declare class ValidationException extends __BaseException {
32
+ readonly name: "ValidationException";
33
+ readonly $fault: "client";
34
+
35
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
36
+ }
37
+
38
+ export interface CloudWatchMonitoringConfiguration {
39
+
40
+ logGroupName: string | undefined;
41
+
42
+ logStreamNamePrefix?: string;
43
+ }
44
+ export declare namespace CloudWatchMonitoringConfiguration {
45
+
46
+ const filterSensitiveLog: (obj: CloudWatchMonitoringConfiguration) => any;
47
+ }
48
+ export declare enum PersistentAppUI {
49
+ DISABLED = "DISABLED",
50
+ ENABLED = "ENABLED"
51
+ }
52
+
53
+ export interface S3MonitoringConfiguration {
54
+
55
+ logUri: string | undefined;
56
+ }
57
+ export declare namespace S3MonitoringConfiguration {
58
+
59
+ const filterSensitiveLog: (obj: S3MonitoringConfiguration) => any;
60
+ }
61
+
62
+ export interface MonitoringConfiguration {
63
+
64
+ persistentAppUI?: PersistentAppUI | string;
65
+
66
+ cloudWatchMonitoringConfiguration?: CloudWatchMonitoringConfiguration;
67
+
68
+ s3MonitoringConfiguration?: S3MonitoringConfiguration;
69
+ }
70
+ export declare namespace MonitoringConfiguration {
71
+
72
+ const filterSensitiveLog: (obj: MonitoringConfiguration) => any;
73
+ }
74
+ export interface CreateManagedEndpointResponse {
75
+
76
+ id?: string;
77
+
78
+ name?: string;
79
+
80
+ arn?: string;
81
+
82
+ virtualClusterId?: string;
83
+ }
84
+ export declare namespace CreateManagedEndpointResponse {
85
+
86
+ const filterSensitiveLog: (obj: CreateManagedEndpointResponse) => any;
87
+ }
88
+
89
+ export declare class ResourceNotFoundException extends __BaseException {
90
+ readonly name: "ResourceNotFoundException";
91
+ readonly $fault: "client";
92
+
93
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
94
+ }
95
+
96
+ export interface EksInfo {
97
+
98
+ namespace?: string;
99
+ }
100
+ export declare namespace EksInfo {
101
+
102
+ const filterSensitiveLog: (obj: EksInfo) => any;
103
+ }
104
+
105
+ export declare type ContainerInfo = ContainerInfo.EksInfoMember | ContainerInfo.$UnknownMember;
106
+ export declare namespace ContainerInfo {
107
+
108
+ interface EksInfoMember {
109
+ eksInfo: EksInfo;
110
+ $unknown?: never;
111
+ }
112
+ interface $UnknownMember {
113
+ eksInfo?: never;
114
+ $unknown: [
115
+ string,
116
+ any
117
+ ];
118
+ }
119
+ interface Visitor<T> {
120
+ eksInfo: (value: EksInfo) => T;
121
+ _: (name: string, value: any) => T;
122
+ }
123
+ const visit: <T>(value: ContainerInfo, visitor: Visitor<T>) => T;
124
+
125
+ const filterSensitiveLog: (obj: ContainerInfo) => any;
126
+ }
127
+ export declare enum ContainerProviderType {
128
+ EKS = "EKS"
129
+ }
130
+
131
+ export interface ContainerProvider {
132
+
133
+ type: ContainerProviderType | string | undefined;
134
+
135
+ id: string | undefined;
136
+
137
+ info?: ContainerInfo;
138
+ }
139
+ export declare namespace ContainerProvider {
140
+
141
+ const filterSensitiveLog: (obj: ContainerProvider) => any;
142
+ }
143
+ export interface CreateVirtualClusterRequest {
144
+
145
+ name: string | undefined;
146
+
147
+ containerProvider: ContainerProvider | undefined;
148
+
149
+ clientToken?: string;
150
+
151
+ tags?: {
152
+ [key: string]: string;
153
+ };
154
+ }
155
+ export declare namespace CreateVirtualClusterRequest {
156
+
157
+ const filterSensitiveLog: (obj: CreateVirtualClusterRequest) => any;
158
+ }
159
+ export interface CreateVirtualClusterResponse {
160
+
161
+ id?: string;
162
+
163
+ name?: string;
164
+
165
+ arn?: string;
166
+ }
167
+ export declare namespace CreateVirtualClusterResponse {
168
+
169
+ const filterSensitiveLog: (obj: CreateVirtualClusterResponse) => any;
170
+ }
171
+ export interface DeleteManagedEndpointRequest {
172
+
173
+ id: string | undefined;
174
+
175
+ virtualClusterId: string | undefined;
176
+ }
177
+ export declare namespace DeleteManagedEndpointRequest {
178
+
179
+ const filterSensitiveLog: (obj: DeleteManagedEndpointRequest) => any;
180
+ }
181
+ export interface DeleteManagedEndpointResponse {
182
+
183
+ id?: string;
184
+
185
+ virtualClusterId?: string;
186
+ }
187
+ export declare namespace DeleteManagedEndpointResponse {
188
+
189
+ const filterSensitiveLog: (obj: DeleteManagedEndpointResponse) => any;
190
+ }
191
+ export interface DeleteVirtualClusterRequest {
192
+
193
+ id: string | undefined;
194
+ }
195
+ export declare namespace DeleteVirtualClusterRequest {
196
+
197
+ const filterSensitiveLog: (obj: DeleteVirtualClusterRequest) => any;
198
+ }
199
+ export interface DeleteVirtualClusterResponse {
200
+
201
+ id?: string;
202
+ }
203
+ export declare namespace DeleteVirtualClusterResponse {
204
+
205
+ const filterSensitiveLog: (obj: DeleteVirtualClusterResponse) => any;
206
+ }
207
+ export interface DescribeJobRunRequest {
208
+
209
+ id: string | undefined;
210
+
211
+ virtualClusterId: string | undefined;
212
+ }
213
+ export declare namespace DescribeJobRunRequest {
214
+
215
+ const filterSensitiveLog: (obj: DescribeJobRunRequest) => any;
216
+ }
217
+ export declare enum FailureReason {
218
+ CLUSTER_UNAVAILABLE = "CLUSTER_UNAVAILABLE",
219
+ INTERNAL_ERROR = "INTERNAL_ERROR",
220
+ USER_ERROR = "USER_ERROR",
221
+ VALIDATION_ERROR = "VALIDATION_ERROR"
222
+ }
223
+
224
+ export interface SparkSubmitJobDriver {
225
+
226
+ entryPoint: string | undefined;
227
+
228
+ entryPointArguments?: string[];
229
+
230
+ sparkSubmitParameters?: string;
231
+ }
232
+ export declare namespace SparkSubmitJobDriver {
233
+
234
+ const filterSensitiveLog: (obj: SparkSubmitJobDriver) => any;
235
+ }
236
+
237
+ export interface JobDriver {
238
+
239
+ sparkSubmitJobDriver?: SparkSubmitJobDriver;
240
+ }
241
+ export declare namespace JobDriver {
242
+
243
+ const filterSensitiveLog: (obj: JobDriver) => any;
244
+ }
245
+ export declare enum JobRunState {
246
+ CANCELLED = "CANCELLED",
247
+ CANCEL_PENDING = "CANCEL_PENDING",
248
+ COMPLETED = "COMPLETED",
249
+ FAILED = "FAILED",
250
+ PENDING = "PENDING",
251
+ RUNNING = "RUNNING",
252
+ SUBMITTED = "SUBMITTED"
253
+ }
254
+ export interface DescribeManagedEndpointRequest {
255
+
256
+ id: string | undefined;
257
+
258
+ virtualClusterId: string | undefined;
259
+ }
260
+ export declare namespace DescribeManagedEndpointRequest {
261
+
262
+ const filterSensitiveLog: (obj: DescribeManagedEndpointRequest) => any;
263
+ }
264
+
265
+ export interface Certificate {
266
+
267
+ certificateArn?: string;
268
+
269
+ certificateData?: string;
270
+ }
271
+ export declare namespace Certificate {
272
+
273
+ const filterSensitiveLog: (obj: Certificate) => any;
274
+ }
275
+ export declare enum EndpointState {
276
+ ACTIVE = "ACTIVE",
277
+ CREATING = "CREATING",
278
+ TERMINATED = "TERMINATED",
279
+ TERMINATED_WITH_ERRORS = "TERMINATED_WITH_ERRORS",
280
+ TERMINATING = "TERMINATING"
281
+ }
282
+ export interface DescribeVirtualClusterRequest {
283
+
284
+ id: string | undefined;
285
+ }
286
+ export declare namespace DescribeVirtualClusterRequest {
287
+
288
+ const filterSensitiveLog: (obj: DescribeVirtualClusterRequest) => any;
289
+ }
290
+ export declare enum VirtualClusterState {
291
+ ARRESTED = "ARRESTED",
292
+ RUNNING = "RUNNING",
293
+ TERMINATED = "TERMINATED",
294
+ TERMINATING = "TERMINATING"
295
+ }
296
+
297
+ export interface VirtualCluster {
298
+
299
+ id?: string;
300
+
301
+ name?: string;
302
+
303
+ arn?: string;
304
+
305
+ state?: VirtualClusterState | string;
306
+
307
+ containerProvider?: ContainerProvider;
308
+
309
+ createdAt?: Date;
310
+
311
+ tags?: {
312
+ [key: string]: string;
313
+ };
314
+ }
315
+ export declare namespace VirtualCluster {
316
+
317
+ const filterSensitiveLog: (obj: VirtualCluster) => any;
318
+ }
319
+ export interface DescribeVirtualClusterResponse {
320
+
321
+ virtualCluster?: VirtualCluster;
322
+ }
323
+ export declare namespace DescribeVirtualClusterResponse {
324
+
325
+ const filterSensitiveLog: (obj: DescribeVirtualClusterResponse) => any;
326
+ }
327
+ export interface ListJobRunsRequest {
328
+
329
+ virtualClusterId: string | undefined;
330
+
331
+ createdBefore?: Date;
332
+
333
+ createdAfter?: Date;
334
+
335
+ name?: string;
336
+
337
+ states?: (JobRunState | string)[];
338
+
339
+ maxResults?: number;
340
+
341
+ nextToken?: string;
342
+ }
343
+ export declare namespace ListJobRunsRequest {
344
+
345
+ const filterSensitiveLog: (obj: ListJobRunsRequest) => any;
346
+ }
347
+ export interface ListManagedEndpointsRequest {
348
+
349
+ virtualClusterId: string | undefined;
350
+
351
+ createdBefore?: Date;
352
+
353
+ createdAfter?: Date;
354
+
355
+ types?: string[];
356
+
357
+ states?: (EndpointState | string)[];
358
+
359
+ maxResults?: number;
360
+
361
+ nextToken?: string;
362
+ }
363
+ export declare namespace ListManagedEndpointsRequest {
364
+
365
+ const filterSensitiveLog: (obj: ListManagedEndpointsRequest) => any;
366
+ }
367
+ export interface ListTagsForResourceRequest {
368
+
369
+ resourceArn: string | undefined;
370
+ }
371
+ export declare namespace ListTagsForResourceRequest {
372
+
373
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
374
+ }
375
+ export interface ListTagsForResourceResponse {
376
+
377
+ tags?: {
378
+ [key: string]: string;
379
+ };
380
+ }
381
+ export declare namespace ListTagsForResourceResponse {
382
+
383
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
384
+ }
385
+ export interface ListVirtualClustersRequest {
386
+
387
+ containerProviderId?: string;
388
+
389
+ containerProviderType?: ContainerProviderType | string;
390
+
391
+ createdAfter?: Date;
392
+
393
+ createdBefore?: Date;
394
+
395
+ states?: (VirtualClusterState | string)[];
396
+
397
+ maxResults?: number;
398
+
399
+ nextToken?: string;
400
+ }
401
+ export declare namespace ListVirtualClustersRequest {
402
+
403
+ const filterSensitiveLog: (obj: ListVirtualClustersRequest) => any;
404
+ }
405
+ export interface ListVirtualClustersResponse {
406
+
407
+ virtualClusters?: VirtualCluster[];
408
+
409
+ nextToken?: string;
410
+ }
411
+ export declare namespace ListVirtualClustersResponse {
412
+
413
+ const filterSensitiveLog: (obj: ListVirtualClustersResponse) => any;
414
+ }
415
+ export interface StartJobRunResponse {
416
+
417
+ id?: string;
418
+
419
+ name?: string;
420
+
421
+ arn?: string;
422
+
423
+ virtualClusterId?: string;
424
+ }
425
+ export declare namespace StartJobRunResponse {
426
+
427
+ const filterSensitiveLog: (obj: StartJobRunResponse) => any;
428
+ }
429
+ export interface TagResourceRequest {
430
+
431
+ resourceArn: string | undefined;
432
+
433
+ tags: {
434
+ [key: string]: string;
435
+ } | undefined;
436
+ }
437
+ export declare namespace TagResourceRequest {
438
+
439
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
440
+ }
441
+ export interface TagResourceResponse {
442
+ }
443
+ export declare namespace TagResourceResponse {
444
+
445
+ const filterSensitiveLog: (obj: TagResourceResponse) => any;
446
+ }
447
+ export interface UntagResourceRequest {
448
+
449
+ resourceArn: string | undefined;
450
+
451
+ tagKeys: string[] | undefined;
452
+ }
453
+ export declare namespace UntagResourceRequest {
454
+
455
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
456
+ }
457
+ export interface UntagResourceResponse {
458
+ }
459
+ export declare namespace UntagResourceResponse {
460
+
461
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
462
+ }
463
+
464
+ export interface Configuration {
465
+
466
+ classification: string | undefined;
467
+
468
+ properties?: {
469
+ [key: string]: string;
470
+ };
471
+
472
+ configurations?: Configuration[];
473
+ }
474
+ export declare namespace Configuration {
475
+
476
+ const filterSensitiveLog: (obj: Configuration) => any;
477
+ }
478
+
479
+ export interface ConfigurationOverrides {
480
+
481
+ applicationConfiguration?: Configuration[];
482
+
483
+ monitoringConfiguration?: MonitoringConfiguration;
484
+ }
485
+ export declare namespace ConfigurationOverrides {
486
+
487
+ const filterSensitiveLog: (obj: ConfigurationOverrides) => any;
488
+ }
489
+ export interface CreateManagedEndpointRequest {
490
+
491
+ name: string | undefined;
492
+
493
+ virtualClusterId: string | undefined;
494
+
495
+ type: string | undefined;
496
+
497
+ releaseLabel: string | undefined;
498
+
499
+ executionRoleArn: string | undefined;
500
+
501
+ certificateArn?: string;
502
+
503
+ configurationOverrides?: ConfigurationOverrides;
504
+
505
+ clientToken?: string;
506
+
507
+ tags?: {
508
+ [key: string]: string;
509
+ };
510
+ }
511
+ export declare namespace CreateManagedEndpointRequest {
512
+
513
+ const filterSensitiveLog: (obj: CreateManagedEndpointRequest) => any;
514
+ }
515
+
516
+ export interface Endpoint {
517
+
518
+ id?: string;
519
+
520
+ name?: string;
521
+
522
+ arn?: string;
523
+
524
+ virtualClusterId?: string;
525
+
526
+ type?: string;
527
+
528
+ state?: EndpointState | string;
529
+
530
+ releaseLabel?: string;
531
+
532
+ executionRoleArn?: string;
533
+
534
+ certificateArn?: string;
535
+
536
+ certificateAuthority?: Certificate;
537
+
538
+ configurationOverrides?: ConfigurationOverrides;
539
+
540
+ serverUrl?: string;
541
+
542
+ createdAt?: Date;
543
+
544
+ securityGroup?: string;
545
+
546
+ subnetIds?: string[];
547
+
548
+ stateDetails?: string;
549
+
550
+ failureReason?: FailureReason | string;
551
+
552
+ tags?: {
553
+ [key: string]: string;
554
+ };
555
+ }
556
+ export declare namespace Endpoint {
557
+
558
+ const filterSensitiveLog: (obj: Endpoint) => any;
559
+ }
560
+
561
+ export interface JobRun {
562
+
563
+ id?: string;
564
+
565
+ name?: string;
566
+
567
+ virtualClusterId?: string;
568
+
569
+ arn?: string;
570
+
571
+ state?: JobRunState | string;
572
+
573
+ clientToken?: string;
574
+
575
+ executionRoleArn?: string;
576
+
577
+ releaseLabel?: string;
578
+
579
+ configurationOverrides?: ConfigurationOverrides;
580
+
581
+ jobDriver?: JobDriver;
582
+
583
+ createdAt?: Date;
584
+
585
+ createdBy?: string;
586
+
587
+ finishedAt?: Date;
588
+
589
+ stateDetails?: string;
590
+
591
+ failureReason?: FailureReason | string;
592
+
593
+ tags?: {
594
+ [key: string]: string;
595
+ };
596
+ }
597
+ export declare namespace JobRun {
598
+
599
+ const filterSensitiveLog: (obj: JobRun) => any;
600
+ }
601
+ export interface StartJobRunRequest {
602
+
603
+ name?: string;
604
+
605
+ virtualClusterId: string | undefined;
606
+
607
+ clientToken?: string;
608
+
609
+ executionRoleArn: string | undefined;
610
+
611
+ releaseLabel: string | undefined;
612
+
613
+ jobDriver: JobDriver | undefined;
614
+
615
+ configurationOverrides?: ConfigurationOverrides;
616
+
617
+ tags?: {
618
+ [key: string]: string;
619
+ };
620
+ }
621
+ export declare namespace StartJobRunRequest {
622
+
623
+ const filterSensitiveLog: (obj: StartJobRunRequest) => any;
624
+ }
625
+ export interface DescribeJobRunResponse {
626
+
627
+ jobRun?: JobRun;
628
+ }
629
+ export declare namespace DescribeJobRunResponse {
630
+
631
+ const filterSensitiveLog: (obj: DescribeJobRunResponse) => any;
632
+ }
633
+ export interface DescribeManagedEndpointResponse {
634
+
635
+ endpoint?: Endpoint;
636
+ }
637
+ export declare namespace DescribeManagedEndpointResponse {
638
+
639
+ const filterSensitiveLog: (obj: DescribeManagedEndpointResponse) => any;
640
+ }
641
+ export interface ListJobRunsResponse {
642
+
643
+ jobRuns?: JobRun[];
644
+
645
+ nextToken?: string;
646
+ }
647
+ export declare namespace ListJobRunsResponse {
648
+
649
+ const filterSensitiveLog: (obj: ListJobRunsResponse) => any;
650
+ }
651
+ export interface ListManagedEndpointsResponse {
652
+
653
+ endpoints?: Endpoint[];
654
+
655
+ nextToken?: string;
656
+ }
657
+ export declare namespace ListManagedEndpointsResponse {
658
+
659
+ const filterSensitiveLog: (obj: ListManagedEndpointsResponse) => any;
660
+ }
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { EMRContainers } from "../EMRContainers";
3
+ import { EMRContainersClient } from "../EMRContainersClient";
4
+ export interface EMRContainersPaginationConfiguration extends PaginationConfiguration {
5
+ client: EMRContainers | EMRContainersClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand";
3
+ import { EMRContainersPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListJobRuns(config: EMRContainersPaginationConfiguration, input: ListJobRunsCommandInput, ...additionalArguments: any): Paginator<ListJobRunsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput } from "../commands/ListManagedEndpointsCommand";
3
+ import { EMRContainersPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListManagedEndpoints(config: EMRContainersPaginationConfiguration, input: ListManagedEndpointsCommandInput, ...additionalArguments: any): Paginator<ListManagedEndpointsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput } from "../commands/ListVirtualClustersCommand";
3
+ import { EMRContainersPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListVirtualClusters(config: EMRContainersPaginationConfiguration, input: ListVirtualClustersCommandInput, ...additionalArguments: any): Paginator<ListVirtualClustersCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListJobRunsPaginator";
3
+ export * from "./ListManagedEndpointsPaginator";
4
+ export * from "./ListVirtualClustersPaginator";