@aws-sdk/client-emr-containers 3.295.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.
Files changed (29) hide show
  1. package/dist-types/EMRContainers.d.ts +20 -0
  2. package/dist-types/EMRContainersClient.d.ts +24 -4
  3. package/dist-types/commands/CancelJobRunCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateJobTemplateCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateManagedEndpointCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateVirtualClusterCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteJobTemplateCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteManagedEndpointCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteVirtualClusterCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeJobRunCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeJobTemplateCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeManagedEndpointCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeVirtualClusterCommand.d.ts +16 -0
  14. package/dist-types/commands/ListJobRunsCommand.d.ts +16 -0
  15. package/dist-types/commands/ListJobTemplatesCommand.d.ts +16 -0
  16. package/dist-types/commands/ListManagedEndpointsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  18. package/dist-types/commands/ListVirtualClustersCommand.d.ts +16 -0
  19. package/dist-types/commands/StartJobRunCommand.d.ts +16 -0
  20. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  21. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  22. package/dist-types/models/EMRContainersServiceException.d.ts +2 -0
  23. package/dist-types/models/models_0.d.ts +165 -0
  24. package/dist-types/pagination/Interfaces.d.ts +3 -0
  25. package/dist-types/pagination/ListJobRunsPaginator.d.ts +3 -0
  26. package/dist-types/pagination/ListJobTemplatesPaginator.d.ts +3 -0
  27. package/dist-types/pagination/ListManagedEndpointsPaginator.d.ts +3 -0
  28. package/dist-types/pagination/ListVirtualClustersPaginator.d.ts +3 -0
  29. package/package.json +29 -29
@@ -1,5 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { EMRContainersServiceException as __BaseException } from "./EMRContainersServiceException";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface CancelJobRunRequest {
4
7
  /**
5
8
  * <p>The ID of the job run to cancel.</p>
@@ -10,6 +13,9 @@ export interface CancelJobRunRequest {
10
13
  */
11
14
  virtualClusterId: string | undefined;
12
15
  }
16
+ /**
17
+ * @public
18
+ */
13
19
  export interface CancelJobRunResponse {
14
20
  /**
15
21
  * <p>The output contains the ID of the cancelled job run.</p>
@@ -21,6 +27,7 @@ export interface CancelJobRunResponse {
21
27
  virtualClusterId?: string;
22
28
  }
23
29
  /**
30
+ * @public
24
31
  * <p>This is an internal server exception.</p>
25
32
  */
26
33
  export declare class InternalServerException extends __BaseException {
@@ -32,6 +39,7 @@ export declare class InternalServerException extends __BaseException {
32
39
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
33
40
  }
34
41
  /**
42
+ * @public
35
43
  * <p>There are invalid parameters in the client request.</p>
36
44
  */
37
45
  export declare class ValidationException extends __BaseException {
@@ -43,6 +51,7 @@ export declare class ValidationException extends __BaseException {
43
51
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
44
52
  }
45
53
  /**
54
+ * @public
46
55
  * <p> A configuration for CloudWatch monitoring. You can configure your jobs to send log
47
56
  * information to CloudWatch Logs. This data type allows job template parameters to be
48
57
  * specified within.</p>
@@ -58,6 +67,7 @@ export interface ParametricCloudWatchMonitoringConfiguration {
58
67
  logStreamNamePrefix?: string;
59
68
  }
60
69
  /**
70
+ * @public
61
71
  * <p> Amazon S3 configuration for monitoring log publishing. You can configure your jobs to
62
72
  * send log information to Amazon S3. This data type allows job template parameters to be
63
73
  * specified within.</p>
@@ -69,6 +79,7 @@ export interface ParametricS3MonitoringConfiguration {
69
79
  logUri?: string;
70
80
  }
71
81
  /**
82
+ * @public
72
83
  * <p> Configuration setting for monitoring. This data type allows job template parameters to
73
84
  * be specified within.</p>
74
85
  */
@@ -87,6 +98,7 @@ export interface ParametricMonitoringConfiguration {
87
98
  s3MonitoringConfiguration?: ParametricS3MonitoringConfiguration;
88
99
  }
89
100
  /**
101
+ * @public
90
102
  * <p>The job driver for job type.</p>
91
103
  */
92
104
  export interface SparkSqlJobDriver {
@@ -100,6 +112,7 @@ export interface SparkSqlJobDriver {
100
112
  sparkSqlParameters?: string;
101
113
  }
102
114
  /**
115
+ * @public
103
116
  * <p>The information about job driver for Spark submit.</p>
104
117
  */
105
118
  export interface SparkSubmitJobDriver {
@@ -117,6 +130,7 @@ export interface SparkSubmitJobDriver {
117
130
  sparkSubmitParameters?: string;
118
131
  }
119
132
  /**
133
+ * @public
120
134
  * <p>Specify the driver that the job runs on. Exactly one of the two available job drivers is
121
135
  * required, either sparkSqlJobDriver or sparkSubmitJobDriver.</p>
122
136
  */
@@ -130,11 +144,15 @@ export interface JobDriver {
130
144
  */
131
145
  sparkSqlJobDriver?: SparkSqlJobDriver;
132
146
  }
147
+ /**
148
+ * @public
149
+ */
133
150
  export declare enum TemplateParameterDataType {
134
151
  NUMBER = "NUMBER",
135
152
  STRING = "STRING"
136
153
  }
137
154
  /**
155
+ * @public
138
156
  * <p>The configuration of a job template parameter.</p>
139
157
  */
140
158
  export interface TemplateParameterConfiguration {
@@ -147,6 +165,9 @@ export interface TemplateParameterConfiguration {
147
165
  */
148
166
  defaultValue?: string;
149
167
  }
168
+ /**
169
+ * @public
170
+ */
150
171
  export interface CreateJobTemplateResponse {
151
172
  /**
152
173
  * <p>This output display the created job template ID.</p>
@@ -166,6 +187,7 @@ export interface CreateJobTemplateResponse {
166
187
  createdAt?: Date;
167
188
  }
168
189
  /**
190
+ * @public
169
191
  * <p>The specified resource was not found.</p>
170
192
  */
171
193
  export declare class ResourceNotFoundException extends __BaseException {
@@ -177,6 +199,7 @@ export declare class ResourceNotFoundException extends __BaseException {
177
199
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
178
200
  }
179
201
  /**
202
+ * @public
180
203
  * <p>A configuration for CloudWatch monitoring. You can configure your jobs to send log
181
204
  * information to CloudWatch Logs.</p>
182
205
  */
@@ -190,11 +213,15 @@ export interface CloudWatchMonitoringConfiguration {
190
213
  */
191
214
  logStreamNamePrefix?: string;
192
215
  }
216
+ /**
217
+ * @public
218
+ */
193
219
  export declare enum PersistentAppUI {
194
220
  DISABLED = "DISABLED",
195
221
  ENABLED = "ENABLED"
196
222
  }
197
223
  /**
224
+ * @public
198
225
  * <p> Amazon S3 configuration for monitoring log publishing. You can configure your jobs to
199
226
  * send log information to Amazon S3.</p>
200
227
  */
@@ -205,6 +232,7 @@ export interface S3MonitoringConfiguration {
205
232
  logUri: string | undefined;
206
233
  }
207
234
  /**
235
+ * @public
208
236
  * <p>Configuration setting for monitoring.</p>
209
237
  */
210
238
  export interface MonitoringConfiguration {
@@ -221,6 +249,9 @@ export interface MonitoringConfiguration {
221
249
  */
222
250
  s3MonitoringConfiguration?: S3MonitoringConfiguration;
223
251
  }
252
+ /**
253
+ * @public
254
+ */
224
255
  export interface CreateManagedEndpointResponse {
225
256
  /**
226
257
  * <p>The output contains the ID of the managed endpoint.</p>
@@ -240,6 +271,7 @@ export interface CreateManagedEndpointResponse {
240
271
  virtualClusterId?: string;
241
272
  }
242
273
  /**
274
+ * @public
243
275
  * <p>The information about the Amazon EKS cluster.</p>
244
276
  */
245
277
  export interface EksInfo {
@@ -249,9 +281,13 @@ export interface EksInfo {
249
281
  namespace?: string;
250
282
  }
251
283
  /**
284
+ * @public
252
285
  * <p>The information about the container used for a job run or a managed endpoint.</p>
253
286
  */
254
287
  export type ContainerInfo = ContainerInfo.EksInfoMember | ContainerInfo.$UnknownMember;
288
+ /**
289
+ * @public
290
+ */
255
291
  export declare namespace ContainerInfo {
256
292
  /**
257
293
  * <p>The information about the Amazon EKS cluster.</p>
@@ -270,10 +306,14 @@ export declare namespace ContainerInfo {
270
306
  }
271
307
  const visit: <T>(value: ContainerInfo, visitor: Visitor<T>) => T;
272
308
  }
309
+ /**
310
+ * @public
311
+ */
273
312
  export declare enum ContainerProviderType {
274
313
  EKS = "EKS"
275
314
  }
276
315
  /**
316
+ * @public
277
317
  * <p>The information about the container provider.</p>
278
318
  */
279
319
  export interface ContainerProvider {
@@ -290,6 +330,9 @@ export interface ContainerProvider {
290
330
  */
291
331
  info?: ContainerInfo;
292
332
  }
333
+ /**
334
+ * @public
335
+ */
293
336
  export interface CreateVirtualClusterRequest {
294
337
  /**
295
338
  * <p>The specified name of the virtual cluster.</p>
@@ -308,6 +351,9 @@ export interface CreateVirtualClusterRequest {
308
351
  */
309
352
  tags?: Record<string, string>;
310
353
  }
354
+ /**
355
+ * @public
356
+ */
311
357
  export interface CreateVirtualClusterResponse {
312
358
  /**
313
359
  * <p>This output contains the virtual cluster ID.</p>
@@ -322,18 +368,27 @@ export interface CreateVirtualClusterResponse {
322
368
  */
323
369
  arn?: string;
324
370
  }
371
+ /**
372
+ * @public
373
+ */
325
374
  export interface DeleteJobTemplateRequest {
326
375
  /**
327
376
  * <p>The ID of the job template that will be deleted.</p>
328
377
  */
329
378
  id: string | undefined;
330
379
  }
380
+ /**
381
+ * @public
382
+ */
331
383
  export interface DeleteJobTemplateResponse {
332
384
  /**
333
385
  * <p>This output contains the ID of the job template that was deleted.</p>
334
386
  */
335
387
  id?: string;
336
388
  }
389
+ /**
390
+ * @public
391
+ */
337
392
  export interface DeleteManagedEndpointRequest {
338
393
  /**
339
394
  * <p>The ID of the managed endpoint.</p>
@@ -344,6 +399,9 @@ export interface DeleteManagedEndpointRequest {
344
399
  */
345
400
  virtualClusterId: string | undefined;
346
401
  }
402
+ /**
403
+ * @public
404
+ */
347
405
  export interface DeleteManagedEndpointResponse {
348
406
  /**
349
407
  * <p>The output displays the ID of the managed endpoint.</p>
@@ -354,18 +412,27 @@ export interface DeleteManagedEndpointResponse {
354
412
  */
355
413
  virtualClusterId?: string;
356
414
  }
415
+ /**
416
+ * @public
417
+ */
357
418
  export interface DeleteVirtualClusterRequest {
358
419
  /**
359
420
  * <p>The ID of the virtual cluster that will be deleted.</p>
360
421
  */
361
422
  id: string | undefined;
362
423
  }
424
+ /**
425
+ * @public
426
+ */
363
427
  export interface DeleteVirtualClusterResponse {
364
428
  /**
365
429
  * <p>This output contains the ID of the virtual cluster that will be deleted. </p>
366
430
  */
367
431
  id?: string;
368
432
  }
433
+ /**
434
+ * @public
435
+ */
369
436
  export interface DescribeJobRunRequest {
370
437
  /**
371
438
  * <p>The ID of the job run request. </p>
@@ -376,6 +443,9 @@ export interface DescribeJobRunRequest {
376
443
  */
377
444
  virtualClusterId: string | undefined;
378
445
  }
446
+ /**
447
+ * @public
448
+ */
379
449
  export declare enum FailureReason {
380
450
  CLUSTER_UNAVAILABLE = "CLUSTER_UNAVAILABLE",
381
451
  INTERNAL_ERROR = "INTERNAL_ERROR",
@@ -383,6 +453,7 @@ export declare enum FailureReason {
383
453
  VALIDATION_ERROR = "VALIDATION_ERROR"
384
454
  }
385
455
  /**
456
+ * @public
386
457
  * <p>The configuration of the retry policy that the job runs on.</p>
387
458
  */
388
459
  export interface RetryPolicyConfiguration {
@@ -392,6 +463,7 @@ export interface RetryPolicyConfiguration {
392
463
  maxAttempts: number | undefined;
393
464
  }
394
465
  /**
466
+ * @public
395
467
  * <p>The current status of the retry policy executed on the job.</p>
396
468
  */
397
469
  export interface RetryPolicyExecution {
@@ -400,6 +472,9 @@ export interface RetryPolicyExecution {
400
472
  */
401
473
  currentAttemptCount: number | undefined;
402
474
  }
475
+ /**
476
+ * @public
477
+ */
403
478
  export declare enum JobRunState {
404
479
  CANCELLED = "CANCELLED",
405
480
  CANCEL_PENDING = "CANCEL_PENDING",
@@ -409,12 +484,18 @@ export declare enum JobRunState {
409
484
  RUNNING = "RUNNING",
410
485
  SUBMITTED = "SUBMITTED"
411
486
  }
487
+ /**
488
+ * @public
489
+ */
412
490
  export interface DescribeJobTemplateRequest {
413
491
  /**
414
492
  * <p>The ID of the job template that will be described.</p>
415
493
  */
416
494
  id: string | undefined;
417
495
  }
496
+ /**
497
+ * @public
498
+ */
418
499
  export interface DescribeManagedEndpointRequest {
419
500
  /**
420
501
  * <p>This output displays ID of the managed endpoint.</p>
@@ -426,6 +507,7 @@ export interface DescribeManagedEndpointRequest {
426
507
  virtualClusterId: string | undefined;
427
508
  }
428
509
  /**
510
+ * @public
429
511
  * <p>The entity representing certificate data generated for managed endpoint.</p>
430
512
  */
431
513
  export interface Certificate {
@@ -438,6 +520,9 @@ export interface Certificate {
438
520
  */
439
521
  certificateData?: string;
440
522
  }
523
+ /**
524
+ * @public
525
+ */
441
526
  export declare enum EndpointState {
442
527
  ACTIVE = "ACTIVE",
443
528
  CREATING = "CREATING",
@@ -445,12 +530,18 @@ export declare enum EndpointState {
445
530
  TERMINATED_WITH_ERRORS = "TERMINATED_WITH_ERRORS",
446
531
  TERMINATING = "TERMINATING"
447
532
  }
533
+ /**
534
+ * @public
535
+ */
448
536
  export interface DescribeVirtualClusterRequest {
449
537
  /**
450
538
  * <p>The ID of the virtual cluster that will be described.</p>
451
539
  */
452
540
  id: string | undefined;
453
541
  }
542
+ /**
543
+ * @public
544
+ */
454
545
  export declare enum VirtualClusterState {
455
546
  ARRESTED = "ARRESTED",
456
547
  RUNNING = "RUNNING",
@@ -458,6 +549,7 @@ export declare enum VirtualClusterState {
458
549
  TERMINATING = "TERMINATING"
459
550
  }
460
551
  /**
552
+ * @public
461
553
  * <p>This entity describes a virtual cluster. A virtual cluster is a Kubernetes namespace
462
554
  * that Amazon EMR is registered with. Amazon EMR uses virtual clusters to run jobs and host
463
555
  * endpoints. Multiple virtual clusters can be backed by the same physical cluster. However,
@@ -495,12 +587,18 @@ export interface VirtualCluster {
495
587
  */
496
588
  tags?: Record<string, string>;
497
589
  }
590
+ /**
591
+ * @public
592
+ */
498
593
  export interface DescribeVirtualClusterResponse {
499
594
  /**
500
595
  * <p>This output displays information about the specified virtual cluster.</p>
501
596
  */
502
597
  virtualCluster?: VirtualCluster;
503
598
  }
599
+ /**
600
+ * @public
601
+ */
504
602
  export interface ListJobRunsRequest {
505
603
  /**
506
604
  * <p>The ID of the virtual cluster for which to list the job run. </p>
@@ -531,6 +629,9 @@ export interface ListJobRunsRequest {
531
629
  */
532
630
  nextToken?: string;
533
631
  }
632
+ /**
633
+ * @public
634
+ */
534
635
  export interface ListJobTemplatesRequest {
535
636
  /**
536
637
  * <p>The date and time after which the job templates were created.</p>
@@ -549,6 +650,9 @@ export interface ListJobTemplatesRequest {
549
650
  */
550
651
  nextToken?: string;
551
652
  }
653
+ /**
654
+ * @public
655
+ */
552
656
  export interface ListManagedEndpointsRequest {
553
657
  /**
554
658
  * <p>The ID of the virtual cluster.</p>
@@ -579,18 +683,27 @@ export interface ListManagedEndpointsRequest {
579
683
  */
580
684
  nextToken?: string;
581
685
  }
686
+ /**
687
+ * @public
688
+ */
582
689
  export interface ListTagsForResourceRequest {
583
690
  /**
584
691
  * <p>The ARN of tagged resources.</p>
585
692
  */
586
693
  resourceArn: string | undefined;
587
694
  }
695
+ /**
696
+ * @public
697
+ */
588
698
  export interface ListTagsForResourceResponse {
589
699
  /**
590
700
  * <p>The tags assigned to resources.</p>
591
701
  */
592
702
  tags?: Record<string, string>;
593
703
  }
704
+ /**
705
+ * @public
706
+ */
594
707
  export interface ListVirtualClustersRequest {
595
708
  /**
596
709
  * <p>The container provider ID of the virtual cluster.</p>
@@ -622,6 +735,9 @@ export interface ListVirtualClustersRequest {
622
735
  */
623
736
  nextToken?: string;
624
737
  }
738
+ /**
739
+ * @public
740
+ */
625
741
  export interface ListVirtualClustersResponse {
626
742
  /**
627
743
  * <p>This output lists the specified virtual clusters.</p>
@@ -632,6 +748,9 @@ export interface ListVirtualClustersResponse {
632
748
  */
633
749
  nextToken?: string;
634
750
  }
751
+ /**
752
+ * @public
753
+ */
635
754
  export interface StartJobRunResponse {
636
755
  /**
637
756
  * <p>This output displays the started job run ID.</p>
@@ -650,6 +769,9 @@ export interface StartJobRunResponse {
650
769
  */
651
770
  virtualClusterId?: string;
652
771
  }
772
+ /**
773
+ * @public
774
+ */
653
775
  export interface TagResourceRequest {
654
776
  /**
655
777
  * <p>The ARN of resources.</p>
@@ -660,8 +782,14 @@ export interface TagResourceRequest {
660
782
  */
661
783
  tags: Record<string, string> | undefined;
662
784
  }
785
+ /**
786
+ * @public
787
+ */
663
788
  export interface TagResourceResponse {
664
789
  }
790
+ /**
791
+ * @public
792
+ */
665
793
  export interface UntagResourceRequest {
666
794
  /**
667
795
  * <p>The ARN of resources.</p>
@@ -672,9 +800,13 @@ export interface UntagResourceRequest {
672
800
  */
673
801
  tagKeys: string[] | undefined;
674
802
  }
803
+ /**
804
+ * @public
805
+ */
675
806
  export interface UntagResourceResponse {
676
807
  }
677
808
  /**
809
+ * @public
678
810
  * <p>A configuration specification to be used when provisioning virtual clusters, which can
679
811
  * include configurations for applications and software bundled with Amazon EMR on EKS. A
680
812
  * configuration consists of a classification, properties, and optional nested configurations.
@@ -696,6 +828,7 @@ export interface Configuration {
696
828
  configurations?: Configuration[];
697
829
  }
698
830
  /**
831
+ * @public
699
832
  * <p>A configuration specification to be used to override existing configurations.</p>
700
833
  */
701
834
  export interface ConfigurationOverrides {
@@ -709,6 +842,7 @@ export interface ConfigurationOverrides {
709
842
  monitoringConfiguration?: MonitoringConfiguration;
710
843
  }
711
844
  /**
845
+ * @public
712
846
  * <p> A configuration specification to be used to override existing configurations. This data
713
847
  * type allows job template parameters to be specified within.</p>
714
848
  */
@@ -722,6 +856,9 @@ export interface ParametricConfigurationOverrides {
722
856
  */
723
857
  monitoringConfiguration?: ParametricMonitoringConfiguration;
724
858
  }
859
+ /**
860
+ * @public
861
+ */
725
862
  export interface CreateManagedEndpointRequest {
726
863
  /**
727
864
  * <p>The name of the managed endpoint.</p>
@@ -764,6 +901,7 @@ export interface CreateManagedEndpointRequest {
764
901
  tags?: Record<string, string>;
765
902
  }
766
903
  /**
904
+ * @public
767
905
  * <p>This entity represents the endpoint that is managed by Amazon EMR on EKS.</p>
768
906
  */
769
907
  export interface Endpoint {
@@ -846,6 +984,7 @@ export interface Endpoint {
846
984
  tags?: Record<string, string>;
847
985
  }
848
986
  /**
987
+ * @public
849
988
  * <p>This entity describes a job run. A job run is a unit of work, such as a Spark jar,
850
989
  * PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS. </p>
851
990
  */
@@ -924,6 +1063,7 @@ export interface JobRun {
924
1063
  retryPolicyExecution?: RetryPolicyExecution;
925
1064
  }
926
1065
  /**
1066
+ * @public
927
1067
  * <p>The values of StartJobRun API requests used in job runs started using the job
928
1068
  * template.</p>
929
1069
  */
@@ -954,6 +1094,9 @@ export interface JobTemplateData {
954
1094
  */
955
1095
  jobTags?: Record<string, string>;
956
1096
  }
1097
+ /**
1098
+ * @public
1099
+ */
957
1100
  export interface StartJobRunRequest {
958
1101
  /**
959
1102
  * <p>The name of the job run.</p>
@@ -1000,6 +1143,9 @@ export interface StartJobRunRequest {
1000
1143
  */
1001
1144
  retryPolicyConfiguration?: RetryPolicyConfiguration;
1002
1145
  }
1146
+ /**
1147
+ * @public
1148
+ */
1003
1149
  export interface CreateJobTemplateRequest {
1004
1150
  /**
1005
1151
  * <p>The specified name of the job template.</p>
@@ -1022,12 +1168,18 @@ export interface CreateJobTemplateRequest {
1022
1168
  */
1023
1169
  kmsKeyArn?: string;
1024
1170
  }
1171
+ /**
1172
+ * @public
1173
+ */
1025
1174
  export interface DescribeJobRunResponse {
1026
1175
  /**
1027
1176
  * <p>The output displays information about a job run.</p>
1028
1177
  */
1029
1178
  jobRun?: JobRun;
1030
1179
  }
1180
+ /**
1181
+ * @public
1182
+ */
1031
1183
  export interface DescribeManagedEndpointResponse {
1032
1184
  /**
1033
1185
  * <p>This output displays information about a managed endpoint.</p>
@@ -1035,6 +1187,7 @@ export interface DescribeManagedEndpointResponse {
1035
1187
  endpoint?: Endpoint;
1036
1188
  }
1037
1189
  /**
1190
+ * @public
1038
1191
  * <p>This entity describes a job template. Job template stores values of StartJobRun API
1039
1192
  * request in a template and can be used to start a job run. Job template allows two use
1040
1193
  * cases: avoid repeating recurring StartJobRun API request values, enforcing certain values
@@ -1078,12 +1231,18 @@ export interface JobTemplate {
1078
1231
  */
1079
1232
  decryptionError?: string;
1080
1233
  }
1234
+ /**
1235
+ * @public
1236
+ */
1081
1237
  export interface DescribeJobTemplateResponse {
1082
1238
  /**
1083
1239
  * <p>This output displays information about the specified job template.</p>
1084
1240
  */
1085
1241
  jobTemplate?: JobTemplate;
1086
1242
  }
1243
+ /**
1244
+ * @public
1245
+ */
1087
1246
  export interface ListJobRunsResponse {
1088
1247
  /**
1089
1248
  * <p>This output lists information about the specified job runs.</p>
@@ -1094,6 +1253,9 @@ export interface ListJobRunsResponse {
1094
1253
  */
1095
1254
  nextToken?: string;
1096
1255
  }
1256
+ /**
1257
+ * @public
1258
+ */
1097
1259
  export interface ListManagedEndpointsResponse {
1098
1260
  /**
1099
1261
  * <p>The managed endpoints to be listed.</p>
@@ -1104,6 +1266,9 @@ export interface ListManagedEndpointsResponse {
1104
1266
  */
1105
1267
  nextToken?: string;
1106
1268
  }
1269
+ /**
1270
+ * @public
1271
+ */
1107
1272
  export interface ListJobTemplatesResponse {
1108
1273
  /**
1109
1274
  * <p>This output lists information about the specified job templates.</p>
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { EMRContainersClient } from "../EMRContainersClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface EMRContainersPaginationConfiguration extends PaginationConfiguration {
4
7
  client: EMRContainersClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand";
3
3
  import { EMRContainersPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListJobRuns(config: EMRContainersPaginationConfiguration, input: ListJobRunsCommandInput, ...additionalArguments: any): Paginator<ListJobRunsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput } from "../commands/ListJobTemplatesCommand";
3
3
  import { EMRContainersPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListJobTemplates(config: EMRContainersPaginationConfiguration, input: ListJobTemplatesCommandInput, ...additionalArguments: any): Paginator<ListJobTemplatesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput } from "../commands/ListManagedEndpointsCommand";
3
3
  import { EMRContainersPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListManagedEndpoints(config: EMRContainersPaginationConfiguration, input: ListManagedEndpointsCommandInput, ...additionalArguments: any): Paginator<ListManagedEndpointsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput } from "../commands/ListVirtualClustersCommand";
3
3
  import { EMRContainersPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListVirtualClusters(config: EMRContainersPaginationConfiguration, input: ListVirtualClustersCommandInput, ...additionalArguments: any): Paginator<ListVirtualClustersCommandOutput>;