@aws-sdk/client-emr-containers 3.378.0 → 3.382.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.
@@ -1,4 +1,7 @@
1
1
  import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
2
5
  export interface ClientInputEndpointParameters {
3
6
  region?: string | Provider<string>;
4
7
  useDualstackEndpoint?: boolean | Provider<boolean>;
@@ -28,6 +28,7 @@
28
28
  */
29
29
  export * from "./EMRContainersClient";
30
30
  export * from "./EMRContainers";
31
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
31
32
  export * from "./commands";
32
33
  export * from "./pagination";
33
34
  export * from "./models";
@@ -5,10 +5,12 @@ import { EMRContainersServiceException as __BaseException } from "./EMRContainer
5
5
  */
6
6
  export interface CancelJobRunRequest {
7
7
  /**
8
+ * @public
8
9
  * <p>The ID of the job run to cancel.</p>
9
10
  */
10
11
  id: string | undefined;
11
12
  /**
13
+ * @public
12
14
  * <p>The ID of the virtual cluster for which the job run will be canceled.</p>
13
15
  */
14
16
  virtualClusterId: string | undefined;
@@ -18,10 +20,12 @@ export interface CancelJobRunRequest {
18
20
  */
19
21
  export interface CancelJobRunResponse {
20
22
  /**
23
+ * @public
21
24
  * <p>The output contains the ID of the cancelled job run.</p>
22
25
  */
23
26
  id?: string;
24
27
  /**
28
+ * @public
25
29
  * <p>The output contains the virtual cluster ID for which the job run is cancelled.</p>
26
30
  */
27
31
  virtualClusterId?: string;
@@ -58,10 +62,12 @@ export declare class ValidationException extends __BaseException {
58
62
  */
59
63
  export interface ParametricCloudWatchMonitoringConfiguration {
60
64
  /**
65
+ * @public
61
66
  * <p> The name of the log group for log publishing.</p>
62
67
  */
63
68
  logGroupName?: string;
64
69
  /**
70
+ * @public
65
71
  * <p> The specified name prefix for log streams.</p>
66
72
  */
67
73
  logStreamNamePrefix?: string;
@@ -74,6 +80,7 @@ export interface ParametricCloudWatchMonitoringConfiguration {
74
80
  */
75
81
  export interface ParametricS3MonitoringConfiguration {
76
82
  /**
83
+ * @public
77
84
  * <p>Amazon S3 destination URI for log publishing.</p>
78
85
  */
79
86
  logUri?: string;
@@ -85,14 +92,17 @@ export interface ParametricS3MonitoringConfiguration {
85
92
  */
86
93
  export interface ParametricMonitoringConfiguration {
87
94
  /**
95
+ * @public
88
96
  * <p> Monitoring configurations for the persistent application UI.</p>
89
97
  */
90
98
  persistentAppUI?: string;
91
99
  /**
100
+ * @public
92
101
  * <p> Monitoring configurations for CloudWatch.</p>
93
102
  */
94
103
  cloudWatchMonitoringConfiguration?: ParametricCloudWatchMonitoringConfiguration;
95
104
  /**
105
+ * @public
96
106
  * <p> Amazon S3 configuration for monitoring log publishing.</p>
97
107
  */
98
108
  s3MonitoringConfiguration?: ParametricS3MonitoringConfiguration;
@@ -103,10 +113,12 @@ export interface ParametricMonitoringConfiguration {
103
113
  */
104
114
  export interface SparkSqlJobDriver {
105
115
  /**
116
+ * @public
106
117
  * <p>The SQL file to be executed.</p>
107
118
  */
108
119
  entryPoint?: string;
109
120
  /**
121
+ * @public
110
122
  * <p>The Spark parameters to be included in the Spark SQL command.</p>
111
123
  */
112
124
  sparkSqlParameters?: string;
@@ -117,14 +129,17 @@ export interface SparkSqlJobDriver {
117
129
  */
118
130
  export interface SparkSubmitJobDriver {
119
131
  /**
132
+ * @public
120
133
  * <p>The entry point of job application.</p>
121
134
  */
122
135
  entryPoint: string | undefined;
123
136
  /**
137
+ * @public
124
138
  * <p>The arguments for job application.</p>
125
139
  */
126
140
  entryPointArguments?: string[];
127
141
  /**
142
+ * @public
128
143
  * <p>The Spark submit parameters that are used for job runs.</p>
129
144
  */
130
145
  sparkSubmitParameters?: string;
@@ -136,10 +151,12 @@ export interface SparkSubmitJobDriver {
136
151
  */
137
152
  export interface JobDriver {
138
153
  /**
154
+ * @public
139
155
  * <p>The job driver parameters specified for spark submit.</p>
140
156
  */
141
157
  sparkSubmitJobDriver?: SparkSubmitJobDriver;
142
158
  /**
159
+ * @public
143
160
  * <p>The job driver for job type.</p>
144
161
  */
145
162
  sparkSqlJobDriver?: SparkSqlJobDriver;
@@ -162,10 +179,12 @@ export type TemplateParameterDataType = (typeof TemplateParameterDataType)[keyof
162
179
  */
163
180
  export interface TemplateParameterConfiguration {
164
181
  /**
182
+ * @public
165
183
  * <p>The type of the job template parameter. Allowed values are: ‘STRING’, ‘NUMBER’.</p>
166
184
  */
167
185
  type?: TemplateParameterDataType | string;
168
186
  /**
187
+ * @public
169
188
  * <p>The default value for the job template parameter.</p>
170
189
  */
171
190
  defaultValue?: string;
@@ -175,18 +194,22 @@ export interface TemplateParameterConfiguration {
175
194
  */
176
195
  export interface CreateJobTemplateResponse {
177
196
  /**
197
+ * @public
178
198
  * <p>This output display the created job template ID.</p>
179
199
  */
180
200
  id?: string;
181
201
  /**
202
+ * @public
182
203
  * <p>This output displays the name of the created job template.</p>
183
204
  */
184
205
  name?: string;
185
206
  /**
207
+ * @public
186
208
  * <p>This output display the ARN of the created job template.</p>
187
209
  */
188
210
  arn?: string;
189
211
  /**
212
+ * @public
190
213
  * <p>This output displays the date and time when the job template was created.</p>
191
214
  */
192
215
  createdAt?: Date;
@@ -210,10 +233,12 @@ export declare class ResourceNotFoundException extends __BaseException {
210
233
  */
211
234
  export interface CloudWatchMonitoringConfiguration {
212
235
  /**
236
+ * @public
213
237
  * <p>The name of the log group for log publishing.</p>
214
238
  */
215
239
  logGroupName: string | undefined;
216
240
  /**
241
+ * @public
217
242
  * <p>The specified name prefix for log streams.</p>
218
243
  */
219
244
  logStreamNamePrefix?: string;
@@ -224,10 +249,12 @@ export interface CloudWatchMonitoringConfiguration {
224
249
  */
225
250
  export interface ContainerLogRotationConfiguration {
226
251
  /**
252
+ * @public
227
253
  * <p>The file size at which to rotate logs. Minimum of 2KB, Maximum of 2GB.</p>
228
254
  */
229
255
  rotationSize: string | undefined;
230
256
  /**
257
+ * @public
231
258
  * <p>The number of files to keep in container after rotation.</p>
232
259
  */
233
260
  maxFilesToKeep: number | undefined;
@@ -251,6 +278,7 @@ export type PersistentAppUI = (typeof PersistentAppUI)[keyof typeof PersistentAp
251
278
  */
252
279
  export interface S3MonitoringConfiguration {
253
280
  /**
281
+ * @public
254
282
  * <p>Amazon S3 destination URI for log publishing.</p>
255
283
  */
256
284
  logUri: string | undefined;
@@ -261,18 +289,22 @@ export interface S3MonitoringConfiguration {
261
289
  */
262
290
  export interface MonitoringConfiguration {
263
291
  /**
292
+ * @public
264
293
  * <p>Monitoring configurations for the persistent application UI. </p>
265
294
  */
266
295
  persistentAppUI?: PersistentAppUI | string;
267
296
  /**
297
+ * @public
268
298
  * <p>Monitoring configurations for CloudWatch.</p>
269
299
  */
270
300
  cloudWatchMonitoringConfiguration?: CloudWatchMonitoringConfiguration;
271
301
  /**
302
+ * @public
272
303
  * <p>Amazon S3 configuration for monitoring log publishing.</p>
273
304
  */
274
305
  s3MonitoringConfiguration?: S3MonitoringConfiguration;
275
306
  /**
307
+ * @public
276
308
  * <p>Enable or disable container log rotation.</p>
277
309
  */
278
310
  containerLogRotationConfiguration?: ContainerLogRotationConfiguration;
@@ -282,18 +314,22 @@ export interface MonitoringConfiguration {
282
314
  */
283
315
  export interface CreateManagedEndpointResponse {
284
316
  /**
317
+ * @public
285
318
  * <p>The output contains the ID of the managed endpoint.</p>
286
319
  */
287
320
  id?: string;
288
321
  /**
322
+ * @public
289
323
  * <p>The output contains the name of the managed endpoint.</p>
290
324
  */
291
325
  name?: string;
292
326
  /**
327
+ * @public
293
328
  * <p>The output contains the ARN of the managed endpoint.</p>
294
329
  */
295
330
  arn?: string;
296
331
  /**
332
+ * @public
297
333
  * <p>The output contains the ID of the virtual cluster.</p>
298
334
  */
299
335
  virtualClusterId?: string;
@@ -304,6 +340,7 @@ export interface CreateManagedEndpointResponse {
304
340
  */
305
341
  export interface EksInfo {
306
342
  /**
343
+ * @public
307
344
  * <p>The namespaces of the Amazon EKS cluster.</p>
308
345
  */
309
346
  namespace?: string;
@@ -318,12 +355,16 @@ export type ContainerInfo = ContainerInfo.EksInfoMember | ContainerInfo.$Unknown
318
355
  */
319
356
  export declare namespace ContainerInfo {
320
357
  /**
358
+ * @public
321
359
  * <p>The information about the Amazon EKS cluster.</p>
322
360
  */
323
361
  interface EksInfoMember {
324
362
  eksInfo: EksInfo;
325
363
  $unknown?: never;
326
364
  }
365
+ /**
366
+ * @public
367
+ */
327
368
  interface $UnknownMember {
328
369
  eksInfo?: never;
329
370
  $unknown: [string, any];
@@ -351,15 +392,18 @@ export type ContainerProviderType = (typeof ContainerProviderType)[keyof typeof
351
392
  */
352
393
  export interface ContainerProvider {
353
394
  /**
395
+ * @public
354
396
  * <p>The type of the container provider. Amazon EKS is the only supported type as of
355
397
  * now.</p>
356
398
  */
357
399
  type: ContainerProviderType | string | undefined;
358
400
  /**
401
+ * @public
359
402
  * <p>The ID of the container cluster.</p>
360
403
  */
361
404
  id: string | undefined;
362
405
  /**
406
+ * @public
363
407
  * <p>The information about the container cluster.</p>
364
408
  */
365
409
  info?: ContainerInfo;
@@ -369,18 +413,22 @@ export interface ContainerProvider {
369
413
  */
370
414
  export interface CreateVirtualClusterRequest {
371
415
  /**
416
+ * @public
372
417
  * <p>The specified name of the virtual cluster.</p>
373
418
  */
374
419
  name: string | undefined;
375
420
  /**
421
+ * @public
376
422
  * <p>The container provider of the virtual cluster.</p>
377
423
  */
378
424
  containerProvider: ContainerProvider | undefined;
379
425
  /**
426
+ * @public
380
427
  * <p>The client token of the virtual cluster.</p>
381
428
  */
382
429
  clientToken?: string;
383
430
  /**
431
+ * @public
384
432
  * <p>The tags assigned to the virtual cluster.</p>
385
433
  */
386
434
  tags?: Record<string, string>;
@@ -390,14 +438,17 @@ export interface CreateVirtualClusterRequest {
390
438
  */
391
439
  export interface CreateVirtualClusterResponse {
392
440
  /**
441
+ * @public
393
442
  * <p>This output contains the virtual cluster ID.</p>
394
443
  */
395
444
  id?: string;
396
445
  /**
446
+ * @public
397
447
  * <p>This output contains the name of the virtual cluster.</p>
398
448
  */
399
449
  name?: string;
400
450
  /**
451
+ * @public
401
452
  * <p>This output contains the ARN of virtual cluster.</p>
402
453
  */
403
454
  arn?: string;
@@ -407,6 +458,7 @@ export interface CreateVirtualClusterResponse {
407
458
  */
408
459
  export interface DeleteJobTemplateRequest {
409
460
  /**
461
+ * @public
410
462
  * <p>The ID of the job template that will be deleted.</p>
411
463
  */
412
464
  id: string | undefined;
@@ -416,6 +468,7 @@ export interface DeleteJobTemplateRequest {
416
468
  */
417
469
  export interface DeleteJobTemplateResponse {
418
470
  /**
471
+ * @public
419
472
  * <p>This output contains the ID of the job template that was deleted.</p>
420
473
  */
421
474
  id?: string;
@@ -425,10 +478,12 @@ export interface DeleteJobTemplateResponse {
425
478
  */
426
479
  export interface DeleteManagedEndpointRequest {
427
480
  /**
481
+ * @public
428
482
  * <p>The ID of the managed endpoint.</p>
429
483
  */
430
484
  id: string | undefined;
431
485
  /**
486
+ * @public
432
487
  * <p>The ID of the endpoint's virtual cluster.</p>
433
488
  */
434
489
  virtualClusterId: string | undefined;
@@ -438,10 +493,12 @@ export interface DeleteManagedEndpointRequest {
438
493
  */
439
494
  export interface DeleteManagedEndpointResponse {
440
495
  /**
496
+ * @public
441
497
  * <p>The output displays the ID of the managed endpoint.</p>
442
498
  */
443
499
  id?: string;
444
500
  /**
501
+ * @public
445
502
  * <p>The output displays the ID of the endpoint's virtual cluster.</p>
446
503
  */
447
504
  virtualClusterId?: string;
@@ -451,6 +508,7 @@ export interface DeleteManagedEndpointResponse {
451
508
  */
452
509
  export interface DeleteVirtualClusterRequest {
453
510
  /**
511
+ * @public
454
512
  * <p>The ID of the virtual cluster that will be deleted.</p>
455
513
  */
456
514
  id: string | undefined;
@@ -460,6 +518,7 @@ export interface DeleteVirtualClusterRequest {
460
518
  */
461
519
  export interface DeleteVirtualClusterResponse {
462
520
  /**
521
+ * @public
463
522
  * <p>This output contains the ID of the virtual cluster that will be deleted. </p>
464
523
  */
465
524
  id?: string;
@@ -469,10 +528,12 @@ export interface DeleteVirtualClusterResponse {
469
528
  */
470
529
  export interface DescribeJobRunRequest {
471
530
  /**
531
+ * @public
472
532
  * <p>The ID of the job run request. </p>
473
533
  */
474
534
  id: string | undefined;
475
535
  /**
536
+ * @public
476
537
  * <p>The ID of the virtual cluster for which the job run is submitted.</p>
477
538
  */
478
539
  virtualClusterId: string | undefined;
@@ -497,6 +558,7 @@ export type FailureReason = (typeof FailureReason)[keyof typeof FailureReason];
497
558
  */
498
559
  export interface RetryPolicyConfiguration {
499
560
  /**
561
+ * @public
500
562
  * <p>The maximum number of attempts on the job's driver.</p>
501
563
  */
502
564
  maxAttempts: number | undefined;
@@ -507,6 +569,7 @@ export interface RetryPolicyConfiguration {
507
569
  */
508
570
  export interface RetryPolicyExecution {
509
571
  /**
572
+ * @public
510
573
  * <p>The current number of attempts made on the driver of the job.</p>
511
574
  */
512
575
  currentAttemptCount: number | undefined;
@@ -533,6 +596,7 @@ export type JobRunState = (typeof JobRunState)[keyof typeof JobRunState];
533
596
  */
534
597
  export interface DescribeJobTemplateRequest {
535
598
  /**
599
+ * @public
536
600
  * <p>The ID of the job template that will be described.</p>
537
601
  */
538
602
  id: string | undefined;
@@ -542,10 +606,12 @@ export interface DescribeJobTemplateRequest {
542
606
  */
543
607
  export interface DescribeManagedEndpointRequest {
544
608
  /**
609
+ * @public
545
610
  * <p>This output displays ID of the managed endpoint.</p>
546
611
  */
547
612
  id: string | undefined;
548
613
  /**
614
+ * @public
549
615
  * <p>The ID of the endpoint's virtual cluster.</p>
550
616
  */
551
617
  virtualClusterId: string | undefined;
@@ -556,10 +622,12 @@ export interface DescribeManagedEndpointRequest {
556
622
  */
557
623
  export interface Certificate {
558
624
  /**
625
+ * @public
559
626
  * <p>The ARN of the certificate generated for managed endpoint.</p>
560
627
  */
561
628
  certificateArn?: string;
562
629
  /**
630
+ * @public
563
631
  * <p>The base64 encoded PEM certificate data generated for managed endpoint.</p>
564
632
  */
565
633
  certificateData?: string;
@@ -584,6 +652,7 @@ export type EndpointState = (typeof EndpointState)[keyof typeof EndpointState];
584
652
  */
585
653
  export interface DescribeVirtualClusterRequest {
586
654
  /**
655
+ * @public
587
656
  * <p>The ID of the virtual cluster that will be described.</p>
588
657
  */
589
658
  id: string | undefined;
@@ -613,30 +682,37 @@ export type VirtualClusterState = (typeof VirtualClusterState)[keyof typeof Virt
613
682
  */
614
683
  export interface VirtualCluster {
615
684
  /**
685
+ * @public
616
686
  * <p>The ID of the virtual cluster.</p>
617
687
  */
618
688
  id?: string;
619
689
  /**
690
+ * @public
620
691
  * <p>The name of the virtual cluster.</p>
621
692
  */
622
693
  name?: string;
623
694
  /**
695
+ * @public
624
696
  * <p>The ARN of the virtual cluster.</p>
625
697
  */
626
698
  arn?: string;
627
699
  /**
700
+ * @public
628
701
  * <p>The state of the virtual cluster.</p>
629
702
  */
630
703
  state?: VirtualClusterState | string;
631
704
  /**
705
+ * @public
632
706
  * <p>The container provider of the virtual cluster.</p>
633
707
  */
634
708
  containerProvider?: ContainerProvider;
635
709
  /**
710
+ * @public
636
711
  * <p>The date and time when the virtual cluster is created.</p>
637
712
  */
638
713
  createdAt?: Date;
639
714
  /**
715
+ * @public
640
716
  * <p>The assigned tags of the virtual cluster.</p>
641
717
  */
642
718
  tags?: Record<string, string>;
@@ -646,6 +722,7 @@ export interface VirtualCluster {
646
722
  */
647
723
  export interface DescribeVirtualClusterResponse {
648
724
  /**
725
+ * @public
649
726
  * <p>This output displays information about the specified virtual cluster.</p>
650
727
  */
651
728
  virtualCluster?: VirtualCluster;
@@ -655,32 +732,39 @@ export interface DescribeVirtualClusterResponse {
655
732
  */
656
733
  export interface GetManagedEndpointSessionCredentialsRequest {
657
734
  /**
735
+ * @public
658
736
  * <p>The ARN of the managed endpoint for which the request is submitted. </p>
659
737
  */
660
738
  endpointIdentifier: string | undefined;
661
739
  /**
740
+ * @public
662
741
  * <p>The ARN of the Virtual Cluster which the Managed Endpoint belongs to. </p>
663
742
  */
664
743
  virtualClusterIdentifier: string | undefined;
665
744
  /**
745
+ * @public
666
746
  * <p>The IAM Execution Role ARN that will be used by the job run. </p>
667
747
  */
668
748
  executionRoleArn: string | undefined;
669
749
  /**
750
+ * @public
670
751
  * <p>Type of the token requested. Currently supported and default value of this field is
671
752
  * “TOKEN.”</p>
672
753
  */
673
754
  credentialType: string | undefined;
674
755
  /**
756
+ * @public
675
757
  * <p>Duration in seconds for which the session token is valid. The default duration is 15
676
758
  * minutes and the maximum is 12 hours.</p>
677
759
  */
678
760
  durationInSeconds?: number;
679
761
  /**
762
+ * @public
680
763
  * <p>String identifier used to separate sections of the execution logs uploaded to S3.</p>
681
764
  */
682
765
  logContext?: string;
683
766
  /**
767
+ * @public
684
768
  * <p>The client idempotency token of the job run request.</p>
685
769
  */
686
770
  clientToken?: string;
@@ -695,12 +779,16 @@ export type Credentials = Credentials.TokenMember | Credentials.$UnknownMember;
695
779
  */
696
780
  export declare namespace Credentials {
697
781
  /**
782
+ * @public
698
783
  * <p>The actual session token being returned.</p>
699
784
  */
700
785
  interface TokenMember {
701
786
  token: string;
702
787
  $unknown?: never;
703
788
  }
789
+ /**
790
+ * @public
791
+ */
704
792
  interface $UnknownMember {
705
793
  token?: never;
706
794
  $unknown: [string, any];
@@ -716,14 +804,17 @@ export declare namespace Credentials {
716
804
  */
717
805
  export interface GetManagedEndpointSessionCredentialsResponse {
718
806
  /**
807
+ * @public
719
808
  * <p>The identifier of the session token returned.</p>
720
809
  */
721
810
  id?: string;
722
811
  /**
812
+ * @public
723
813
  * <p>The structure containing the session credentials.</p>
724
814
  */
725
815
  credentials?: Credentials;
726
816
  /**
817
+ * @public
727
818
  * <p>The date and time when the session token will expire.</p>
728
819
  */
729
820
  expiresAt?: Date;
@@ -745,30 +836,37 @@ export declare class RequestThrottledException extends __BaseException {
745
836
  */
746
837
  export interface ListJobRunsRequest {
747
838
  /**
839
+ * @public
748
840
  * <p>The ID of the virtual cluster for which to list the job run. </p>
749
841
  */
750
842
  virtualClusterId: string | undefined;
751
843
  /**
844
+ * @public
752
845
  * <p>The date and time before which the job runs were submitted.</p>
753
846
  */
754
847
  createdBefore?: Date;
755
848
  /**
849
+ * @public
756
850
  * <p>The date and time after which the job runs were submitted.</p>
757
851
  */
758
852
  createdAfter?: Date;
759
853
  /**
854
+ * @public
760
855
  * <p>The name of the job run.</p>
761
856
  */
762
857
  name?: string;
763
858
  /**
859
+ * @public
764
860
  * <p>The states of the job run.</p>
765
861
  */
766
862
  states?: (JobRunState | string)[];
767
863
  /**
864
+ * @public
768
865
  * <p>The maximum number of job runs that can be listed.</p>
769
866
  */
770
867
  maxResults?: number;
771
868
  /**
869
+ * @public
772
870
  * <p>The token for the next set of job runs to return.</p>
773
871
  */
774
872
  nextToken?: string;
@@ -778,18 +876,22 @@ export interface ListJobRunsRequest {
778
876
  */
779
877
  export interface ListJobTemplatesRequest {
780
878
  /**
879
+ * @public
781
880
  * <p>The date and time after which the job templates were created.</p>
782
881
  */
783
882
  createdAfter?: Date;
784
883
  /**
884
+ * @public
785
885
  * <p> The date and time before which the job templates were created.</p>
786
886
  */
787
887
  createdBefore?: Date;
788
888
  /**
889
+ * @public
789
890
  * <p> The maximum number of job templates that can be listed.</p>
790
891
  */
791
892
  maxResults?: number;
792
893
  /**
894
+ * @public
793
895
  * <p> The token for the next set of job templates to return.</p>
794
896
  */
795
897
  nextToken?: string;
@@ -799,30 +901,37 @@ export interface ListJobTemplatesRequest {
799
901
  */
800
902
  export interface ListManagedEndpointsRequest {
801
903
  /**
904
+ * @public
802
905
  * <p>The ID of the virtual cluster.</p>
803
906
  */
804
907
  virtualClusterId: string | undefined;
805
908
  /**
909
+ * @public
806
910
  * <p>The date and time before which the endpoints are created.</p>
807
911
  */
808
912
  createdBefore?: Date;
809
913
  /**
914
+ * @public
810
915
  * <p> The date and time after which the endpoints are created.</p>
811
916
  */
812
917
  createdAfter?: Date;
813
918
  /**
919
+ * @public
814
920
  * <p>The types of the managed endpoints.</p>
815
921
  */
816
922
  types?: string[];
817
923
  /**
924
+ * @public
818
925
  * <p>The states of the managed endpoints.</p>
819
926
  */
820
927
  states?: (EndpointState | string)[];
821
928
  /**
929
+ * @public
822
930
  * <p>The maximum number of managed endpoints that can be listed.</p>
823
931
  */
824
932
  maxResults?: number;
825
933
  /**
934
+ * @public
826
935
  * <p> The token for the next set of managed endpoints to return. </p>
827
936
  */
828
937
  nextToken?: string;
@@ -832,6 +941,7 @@ export interface ListManagedEndpointsRequest {
832
941
  */
833
942
  export interface ListTagsForResourceRequest {
834
943
  /**
944
+ * @public
835
945
  * <p>The ARN of tagged resources.</p>
836
946
  */
837
947
  resourceArn: string | undefined;
@@ -841,6 +951,7 @@ export interface ListTagsForResourceRequest {
841
951
  */
842
952
  export interface ListTagsForResourceResponse {
843
953
  /**
954
+ * @public
844
955
  * <p>The tags assigned to resources.</p>
845
956
  */
846
957
  tags?: Record<string, string>;
@@ -850,31 +961,38 @@ export interface ListTagsForResourceResponse {
850
961
  */
851
962
  export interface ListVirtualClustersRequest {
852
963
  /**
964
+ * @public
853
965
  * <p>The container provider ID of the virtual cluster.</p>
854
966
  */
855
967
  containerProviderId?: string;
856
968
  /**
969
+ * @public
857
970
  * <p>The container provider type of the virtual cluster. Amazon EKS is the only
858
971
  * supported type as of now.</p>
859
972
  */
860
973
  containerProviderType?: ContainerProviderType | string;
861
974
  /**
975
+ * @public
862
976
  * <p>The date and time after which the virtual clusters are created.</p>
863
977
  */
864
978
  createdAfter?: Date;
865
979
  /**
980
+ * @public
866
981
  * <p>The date and time before which the virtual clusters are created.</p>
867
982
  */
868
983
  createdBefore?: Date;
869
984
  /**
985
+ * @public
870
986
  * <p>The states of the requested virtual clusters.</p>
871
987
  */
872
988
  states?: (VirtualClusterState | string)[];
873
989
  /**
990
+ * @public
874
991
  * <p>The maximum number of virtual clusters that can be listed.</p>
875
992
  */
876
993
  maxResults?: number;
877
994
  /**
995
+ * @public
878
996
  * <p>The token for the next set of virtual clusters to return. </p>
879
997
  */
880
998
  nextToken?: string;
@@ -884,10 +1002,12 @@ export interface ListVirtualClustersRequest {
884
1002
  */
885
1003
  export interface ListVirtualClustersResponse {
886
1004
  /**
1005
+ * @public
887
1006
  * <p>This output lists the specified virtual clusters.</p>
888
1007
  */
889
1008
  virtualClusters?: VirtualCluster[];
890
1009
  /**
1010
+ * @public
891
1011
  * <p>This output displays the token for the next set of virtual clusters.</p>
892
1012
  */
893
1013
  nextToken?: string;
@@ -897,18 +1017,22 @@ export interface ListVirtualClustersResponse {
897
1017
  */
898
1018
  export interface StartJobRunResponse {
899
1019
  /**
1020
+ * @public
900
1021
  * <p>This output displays the started job run ID.</p>
901
1022
  */
902
1023
  id?: string;
903
1024
  /**
1025
+ * @public
904
1026
  * <p>This output displays the name of the started job run.</p>
905
1027
  */
906
1028
  name?: string;
907
1029
  /**
1030
+ * @public
908
1031
  * <p>This output lists the ARN of job run.</p>
909
1032
  */
910
1033
  arn?: string;
911
1034
  /**
1035
+ * @public
912
1036
  * <p>This output displays the virtual cluster ID for which the job run was submitted.</p>
913
1037
  */
914
1038
  virtualClusterId?: string;
@@ -918,10 +1042,12 @@ export interface StartJobRunResponse {
918
1042
  */
919
1043
  export interface TagResourceRequest {
920
1044
  /**
1045
+ * @public
921
1046
  * <p>The ARN of resources.</p>
922
1047
  */
923
1048
  resourceArn: string | undefined;
924
1049
  /**
1050
+ * @public
925
1051
  * <p>The tags assigned to resources.</p>
926
1052
  */
927
1053
  tags: Record<string, string> | undefined;
@@ -936,10 +1062,12 @@ export interface TagResourceResponse {
936
1062
  */
937
1063
  export interface UntagResourceRequest {
938
1064
  /**
1065
+ * @public
939
1066
  * <p>The ARN of resources.</p>
940
1067
  */
941
1068
  resourceArn: string | undefined;
942
1069
  /**
1070
+ * @public
943
1071
  * <p>The tag keys of the resources.</p>
944
1072
  */
945
1073
  tagKeys: string[] | undefined;
@@ -959,14 +1087,17 @@ export interface UntagResourceResponse {
959
1087
  */
960
1088
  export interface Configuration {
961
1089
  /**
1090
+ * @public
962
1091
  * <p>The classification within a configuration.</p>
963
1092
  */
964
1093
  classification: string | undefined;
965
1094
  /**
1095
+ * @public
966
1096
  * <p>A set of properties specified within a configuration classification.</p>
967
1097
  */
968
1098
  properties?: Record<string, string>;
969
1099
  /**
1100
+ * @public
970
1101
  * <p>A list of additional configurations to apply within a configuration object.</p>
971
1102
  */
972
1103
  configurations?: Configuration[];
@@ -977,10 +1108,12 @@ export interface Configuration {
977
1108
  */
978
1109
  export interface ConfigurationOverrides {
979
1110
  /**
1111
+ * @public
980
1112
  * <p>The configurations for the application running by the job run. </p>
981
1113
  */
982
1114
  applicationConfiguration?: Configuration[];
983
1115
  /**
1116
+ * @public
984
1117
  * <p>The configurations for monitoring.</p>
985
1118
  */
986
1119
  monitoringConfiguration?: MonitoringConfiguration;
@@ -992,10 +1125,12 @@ export interface ConfigurationOverrides {
992
1125
  */
993
1126
  export interface ParametricConfigurationOverrides {
994
1127
  /**
1128
+ * @public
995
1129
  * <p> The configurations for the application running by the job run.</p>
996
1130
  */
997
1131
  applicationConfiguration?: Configuration[];
998
1132
  /**
1133
+ * @public
999
1134
  * <p> The configurations for monitoring. </p>
1000
1135
  */
1001
1136
  monitoringConfiguration?: ParametricMonitoringConfiguration;
@@ -1005,26 +1140,32 @@ export interface ParametricConfigurationOverrides {
1005
1140
  */
1006
1141
  export interface CreateManagedEndpointRequest {
1007
1142
  /**
1143
+ * @public
1008
1144
  * <p>The name of the managed endpoint.</p>
1009
1145
  */
1010
1146
  name: string | undefined;
1011
1147
  /**
1148
+ * @public
1012
1149
  * <p>The ID of the virtual cluster for which a managed endpoint is created.</p>
1013
1150
  */
1014
1151
  virtualClusterId: string | undefined;
1015
1152
  /**
1153
+ * @public
1016
1154
  * <p>The type of the managed endpoint.</p>
1017
1155
  */
1018
1156
  type: string | undefined;
1019
1157
  /**
1158
+ * @public
1020
1159
  * <p>The Amazon EMR release version.</p>
1021
1160
  */
1022
1161
  releaseLabel: string | undefined;
1023
1162
  /**
1163
+ * @public
1024
1164
  * <p>The ARN of the execution role.</p>
1025
1165
  */
1026
1166
  executionRoleArn: string | undefined;
1027
1167
  /**
1168
+ * @public
1028
1169
  * @deprecated
1029
1170
  *
1030
1171
  * <p>The certificate ARN provided by users for the managed endpoint. This field is under
@@ -1032,14 +1173,17 @@ export interface CreateManagedEndpointRequest {
1032
1173
  */
1033
1174
  certificateArn?: string;
1034
1175
  /**
1176
+ * @public
1035
1177
  * <p>The configuration settings that will be used to override existing configurations.</p>
1036
1178
  */
1037
1179
  configurationOverrides?: ConfigurationOverrides;
1038
1180
  /**
1181
+ * @public
1039
1182
  * <p>The client idempotency token for this create call.</p>
1040
1183
  */
1041
1184
  clientToken?: string;
1042
1185
  /**
1186
+ * @public
1043
1187
  * <p>The tags of the managed endpoint. </p>
1044
1188
  */
1045
1189
  tags?: Record<string, string>;
@@ -1050,38 +1194,47 @@ export interface CreateManagedEndpointRequest {
1050
1194
  */
1051
1195
  export interface Endpoint {
1052
1196
  /**
1197
+ * @public
1053
1198
  * <p>The ID of the endpoint.</p>
1054
1199
  */
1055
1200
  id?: string;
1056
1201
  /**
1202
+ * @public
1057
1203
  * <p>The name of the endpoint.</p>
1058
1204
  */
1059
1205
  name?: string;
1060
1206
  /**
1207
+ * @public
1061
1208
  * <p>The ARN of the endpoint.</p>
1062
1209
  */
1063
1210
  arn?: string;
1064
1211
  /**
1212
+ * @public
1065
1213
  * <p>The ID of the endpoint's virtual cluster.</p>
1066
1214
  */
1067
1215
  virtualClusterId?: string;
1068
1216
  /**
1217
+ * @public
1069
1218
  * <p>The type of the endpoint.</p>
1070
1219
  */
1071
1220
  type?: string;
1072
1221
  /**
1222
+ * @public
1073
1223
  * <p>The state of the endpoint.</p>
1074
1224
  */
1075
1225
  state?: EndpointState | string;
1076
1226
  /**
1227
+ * @public
1077
1228
  * <p>The EMR release version to be used for the endpoint.</p>
1078
1229
  */
1079
1230
  releaseLabel?: string;
1080
1231
  /**
1232
+ * @public
1081
1233
  * <p>The execution role ARN of the endpoint.</p>
1082
1234
  */
1083
1235
  executionRoleArn?: string;
1084
1236
  /**
1237
+ * @public
1085
1238
  * @deprecated
1086
1239
  *
1087
1240
  * <p>The certificate ARN of the endpoint. This field is under deprecation and will be removed
@@ -1089,40 +1242,49 @@ export interface Endpoint {
1089
1242
  */
1090
1243
  certificateArn?: string;
1091
1244
  /**
1245
+ * @public
1092
1246
  * <p>The certificate generated by emr control plane on customer behalf to secure the managed
1093
1247
  * endpoint.</p>
1094
1248
  */
1095
1249
  certificateAuthority?: Certificate;
1096
1250
  /**
1251
+ * @public
1097
1252
  * <p>The configuration settings that are used to override existing configurations for
1098
1253
  * endpoints.</p>
1099
1254
  */
1100
1255
  configurationOverrides?: ConfigurationOverrides;
1101
1256
  /**
1257
+ * @public
1102
1258
  * <p>The server URL of the endpoint.</p>
1103
1259
  */
1104
1260
  serverUrl?: string;
1105
1261
  /**
1262
+ * @public
1106
1263
  * <p>The date and time when the endpoint was created.</p>
1107
1264
  */
1108
1265
  createdAt?: Date;
1109
1266
  /**
1267
+ * @public
1110
1268
  * <p>The security group configuration of the endpoint. </p>
1111
1269
  */
1112
1270
  securityGroup?: string;
1113
1271
  /**
1272
+ * @public
1114
1273
  * <p>The subnet IDs of the endpoint. </p>
1115
1274
  */
1116
1275
  subnetIds?: string[];
1117
1276
  /**
1277
+ * @public
1118
1278
  * <p> Additional details of the endpoint state. </p>
1119
1279
  */
1120
1280
  stateDetails?: string;
1121
1281
  /**
1282
+ * @public
1122
1283
  * <p> The reasons why the endpoint has failed. </p>
1123
1284
  */
1124
1285
  failureReason?: FailureReason | string;
1125
1286
  /**
1287
+ * @public
1126
1288
  * <p>The tags of the endpoint. </p>
1127
1289
  */
1128
1290
  tags?: Record<string, string>;
@@ -1134,74 +1296,92 @@ export interface Endpoint {
1134
1296
  */
1135
1297
  export interface JobRun {
1136
1298
  /**
1299
+ * @public
1137
1300
  * <p>The ID of the job run.</p>
1138
1301
  */
1139
1302
  id?: string;
1140
1303
  /**
1304
+ * @public
1141
1305
  * <p>The name of the job run.</p>
1142
1306
  */
1143
1307
  name?: string;
1144
1308
  /**
1309
+ * @public
1145
1310
  * <p>The ID of the job run's virtual cluster.</p>
1146
1311
  */
1147
1312
  virtualClusterId?: string;
1148
1313
  /**
1314
+ * @public
1149
1315
  * <p>The ARN of job run.</p>
1150
1316
  */
1151
1317
  arn?: string;
1152
1318
  /**
1319
+ * @public
1153
1320
  * <p>The state of the job run. </p>
1154
1321
  */
1155
1322
  state?: JobRunState | string;
1156
1323
  /**
1324
+ * @public
1157
1325
  * <p>The client token used to start a job run.</p>
1158
1326
  */
1159
1327
  clientToken?: string;
1160
1328
  /**
1329
+ * @public
1161
1330
  * <p>The execution role ARN of the job run.</p>
1162
1331
  */
1163
1332
  executionRoleArn?: string;
1164
1333
  /**
1334
+ * @public
1165
1335
  * <p>The release version of Amazon EMR.</p>
1166
1336
  */
1167
1337
  releaseLabel?: string;
1168
1338
  /**
1339
+ * @public
1169
1340
  * <p>The configuration settings that are used to override default configuration.</p>
1170
1341
  */
1171
1342
  configurationOverrides?: ConfigurationOverrides;
1172
1343
  /**
1344
+ * @public
1173
1345
  * <p>Parameters of job driver for the job run.</p>
1174
1346
  */
1175
1347
  jobDriver?: JobDriver;
1176
1348
  /**
1349
+ * @public
1177
1350
  * <p>The date and time when the job run was created.</p>
1178
1351
  */
1179
1352
  createdAt?: Date;
1180
1353
  /**
1354
+ * @public
1181
1355
  * <p>The user who created the job run.</p>
1182
1356
  */
1183
1357
  createdBy?: string;
1184
1358
  /**
1359
+ * @public
1185
1360
  * <p>The date and time when the job run has finished.</p>
1186
1361
  */
1187
1362
  finishedAt?: Date;
1188
1363
  /**
1364
+ * @public
1189
1365
  * <p>Additional details of the job run state.</p>
1190
1366
  */
1191
1367
  stateDetails?: string;
1192
1368
  /**
1369
+ * @public
1193
1370
  * <p>The reasons why the job run has failed.</p>
1194
1371
  */
1195
1372
  failureReason?: FailureReason | string;
1196
1373
  /**
1374
+ * @public
1197
1375
  * <p>The assigned tags of the job run.</p>
1198
1376
  */
1199
1377
  tags?: Record<string, string>;
1200
1378
  /**
1379
+ * @public
1201
1380
  * <p>The configuration of the retry policy that the job runs on.</p>
1202
1381
  */
1203
1382
  retryPolicyConfiguration?: RetryPolicyConfiguration;
1204
1383
  /**
1384
+ * @public
1205
1385
  * <p>The current status of the retry policy executed on the job.</p>
1206
1386
  */
1207
1387
  retryPolicyExecution?: RetryPolicyExecution;
@@ -1213,27 +1393,33 @@ export interface JobRun {
1213
1393
  */
1214
1394
  export interface JobTemplateData {
1215
1395
  /**
1396
+ * @public
1216
1397
  * <p>The execution role ARN of the job run.</p>
1217
1398
  */
1218
1399
  executionRoleArn: string | undefined;
1219
1400
  /**
1401
+ * @public
1220
1402
  * <p> The release version of Amazon EMR.</p>
1221
1403
  */
1222
1404
  releaseLabel: string | undefined;
1223
1405
  /**
1406
+ * @public
1224
1407
  * <p> The configuration settings that are used to override defaults configuration.</p>
1225
1408
  */
1226
1409
  configurationOverrides?: ParametricConfigurationOverrides;
1227
1410
  /**
1411
+ * @public
1228
1412
  * <p>Specify the driver that the job runs on. Exactly one of the two available job drivers is
1229
1413
  * required, either sparkSqlJobDriver or sparkSubmitJobDriver.</p>
1230
1414
  */
1231
1415
  jobDriver: JobDriver | undefined;
1232
1416
  /**
1417
+ * @public
1233
1418
  * <p>The configuration of parameters existing in the job template.</p>
1234
1419
  */
1235
1420
  parameterConfiguration?: Record<string, TemplateParameterConfiguration>;
1236
1421
  /**
1422
+ * @public
1237
1423
  * <p>The tags assigned to jobs started using the job template.</p>
1238
1424
  */
1239
1425
  jobTags?: Record<string, string>;
@@ -1243,46 +1429,57 @@ export interface JobTemplateData {
1243
1429
  */
1244
1430
  export interface StartJobRunRequest {
1245
1431
  /**
1432
+ * @public
1246
1433
  * <p>The name of the job run.</p>
1247
1434
  */
1248
1435
  name?: string;
1249
1436
  /**
1437
+ * @public
1250
1438
  * <p>The virtual cluster ID for which the job run request is submitted.</p>
1251
1439
  */
1252
1440
  virtualClusterId: string | undefined;
1253
1441
  /**
1442
+ * @public
1254
1443
  * <p>The client idempotency token of the job run request. </p>
1255
1444
  */
1256
1445
  clientToken?: string;
1257
1446
  /**
1447
+ * @public
1258
1448
  * <p>The execution role ARN for the job run.</p>
1259
1449
  */
1260
1450
  executionRoleArn?: string;
1261
1451
  /**
1452
+ * @public
1262
1453
  * <p>The Amazon EMR release version to use for the job run.</p>
1263
1454
  */
1264
1455
  releaseLabel?: string;
1265
1456
  /**
1457
+ * @public
1266
1458
  * <p>The job driver for the job run.</p>
1267
1459
  */
1268
1460
  jobDriver?: JobDriver;
1269
1461
  /**
1462
+ * @public
1270
1463
  * <p>The configuration overrides for the job run.</p>
1271
1464
  */
1272
1465
  configurationOverrides?: ConfigurationOverrides;
1273
1466
  /**
1467
+ * @public
1274
1468
  * <p>The tags assigned to job runs.</p>
1275
1469
  */
1276
1470
  tags?: Record<string, string>;
1277
1471
  /**
1472
+ * @public
1278
1473
  * <p>The job template ID to be used to start the job run.</p>
1279
1474
  */
1280
1475
  jobTemplateId?: string;
1281
1476
  /**
1477
+ * @public
1282
1478
  * <p>The values of job template parameters to start a job run.</p>
1283
1479
  */
1284
1480
  jobTemplateParameters?: Record<string, string>;
1285
1481
  /**
1482
+ * @public
1286
1483
  * <p>The retry policy configuration for the job run.</p>
1287
1484
  */
1288
1485
  retryPolicyConfiguration?: RetryPolicyConfiguration;
@@ -1292,22 +1489,27 @@ export interface StartJobRunRequest {
1292
1489
  */
1293
1490
  export interface CreateJobTemplateRequest {
1294
1491
  /**
1492
+ * @public
1295
1493
  * <p>The specified name of the job template.</p>
1296
1494
  */
1297
1495
  name: string | undefined;
1298
1496
  /**
1497
+ * @public
1299
1498
  * <p>The client token of the job template.</p>
1300
1499
  */
1301
1500
  clientToken?: string;
1302
1501
  /**
1502
+ * @public
1303
1503
  * <p>The job template data which holds values of StartJobRun API request.</p>
1304
1504
  */
1305
1505
  jobTemplateData: JobTemplateData | undefined;
1306
1506
  /**
1507
+ * @public
1307
1508
  * <p>The tags that are associated with the job template.</p>
1308
1509
  */
1309
1510
  tags?: Record<string, string>;
1310
1511
  /**
1512
+ * @public
1311
1513
  * <p>The KMS key ARN used to encrypt the job template.</p>
1312
1514
  */
1313
1515
  kmsKeyArn?: string;
@@ -1317,6 +1519,7 @@ export interface CreateJobTemplateRequest {
1317
1519
  */
1318
1520
  export interface DescribeJobRunResponse {
1319
1521
  /**
1522
+ * @public
1320
1523
  * <p>The output displays information about a job run.</p>
1321
1524
  */
1322
1525
  jobRun?: JobRun;
@@ -1326,6 +1529,7 @@ export interface DescribeJobRunResponse {
1326
1529
  */
1327
1530
  export interface DescribeManagedEndpointResponse {
1328
1531
  /**
1532
+ * @public
1329
1533
  * <p>This output displays information about a managed endpoint.</p>
1330
1534
  */
1331
1535
  endpoint?: Endpoint;
@@ -1339,38 +1543,47 @@ export interface DescribeManagedEndpointResponse {
1339
1543
  */
1340
1544
  export interface JobTemplate {
1341
1545
  /**
1546
+ * @public
1342
1547
  * <p>The name of the job template.</p>
1343
1548
  */
1344
1549
  name?: string;
1345
1550
  /**
1551
+ * @public
1346
1552
  * <p>The ID of the job template.</p>
1347
1553
  */
1348
1554
  id?: string;
1349
1555
  /**
1556
+ * @public
1350
1557
  * <p>The ARN of the job template.</p>
1351
1558
  */
1352
1559
  arn?: string;
1353
1560
  /**
1561
+ * @public
1354
1562
  * <p> The date and time when the job template was created.</p>
1355
1563
  */
1356
1564
  createdAt?: Date;
1357
1565
  /**
1566
+ * @public
1358
1567
  * <p> The user who created the job template.</p>
1359
1568
  */
1360
1569
  createdBy?: string;
1361
1570
  /**
1571
+ * @public
1362
1572
  * <p>The tags assigned to the job template.</p>
1363
1573
  */
1364
1574
  tags?: Record<string, string>;
1365
1575
  /**
1576
+ * @public
1366
1577
  * <p>The job template data which holds values of StartJobRun API request.</p>
1367
1578
  */
1368
1579
  jobTemplateData: JobTemplateData | undefined;
1369
1580
  /**
1581
+ * @public
1370
1582
  * <p> The KMS key ARN used to encrypt the job template.</p>
1371
1583
  */
1372
1584
  kmsKeyArn?: string;
1373
1585
  /**
1586
+ * @public
1374
1587
  * <p>The error message in case the decryption of job template fails.</p>
1375
1588
  */
1376
1589
  decryptionError?: string;
@@ -1380,6 +1593,7 @@ export interface JobTemplate {
1380
1593
  */
1381
1594
  export interface DescribeJobTemplateResponse {
1382
1595
  /**
1596
+ * @public
1383
1597
  * <p>This output displays information about the specified job template.</p>
1384
1598
  */
1385
1599
  jobTemplate?: JobTemplate;
@@ -1389,10 +1603,12 @@ export interface DescribeJobTemplateResponse {
1389
1603
  */
1390
1604
  export interface ListJobRunsResponse {
1391
1605
  /**
1606
+ * @public
1392
1607
  * <p>This output lists information about the specified job runs.</p>
1393
1608
  */
1394
1609
  jobRuns?: JobRun[];
1395
1610
  /**
1611
+ * @public
1396
1612
  * <p>This output displays the token for the next set of job runs.</p>
1397
1613
  */
1398
1614
  nextToken?: string;
@@ -1402,10 +1618,12 @@ export interface ListJobRunsResponse {
1402
1618
  */
1403
1619
  export interface ListManagedEndpointsResponse {
1404
1620
  /**
1621
+ * @public
1405
1622
  * <p>The managed endpoints to be listed.</p>
1406
1623
  */
1407
1624
  endpoints?: Endpoint[];
1408
1625
  /**
1626
+ * @public
1409
1627
  * <p> The token for the next set of endpoints to return. </p>
1410
1628
  */
1411
1629
  nextToken?: string;
@@ -1415,10 +1633,12 @@ export interface ListManagedEndpointsResponse {
1415
1633
  */
1416
1634
  export interface ListJobTemplatesResponse {
1417
1635
  /**
1636
+ * @public
1418
1637
  * <p>This output lists information about the specified job templates.</p>
1419
1638
  */
1420
1639
  templates?: JobTemplate[];
1421
1640
  /**
1641
+ * @public
1422
1642
  * <p> This output displays the token for the next set of job templates.</p>
1423
1643
  */
1424
1644
  nextToken?: string;
@@ -1,5 +1,6 @@
1
1
  export * from "./EMRContainersClient";
2
2
  export * from "./EMRContainers";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export * from "./commands";
4
5
  export * from "./pagination";
5
6
  export * from "./models";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-emr-containers",
3
3
  "description": "AWS SDK for JavaScript Emr Containers Client for Node.js, Browser and React Native",
4
- "version": "3.378.0",
4
+ "version": "3.382.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.378.0",
25
- "@aws-sdk/credential-provider-node": "3.378.0",
26
- "@aws-sdk/middleware-host-header": "3.378.0",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
+ "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
- "@aws-sdk/middleware-signing": "3.378.0",
30
- "@aws-sdk/middleware-user-agent": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",