@aws-sdk/client-emr-containers 3.687.0 → 3.691.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.
@@ -21,19 +21,19 @@ export interface TLSCertificateConfiguration {
21
21
  * <code>Custom</code>.</p>
22
22
  * @public
23
23
  */
24
- certificateProviderType?: CertificateProviderType;
24
+ certificateProviderType?: CertificateProviderType | undefined;
25
25
  /**
26
26
  * <p>Secrets Manager ARN that contains the public TLS certificate contents, used for
27
27
  * communication between the user job and the system job.</p>
28
28
  * @public
29
29
  */
30
- publicCertificateSecretArn?: string;
30
+ publicCertificateSecretArn?: string | undefined;
31
31
  /**
32
32
  * <p>Secrets Manager ARN that contains the private TLS certificate contents, used for
33
33
  * communication between the user job and the system job.</p>
34
34
  * @public
35
35
  */
36
- privateCertificateSecretArn?: string;
36
+ privateCertificateSecretArn?: string | undefined;
37
37
  }
38
38
  /**
39
39
  * <p>Configurations related to in-transit encryption for the security configuration.</p>
@@ -44,7 +44,7 @@ export interface InTransitEncryptionConfiguration {
44
44
  * <p>TLS certificate-related configuration input for the security configuration.</p>
45
45
  * @public
46
46
  */
47
- tlsCertificateConfiguration?: TLSCertificateConfiguration;
47
+ tlsCertificateConfiguration?: TLSCertificateConfiguration | undefined;
48
48
  }
49
49
  /**
50
50
  * <p>Configurations related to encryption for the security configuration.</p>
@@ -55,7 +55,7 @@ export interface EncryptionConfiguration {
55
55
  * <p>In-transit encryption-related input for the security configuration.</p>
56
56
  * @public
57
57
  */
58
- inTransitEncryptionConfiguration?: InTransitEncryptionConfiguration;
58
+ inTransitEncryptionConfiguration?: InTransitEncryptionConfiguration | undefined;
59
59
  }
60
60
  /**
61
61
  * <p>Namespace inputs for the system job.</p>
@@ -66,12 +66,12 @@ export interface SecureNamespaceInfo {
66
66
  * <p>The ID of the Amazon EKS cluster where Amazon EMR on EKS jobs run.</p>
67
67
  * @public
68
68
  */
69
- clusterId?: string;
69
+ clusterId?: string | undefined;
70
70
  /**
71
71
  * <p>The namespace of the Amazon EKS cluster where the system jobs run.</p>
72
72
  * @public
73
73
  */
74
- namespace?: string;
74
+ namespace?: string | undefined;
75
75
  }
76
76
  /**
77
77
  * <p>Lake Formation related configuration inputs for the security
@@ -83,19 +83,19 @@ export interface LakeFormationConfiguration {
83
83
  * <p>The session tag to authorize Amazon EMR on EKS for API calls to Lake Formation.</p>
84
84
  * @public
85
85
  */
86
- authorizedSessionTagValue?: string;
86
+ authorizedSessionTagValue?: string | undefined;
87
87
  /**
88
88
  * <p>The namespace input of the system job.</p>
89
89
  * @public
90
90
  */
91
- secureNamespaceInfo?: SecureNamespaceInfo;
91
+ secureNamespaceInfo?: SecureNamespaceInfo | undefined;
92
92
  /**
93
93
  * <p>The query engine IAM role ARN that is tied to the secure Spark job. The
94
94
  * <code>QueryEngine</code> role assumes the <code>JobExecutionRole</code> to execute all
95
95
  * the Lake Formation calls.</p>
96
96
  * @public
97
97
  */
98
- queryEngineRoleArn?: string;
98
+ queryEngineRoleArn?: string | undefined;
99
99
  }
100
100
  /**
101
101
  * <p>Authorization-related configuration inputs for the security configuration.</p>
@@ -107,12 +107,12 @@ export interface AuthorizationConfiguration {
107
107
  * configuration.</p>
108
108
  * @public
109
109
  */
110
- lakeFormationConfiguration?: LakeFormationConfiguration;
110
+ lakeFormationConfiguration?: LakeFormationConfiguration | undefined;
111
111
  /**
112
112
  * <p>Encryption-related configuration input for the security configuration.</p>
113
113
  * @public
114
114
  */
115
- encryptionConfiguration?: EncryptionConfiguration;
115
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
116
116
  }
117
117
  /**
118
118
  * @public
@@ -137,12 +137,12 @@ export interface CancelJobRunResponse {
137
137
  * <p>The output contains the ID of the cancelled job run.</p>
138
138
  * @public
139
139
  */
140
- id?: string;
140
+ id?: string | undefined;
141
141
  /**
142
142
  * <p>The output contains the virtual cluster ID for which the job run is cancelled.</p>
143
143
  * @public
144
144
  */
145
- virtualClusterId?: string;
145
+ virtualClusterId?: string | undefined;
146
146
  }
147
147
  /**
148
148
  * <p>This is an internal server exception.</p>
@@ -179,12 +179,12 @@ export interface ParametricCloudWatchMonitoringConfiguration {
179
179
  * <p> The name of the log group for log publishing.</p>
180
180
  * @public
181
181
  */
182
- logGroupName?: string;
182
+ logGroupName?: string | undefined;
183
183
  /**
184
184
  * <p> The specified name prefix for log streams.</p>
185
185
  * @public
186
186
  */
187
- logStreamNamePrefix?: string;
187
+ logStreamNamePrefix?: string | undefined;
188
188
  }
189
189
  /**
190
190
  * <p> Amazon S3 configuration for monitoring log publishing. You can configure your jobs to
@@ -197,7 +197,7 @@ export interface ParametricS3MonitoringConfiguration {
197
197
  * <p>Amazon S3 destination URI for log publishing.</p>
198
198
  * @public
199
199
  */
200
- logUri?: string;
200
+ logUri?: string | undefined;
201
201
  }
202
202
  /**
203
203
  * <p> Configuration setting for monitoring. This data type allows job template parameters to
@@ -209,17 +209,17 @@ export interface ParametricMonitoringConfiguration {
209
209
  * <p> Monitoring configurations for the persistent application UI.</p>
210
210
  * @public
211
211
  */
212
- persistentAppUI?: string;
212
+ persistentAppUI?: string | undefined;
213
213
  /**
214
214
  * <p> Monitoring configurations for CloudWatch.</p>
215
215
  * @public
216
216
  */
217
- cloudWatchMonitoringConfiguration?: ParametricCloudWatchMonitoringConfiguration;
217
+ cloudWatchMonitoringConfiguration?: ParametricCloudWatchMonitoringConfiguration | undefined;
218
218
  /**
219
219
  * <p> Amazon S3 configuration for monitoring log publishing.</p>
220
220
  * @public
221
221
  */
222
- s3MonitoringConfiguration?: ParametricS3MonitoringConfiguration;
222
+ s3MonitoringConfiguration?: ParametricS3MonitoringConfiguration | undefined;
223
223
  }
224
224
  /**
225
225
  * <p>The job driver for job type.</p>
@@ -230,12 +230,12 @@ export interface SparkSqlJobDriver {
230
230
  * <p>The SQL file to be executed.</p>
231
231
  * @public
232
232
  */
233
- entryPoint?: string;
233
+ entryPoint?: string | undefined;
234
234
  /**
235
235
  * <p>The Spark parameters to be included in the Spark SQL command.</p>
236
236
  * @public
237
237
  */
238
- sparkSqlParameters?: string;
238
+ sparkSqlParameters?: string | undefined;
239
239
  }
240
240
  /**
241
241
  * <p>The information about job driver for Spark submit.</p>
@@ -251,12 +251,12 @@ export interface SparkSubmitJobDriver {
251
251
  * <p>The arguments for job application.</p>
252
252
  * @public
253
253
  */
254
- entryPointArguments?: string[];
254
+ entryPointArguments?: string[] | undefined;
255
255
  /**
256
256
  * <p>The Spark submit parameters that are used for job runs.</p>
257
257
  * @public
258
258
  */
259
- sparkSubmitParameters?: string;
259
+ sparkSubmitParameters?: string | undefined;
260
260
  }
261
261
  /**
262
262
  * <p>Specify the driver that the job runs on. Exactly one of the two available job drivers is
@@ -268,12 +268,12 @@ export interface JobDriver {
268
268
  * <p>The job driver parameters specified for spark submit.</p>
269
269
  * @public
270
270
  */
271
- sparkSubmitJobDriver?: SparkSubmitJobDriver;
271
+ sparkSubmitJobDriver?: SparkSubmitJobDriver | undefined;
272
272
  /**
273
273
  * <p>The job driver for job type.</p>
274
274
  * @public
275
275
  */
276
- sparkSqlJobDriver?: SparkSqlJobDriver;
276
+ sparkSqlJobDriver?: SparkSqlJobDriver | undefined;
277
277
  }
278
278
  /**
279
279
  * @public
@@ -296,12 +296,12 @@ export interface TemplateParameterConfiguration {
296
296
  * <p>The type of the job template parameter. Allowed values are: ‘STRING’, ‘NUMBER’.</p>
297
297
  * @public
298
298
  */
299
- type?: TemplateParameterDataType;
299
+ type?: TemplateParameterDataType | undefined;
300
300
  /**
301
301
  * <p>The default value for the job template parameter.</p>
302
302
  * @public
303
303
  */
304
- defaultValue?: string;
304
+ defaultValue?: string | undefined;
305
305
  }
306
306
  /**
307
307
  * @public
@@ -311,22 +311,22 @@ export interface CreateJobTemplateResponse {
311
311
  * <p>This output display the created job template ID.</p>
312
312
  * @public
313
313
  */
314
- id?: string;
314
+ id?: string | undefined;
315
315
  /**
316
316
  * <p>This output displays the name of the created job template.</p>
317
317
  * @public
318
318
  */
319
- name?: string;
319
+ name?: string | undefined;
320
320
  /**
321
321
  * <p>This output display the ARN of the created job template.</p>
322
322
  * @public
323
323
  */
324
- arn?: string;
324
+ arn?: string | undefined;
325
325
  /**
326
326
  * <p>This output displays the date and time when the job template was created.</p>
327
327
  * @public
328
328
  */
329
- createdAt?: Date;
329
+ createdAt?: Date | undefined;
330
330
  }
331
331
  /**
332
332
  * <p>The specified resource was not found.</p>
@@ -355,7 +355,7 @@ export interface CloudWatchMonitoringConfiguration {
355
355
  * <p>The specified name prefix for log streams.</p>
356
356
  * @public
357
357
  */
358
- logStreamNamePrefix?: string;
358
+ logStreamNamePrefix?: string | undefined;
359
359
  }
360
360
  /**
361
361
  * <p>The settings for container log rotation.</p>
@@ -406,22 +406,22 @@ export interface MonitoringConfiguration {
406
406
  * <p>Monitoring configurations for the persistent application UI. </p>
407
407
  * @public
408
408
  */
409
- persistentAppUI?: PersistentAppUI;
409
+ persistentAppUI?: PersistentAppUI | undefined;
410
410
  /**
411
411
  * <p>Monitoring configurations for CloudWatch.</p>
412
412
  * @public
413
413
  */
414
- cloudWatchMonitoringConfiguration?: CloudWatchMonitoringConfiguration;
414
+ cloudWatchMonitoringConfiguration?: CloudWatchMonitoringConfiguration | undefined;
415
415
  /**
416
416
  * <p>Amazon S3 configuration for monitoring log publishing.</p>
417
417
  * @public
418
418
  */
419
- s3MonitoringConfiguration?: S3MonitoringConfiguration;
419
+ s3MonitoringConfiguration?: S3MonitoringConfiguration | undefined;
420
420
  /**
421
421
  * <p>Enable or disable container log rotation.</p>
422
422
  * @public
423
423
  */
424
- containerLogRotationConfiguration?: ContainerLogRotationConfiguration;
424
+ containerLogRotationConfiguration?: ContainerLogRotationConfiguration | undefined;
425
425
  }
426
426
  /**
427
427
  * @public
@@ -431,22 +431,22 @@ export interface CreateManagedEndpointResponse {
431
431
  * <p>The output contains the ID of the managed endpoint.</p>
432
432
  * @public
433
433
  */
434
- id?: string;
434
+ id?: string | undefined;
435
435
  /**
436
436
  * <p>The output contains the name of the managed endpoint.</p>
437
437
  * @public
438
438
  */
439
- name?: string;
439
+ name?: string | undefined;
440
440
  /**
441
441
  * <p>The output contains the ARN of the managed endpoint.</p>
442
442
  * @public
443
443
  */
444
- arn?: string;
444
+ arn?: string | undefined;
445
445
  /**
446
446
  * <p>The output contains the ID of the virtual cluster.</p>
447
447
  * @public
448
448
  */
449
- virtualClusterId?: string;
449
+ virtualClusterId?: string | undefined;
450
450
  }
451
451
  /**
452
452
  * <p>Configurations related to the security configuration for the request.</p>
@@ -457,7 +457,7 @@ export interface SecurityConfigurationData {
457
457
  * <p>Authorization-related configuration input for the security configuration.</p>
458
458
  * @public
459
459
  */
460
- authorizationConfiguration?: AuthorizationConfiguration;
460
+ authorizationConfiguration?: AuthorizationConfiguration | undefined;
461
461
  }
462
462
  /**
463
463
  * @public
@@ -467,7 +467,7 @@ export interface CreateSecurityConfigurationRequest {
467
467
  * <p>The client idempotency token to use when creating the security configuration.</p>
468
468
  * @public
469
469
  */
470
- clientToken?: string;
470
+ clientToken?: string | undefined;
471
471
  /**
472
472
  * <p>The name of the security configuration.</p>
473
473
  * @public
@@ -482,7 +482,7 @@ export interface CreateSecurityConfigurationRequest {
482
482
  * <p>The tags to add to the security configuration.</p>
483
483
  * @public
484
484
  */
485
- tags?: Record<string, string>;
485
+ tags?: Record<string, string> | undefined;
486
486
  }
487
487
  /**
488
488
  * @public
@@ -492,17 +492,17 @@ export interface CreateSecurityConfigurationResponse {
492
492
  * <p>The ID of the security configuration.</p>
493
493
  * @public
494
494
  */
495
- id?: string;
495
+ id?: string | undefined;
496
496
  /**
497
497
  * <p>The name of the security configuration.</p>
498
498
  * @public
499
499
  */
500
- name?: string;
500
+ name?: string | undefined;
501
501
  /**
502
502
  * <p>The ARN (Amazon Resource Name) of the security configuration.</p>
503
503
  * @public
504
504
  */
505
- arn?: string;
505
+ arn?: string | undefined;
506
506
  }
507
507
  /**
508
508
  * <p>The information about the Amazon EKS cluster.</p>
@@ -513,7 +513,7 @@ export interface EksInfo {
513
513
  * <p>The namespaces of the Amazon EKS cluster.</p>
514
514
  * @public
515
515
  */
516
- namespace?: string;
516
+ namespace?: string | undefined;
517
517
  }
518
518
  /**
519
519
  * <p>The information about the container used for a job run or a managed endpoint.</p>
@@ -576,7 +576,7 @@ export interface ContainerProvider {
576
576
  * <p>The information about the container cluster.</p>
577
577
  * @public
578
578
  */
579
- info?: ContainerInfo;
579
+ info?: ContainerInfo | undefined;
580
580
  }
581
581
  /**
582
582
  * @public
@@ -596,17 +596,17 @@ export interface CreateVirtualClusterRequest {
596
596
  * <p>The client token of the virtual cluster.</p>
597
597
  * @public
598
598
  */
599
- clientToken?: string;
599
+ clientToken?: string | undefined;
600
600
  /**
601
601
  * <p>The tags assigned to the virtual cluster.</p>
602
602
  * @public
603
603
  */
604
- tags?: Record<string, string>;
604
+ tags?: Record<string, string> | undefined;
605
605
  /**
606
606
  * <p>The ID of the security configuration.</p>
607
607
  * @public
608
608
  */
609
- securityConfigurationId?: string;
609
+ securityConfigurationId?: string | undefined;
610
610
  }
611
611
  /**
612
612
  * @public
@@ -616,17 +616,17 @@ export interface CreateVirtualClusterResponse {
616
616
  * <p>This output contains the virtual cluster ID.</p>
617
617
  * @public
618
618
  */
619
- id?: string;
619
+ id?: string | undefined;
620
620
  /**
621
621
  * <p>This output contains the name of the virtual cluster.</p>
622
622
  * @public
623
623
  */
624
- name?: string;
624
+ name?: string | undefined;
625
625
  /**
626
626
  * <p>This output contains the ARN of virtual cluster.</p>
627
627
  * @public
628
628
  */
629
- arn?: string;
629
+ arn?: string | undefined;
630
630
  }
631
631
  /**
632
632
  * <p>The request exceeded the Amazon EKS API operation limits.</p>
@@ -658,7 +658,7 @@ export interface DeleteJobTemplateResponse {
658
658
  * <p>This output contains the ID of the job template that was deleted.</p>
659
659
  * @public
660
660
  */
661
- id?: string;
661
+ id?: string | undefined;
662
662
  }
663
663
  /**
664
664
  * @public
@@ -683,12 +683,12 @@ export interface DeleteManagedEndpointResponse {
683
683
  * <p>The output displays the ID of the managed endpoint.</p>
684
684
  * @public
685
685
  */
686
- id?: string;
686
+ id?: string | undefined;
687
687
  /**
688
688
  * <p>The output displays the ID of the endpoint's virtual cluster.</p>
689
689
  * @public
690
690
  */
691
- virtualClusterId?: string;
691
+ virtualClusterId?: string | undefined;
692
692
  }
693
693
  /**
694
694
  * @public
@@ -708,7 +708,7 @@ export interface DeleteVirtualClusterResponse {
708
708
  * <p>This output contains the ID of the virtual cluster that will be deleted. </p>
709
709
  * @public
710
710
  */
711
- id?: string;
711
+ id?: string | undefined;
712
712
  }
713
713
  /**
714
714
  * @public
@@ -812,12 +812,12 @@ export interface Certificate {
812
812
  * <p>The ARN of the certificate generated for managed endpoint.</p>
813
813
  * @public
814
814
  */
815
- certificateArn?: string;
815
+ certificateArn?: string | undefined;
816
816
  /**
817
817
  * <p>The base64 encoded PEM certificate data generated for managed endpoint.</p>
818
818
  * @public
819
819
  */
820
- certificateData?: string;
820
+ certificateData?: string | undefined;
821
821
  }
822
822
  /**
823
823
  * @public
@@ -856,37 +856,37 @@ export interface SecurityConfiguration {
856
856
  * <p>The ID of the security configuration.</p>
857
857
  * @public
858
858
  */
859
- id?: string;
859
+ id?: string | undefined;
860
860
  /**
861
861
  * <p>The name of the security configuration.</p>
862
862
  * @public
863
863
  */
864
- name?: string;
864
+ name?: string | undefined;
865
865
  /**
866
866
  * <p>The ARN (Amazon Resource Name) of the security configuration.</p>
867
867
  * @public
868
868
  */
869
- arn?: string;
869
+ arn?: string | undefined;
870
870
  /**
871
871
  * <p>The date and time that the job run was created.</p>
872
872
  * @public
873
873
  */
874
- createdAt?: Date;
874
+ createdAt?: Date | undefined;
875
875
  /**
876
876
  * <p>The user who created the job run.</p>
877
877
  * @public
878
878
  */
879
- createdBy?: string;
879
+ createdBy?: string | undefined;
880
880
  /**
881
881
  * <p>Security configuration inputs for the request.</p>
882
882
  * @public
883
883
  */
884
- securityConfigurationData?: SecurityConfigurationData;
884
+ securityConfigurationData?: SecurityConfigurationData | undefined;
885
885
  /**
886
886
  * <p>The tags to assign to the security configuration.</p>
887
887
  * @public
888
888
  */
889
- tags?: Record<string, string>;
889
+ tags?: Record<string, string> | undefined;
890
890
  }
891
891
  /**
892
892
  * @public
@@ -896,7 +896,7 @@ export interface DescribeSecurityConfigurationResponse {
896
896
  * <p>Details of the security configuration.</p>
897
897
  * @public
898
898
  */
899
- securityConfiguration?: SecurityConfiguration;
899
+ securityConfiguration?: SecurityConfiguration | undefined;
900
900
  }
901
901
  /**
902
902
  * @public
@@ -936,42 +936,42 @@ export interface VirtualCluster {
936
936
  * <p>The ID of the virtual cluster.</p>
937
937
  * @public
938
938
  */
939
- id?: string;
939
+ id?: string | undefined;
940
940
  /**
941
941
  * <p>The name of the virtual cluster.</p>
942
942
  * @public
943
943
  */
944
- name?: string;
944
+ name?: string | undefined;
945
945
  /**
946
946
  * <p>The ARN of the virtual cluster.</p>
947
947
  * @public
948
948
  */
949
- arn?: string;
949
+ arn?: string | undefined;
950
950
  /**
951
951
  * <p>The state of the virtual cluster.</p>
952
952
  * @public
953
953
  */
954
- state?: VirtualClusterState;
954
+ state?: VirtualClusterState | undefined;
955
955
  /**
956
956
  * <p>The container provider of the virtual cluster.</p>
957
957
  * @public
958
958
  */
959
- containerProvider?: ContainerProvider;
959
+ containerProvider?: ContainerProvider | undefined;
960
960
  /**
961
961
  * <p>The date and time when the virtual cluster is created.</p>
962
962
  * @public
963
963
  */
964
- createdAt?: Date;
964
+ createdAt?: Date | undefined;
965
965
  /**
966
966
  * <p>The assigned tags of the virtual cluster.</p>
967
967
  * @public
968
968
  */
969
- tags?: Record<string, string>;
969
+ tags?: Record<string, string> | undefined;
970
970
  /**
971
971
  * <p>The ID of the security configuration.</p>
972
972
  * @public
973
973
  */
974
- securityConfigurationId?: string;
974
+ securityConfigurationId?: string | undefined;
975
975
  }
976
976
  /**
977
977
  * @public
@@ -981,7 +981,7 @@ export interface DescribeVirtualClusterResponse {
981
981
  * <p>This output displays information about the specified virtual cluster.</p>
982
982
  * @public
983
983
  */
984
- virtualCluster?: VirtualCluster;
984
+ virtualCluster?: VirtualCluster | undefined;
985
985
  }
986
986
  /**
987
987
  * @public
@@ -1013,17 +1013,17 @@ export interface GetManagedEndpointSessionCredentialsRequest {
1013
1013
  * minutes and the maximum is 12 hours.</p>
1014
1014
  * @public
1015
1015
  */
1016
- durationInSeconds?: number;
1016
+ durationInSeconds?: number | undefined;
1017
1017
  /**
1018
1018
  * <p>String identifier used to separate sections of the execution logs uploaded to S3.</p>
1019
1019
  * @public
1020
1020
  */
1021
- logContext?: string;
1021
+ logContext?: string | undefined;
1022
1022
  /**
1023
1023
  * <p>The client idempotency token of the job run request.</p>
1024
1024
  * @public
1025
1025
  */
1026
- clientToken?: string;
1026
+ clientToken?: string | undefined;
1027
1027
  }
1028
1028
  /**
1029
1029
  * <p>The structure containing the session token being returned.</p>
@@ -1063,17 +1063,17 @@ export interface GetManagedEndpointSessionCredentialsResponse {
1063
1063
  * <p>The identifier of the session token returned.</p>
1064
1064
  * @public
1065
1065
  */
1066
- id?: string;
1066
+ id?: string | undefined;
1067
1067
  /**
1068
1068
  * <p>The structure containing the session credentials.</p>
1069
1069
  * @public
1070
1070
  */
1071
- credentials?: Credentials;
1071
+ credentials?: Credentials | undefined;
1072
1072
  /**
1073
1073
  * <p>The date and time when the session token will expire.</p>
1074
1074
  * @public
1075
1075
  */
1076
- expiresAt?: Date;
1076
+ expiresAt?: Date | undefined;
1077
1077
  }
1078
1078
  /**
1079
1079
  * <p>The request throttled.</p>
@@ -1100,32 +1100,32 @@ export interface ListJobRunsRequest {
1100
1100
  * <p>The date and time before which the job runs were submitted.</p>
1101
1101
  * @public
1102
1102
  */
1103
- createdBefore?: Date;
1103
+ createdBefore?: Date | undefined;
1104
1104
  /**
1105
1105
  * <p>The date and time after which the job runs were submitted.</p>
1106
1106
  * @public
1107
1107
  */
1108
- createdAfter?: Date;
1108
+ createdAfter?: Date | undefined;
1109
1109
  /**
1110
1110
  * <p>The name of the job run.</p>
1111
1111
  * @public
1112
1112
  */
1113
- name?: string;
1113
+ name?: string | undefined;
1114
1114
  /**
1115
1115
  * <p>The states of the job run.</p>
1116
1116
  * @public
1117
1117
  */
1118
- states?: JobRunState[];
1118
+ states?: JobRunState[] | undefined;
1119
1119
  /**
1120
1120
  * <p>The maximum number of job runs that can be listed.</p>
1121
1121
  * @public
1122
1122
  */
1123
- maxResults?: number;
1123
+ maxResults?: number | undefined;
1124
1124
  /**
1125
1125
  * <p>The token for the next set of job runs to return.</p>
1126
1126
  * @public
1127
1127
  */
1128
- nextToken?: string;
1128
+ nextToken?: string | undefined;
1129
1129
  }
1130
1130
  /**
1131
1131
  * @public
@@ -1135,22 +1135,22 @@ export interface ListJobTemplatesRequest {
1135
1135
  * <p>The date and time after which the job templates were created.</p>
1136
1136
  * @public
1137
1137
  */
1138
- createdAfter?: Date;
1138
+ createdAfter?: Date | undefined;
1139
1139
  /**
1140
1140
  * <p> The date and time before which the job templates were created.</p>
1141
1141
  * @public
1142
1142
  */
1143
- createdBefore?: Date;
1143
+ createdBefore?: Date | undefined;
1144
1144
  /**
1145
1145
  * <p> The maximum number of job templates that can be listed.</p>
1146
1146
  * @public
1147
1147
  */
1148
- maxResults?: number;
1148
+ maxResults?: number | undefined;
1149
1149
  /**
1150
1150
  * <p> The token for the next set of job templates to return.</p>
1151
1151
  * @public
1152
1152
  */
1153
- nextToken?: string;
1153
+ nextToken?: string | undefined;
1154
1154
  }
1155
1155
  /**
1156
1156
  * @public
@@ -1165,32 +1165,32 @@ export interface ListManagedEndpointsRequest {
1165
1165
  * <p>The date and time before which the endpoints are created.</p>
1166
1166
  * @public
1167
1167
  */
1168
- createdBefore?: Date;
1168
+ createdBefore?: Date | undefined;
1169
1169
  /**
1170
1170
  * <p> The date and time after which the endpoints are created.</p>
1171
1171
  * @public
1172
1172
  */
1173
- createdAfter?: Date;
1173
+ createdAfter?: Date | undefined;
1174
1174
  /**
1175
1175
  * <p>The types of the managed endpoints.</p>
1176
1176
  * @public
1177
1177
  */
1178
- types?: string[];
1178
+ types?: string[] | undefined;
1179
1179
  /**
1180
1180
  * <p>The states of the managed endpoints.</p>
1181
1181
  * @public
1182
1182
  */
1183
- states?: EndpointState[];
1183
+ states?: EndpointState[] | undefined;
1184
1184
  /**
1185
1185
  * <p>The maximum number of managed endpoints that can be listed.</p>
1186
1186
  * @public
1187
1187
  */
1188
- maxResults?: number;
1188
+ maxResults?: number | undefined;
1189
1189
  /**
1190
1190
  * <p> The token for the next set of managed endpoints to return. </p>
1191
1191
  * @public
1192
1192
  */
1193
- nextToken?: string;
1193
+ nextToken?: string | undefined;
1194
1194
  }
1195
1195
  /**
1196
1196
  * @public
@@ -1200,22 +1200,22 @@ export interface ListSecurityConfigurationsRequest {
1200
1200
  * <p>The date and time after which the security configuration was created.</p>
1201
1201
  * @public
1202
1202
  */
1203
- createdAfter?: Date;
1203
+ createdAfter?: Date | undefined;
1204
1204
  /**
1205
1205
  * <p>The date and time before which the security configuration was created.</p>
1206
1206
  * @public
1207
1207
  */
1208
- createdBefore?: Date;
1208
+ createdBefore?: Date | undefined;
1209
1209
  /**
1210
1210
  * <p>The maximum number of security configurations the operation can list.</p>
1211
1211
  * @public
1212
1212
  */
1213
- maxResults?: number;
1213
+ maxResults?: number | undefined;
1214
1214
  /**
1215
1215
  * <p>The token for the next set of security configurations to return.</p>
1216
1216
  * @public
1217
1217
  */
1218
- nextToken?: string;
1218
+ nextToken?: string | undefined;
1219
1219
  }
1220
1220
  /**
1221
1221
  * @public
@@ -1225,12 +1225,12 @@ export interface ListSecurityConfigurationsResponse {
1225
1225
  * <p>The list of returned security configurations.</p>
1226
1226
  * @public
1227
1227
  */
1228
- securityConfigurations?: SecurityConfiguration[];
1228
+ securityConfigurations?: SecurityConfiguration[] | undefined;
1229
1229
  /**
1230
1230
  * <p>The token for the next set of security configurations to return.</p>
1231
1231
  * @public
1232
1232
  */
1233
- nextToken?: string;
1233
+ nextToken?: string | undefined;
1234
1234
  }
1235
1235
  /**
1236
1236
  * @public
@@ -1250,7 +1250,7 @@ export interface ListTagsForResourceResponse {
1250
1250
  * <p>The tags assigned to resources.</p>
1251
1251
  * @public
1252
1252
  */
1253
- tags?: Record<string, string>;
1253
+ tags?: Record<string, string> | undefined;
1254
1254
  }
1255
1255
  /**
1256
1256
  * @public
@@ -1260,45 +1260,45 @@ export interface ListVirtualClustersRequest {
1260
1260
  * <p>The container provider ID of the virtual cluster.</p>
1261
1261
  * @public
1262
1262
  */
1263
- containerProviderId?: string;
1263
+ containerProviderId?: string | undefined;
1264
1264
  /**
1265
1265
  * <p>The container provider type of the virtual cluster. Amazon EKS is the only
1266
1266
  * supported type as of now.</p>
1267
1267
  * @public
1268
1268
  */
1269
- containerProviderType?: ContainerProviderType;
1269
+ containerProviderType?: ContainerProviderType | undefined;
1270
1270
  /**
1271
1271
  * <p>The date and time after which the virtual clusters are created.</p>
1272
1272
  * @public
1273
1273
  */
1274
- createdAfter?: Date;
1274
+ createdAfter?: Date | undefined;
1275
1275
  /**
1276
1276
  * <p>The date and time before which the virtual clusters are created.</p>
1277
1277
  * @public
1278
1278
  */
1279
- createdBefore?: Date;
1279
+ createdBefore?: Date | undefined;
1280
1280
  /**
1281
1281
  * <p>The states of the requested virtual clusters.</p>
1282
1282
  * @public
1283
1283
  */
1284
- states?: VirtualClusterState[];
1284
+ states?: VirtualClusterState[] | undefined;
1285
1285
  /**
1286
1286
  * <p>The maximum number of virtual clusters that can be listed.</p>
1287
1287
  * @public
1288
1288
  */
1289
- maxResults?: number;
1289
+ maxResults?: number | undefined;
1290
1290
  /**
1291
1291
  * <p>The token for the next set of virtual clusters to return. </p>
1292
1292
  * @public
1293
1293
  */
1294
- nextToken?: string;
1294
+ nextToken?: string | undefined;
1295
1295
  /**
1296
1296
  * <p>Optional Boolean that specifies whether the operation should return the
1297
1297
  * virtual clusters that have the access entry integration enabled or disabled. If not specified,
1298
1298
  * the operation returns all applicable virtual clusters.</p>
1299
1299
  * @public
1300
1300
  */
1301
- eksAccessEntryIntegrated?: boolean;
1301
+ eksAccessEntryIntegrated?: boolean | undefined;
1302
1302
  }
1303
1303
  /**
1304
1304
  * @public
@@ -1308,12 +1308,12 @@ export interface ListVirtualClustersResponse {
1308
1308
  * <p>This output lists the specified virtual clusters.</p>
1309
1309
  * @public
1310
1310
  */
1311
- virtualClusters?: VirtualCluster[];
1311
+ virtualClusters?: VirtualCluster[] | undefined;
1312
1312
  /**
1313
1313
  * <p>This output displays the token for the next set of virtual clusters.</p>
1314
1314
  * @public
1315
1315
  */
1316
- nextToken?: string;
1316
+ nextToken?: string | undefined;
1317
1317
  }
1318
1318
  /**
1319
1319
  * @public
@@ -1323,22 +1323,22 @@ export interface StartJobRunResponse {
1323
1323
  * <p>This output displays the started job run ID.</p>
1324
1324
  * @public
1325
1325
  */
1326
- id?: string;
1326
+ id?: string | undefined;
1327
1327
  /**
1328
1328
  * <p>This output displays the name of the started job run.</p>
1329
1329
  * @public
1330
1330
  */
1331
- name?: string;
1331
+ name?: string | undefined;
1332
1332
  /**
1333
1333
  * <p>This output lists the ARN of job run.</p>
1334
1334
  * @public
1335
1335
  */
1336
- arn?: string;
1336
+ arn?: string | undefined;
1337
1337
  /**
1338
1338
  * <p>This output displays the virtual cluster ID for which the job run was submitted.</p>
1339
1339
  * @public
1340
1340
  */
1341
- virtualClusterId?: string;
1341
+ virtualClusterId?: string | undefined;
1342
1342
  }
1343
1343
  /**
1344
1344
  * @public
@@ -1398,12 +1398,12 @@ export interface Configuration {
1398
1398
  * <p>A set of properties specified within a configuration classification.</p>
1399
1399
  * @public
1400
1400
  */
1401
- properties?: Record<string, string>;
1401
+ properties?: Record<string, string> | undefined;
1402
1402
  /**
1403
1403
  * <p>A list of additional configurations to apply within a configuration object.</p>
1404
1404
  * @public
1405
1405
  */
1406
- configurations?: Configuration[];
1406
+ configurations?: Configuration[] | undefined;
1407
1407
  }
1408
1408
  /**
1409
1409
  * <p>A configuration specification to be used to override existing configurations.</p>
@@ -1414,12 +1414,12 @@ export interface ConfigurationOverrides {
1414
1414
  * <p>The configurations for the application running by the job run. </p>
1415
1415
  * @public
1416
1416
  */
1417
- applicationConfiguration?: Configuration[];
1417
+ applicationConfiguration?: Configuration[] | undefined;
1418
1418
  /**
1419
1419
  * <p>The configurations for monitoring.</p>
1420
1420
  * @public
1421
1421
  */
1422
- monitoringConfiguration?: MonitoringConfiguration;
1422
+ monitoringConfiguration?: MonitoringConfiguration | undefined;
1423
1423
  }
1424
1424
  /**
1425
1425
  * <p> A configuration specification to be used to override existing configurations. This data
@@ -1431,12 +1431,12 @@ export interface ParametricConfigurationOverrides {
1431
1431
  * <p> The configurations for the application running by the job run.</p>
1432
1432
  * @public
1433
1433
  */
1434
- applicationConfiguration?: Configuration[];
1434
+ applicationConfiguration?: Configuration[] | undefined;
1435
1435
  /**
1436
1436
  * <p> The configurations for monitoring. </p>
1437
1437
  * @public
1438
1438
  */
1439
- monitoringConfiguration?: ParametricMonitoringConfiguration;
1439
+ monitoringConfiguration?: ParametricMonitoringConfiguration | undefined;
1440
1440
  }
1441
1441
  /**
1442
1442
  * @public
@@ -1474,22 +1474,22 @@ export interface CreateManagedEndpointRequest {
1474
1474
  * deprecation and will be removed in future releases.</p>
1475
1475
  * @public
1476
1476
  */
1477
- certificateArn?: string;
1477
+ certificateArn?: string | undefined;
1478
1478
  /**
1479
1479
  * <p>The configuration settings that will be used to override existing configurations.</p>
1480
1480
  * @public
1481
1481
  */
1482
- configurationOverrides?: ConfigurationOverrides;
1482
+ configurationOverrides?: ConfigurationOverrides | undefined;
1483
1483
  /**
1484
1484
  * <p>The client idempotency token for this create call.</p>
1485
1485
  * @public
1486
1486
  */
1487
- clientToken?: string;
1487
+ clientToken?: string | undefined;
1488
1488
  /**
1489
1489
  * <p>The tags of the managed endpoint. </p>
1490
1490
  * @public
1491
1491
  */
1492
- tags?: Record<string, string>;
1492
+ tags?: Record<string, string> | undefined;
1493
1493
  }
1494
1494
  /**
1495
1495
  * <p>This entity represents the endpoint that is managed by Amazon EMR on EKS.</p>
@@ -1500,42 +1500,42 @@ export interface Endpoint {
1500
1500
  * <p>The ID of the endpoint.</p>
1501
1501
  * @public
1502
1502
  */
1503
- id?: string;
1503
+ id?: string | undefined;
1504
1504
  /**
1505
1505
  * <p>The name of the endpoint.</p>
1506
1506
  * @public
1507
1507
  */
1508
- name?: string;
1508
+ name?: string | undefined;
1509
1509
  /**
1510
1510
  * <p>The ARN of the endpoint.</p>
1511
1511
  * @public
1512
1512
  */
1513
- arn?: string;
1513
+ arn?: string | undefined;
1514
1514
  /**
1515
1515
  * <p>The ID of the endpoint's virtual cluster.</p>
1516
1516
  * @public
1517
1517
  */
1518
- virtualClusterId?: string;
1518
+ virtualClusterId?: string | undefined;
1519
1519
  /**
1520
1520
  * <p>The type of the endpoint.</p>
1521
1521
  * @public
1522
1522
  */
1523
- type?: string;
1523
+ type?: string | undefined;
1524
1524
  /**
1525
1525
  * <p>The state of the endpoint.</p>
1526
1526
  * @public
1527
1527
  */
1528
- state?: EndpointState;
1528
+ state?: EndpointState | undefined;
1529
1529
  /**
1530
1530
  * <p>The EMR release version to be used for the endpoint.</p>
1531
1531
  * @public
1532
1532
  */
1533
- releaseLabel?: string;
1533
+ releaseLabel?: string | undefined;
1534
1534
  /**
1535
1535
  * <p>The execution role ARN of the endpoint.</p>
1536
1536
  * @public
1537
1537
  */
1538
- executionRoleArn?: string;
1538
+ executionRoleArn?: string | undefined;
1539
1539
  /**
1540
1540
  * @deprecated
1541
1541
  *
@@ -1543,54 +1543,54 @@ export interface Endpoint {
1543
1543
  * in future.</p>
1544
1544
  * @public
1545
1545
  */
1546
- certificateArn?: string;
1546
+ certificateArn?: string | undefined;
1547
1547
  /**
1548
1548
  * <p>The certificate generated by emr control plane on customer behalf to secure the managed
1549
1549
  * endpoint.</p>
1550
1550
  * @public
1551
1551
  */
1552
- certificateAuthority?: Certificate;
1552
+ certificateAuthority?: Certificate | undefined;
1553
1553
  /**
1554
1554
  * <p>The configuration settings that are used to override existing configurations for
1555
1555
  * endpoints.</p>
1556
1556
  * @public
1557
1557
  */
1558
- configurationOverrides?: ConfigurationOverrides;
1558
+ configurationOverrides?: ConfigurationOverrides | undefined;
1559
1559
  /**
1560
1560
  * <p>The server URL of the endpoint.</p>
1561
1561
  * @public
1562
1562
  */
1563
- serverUrl?: string;
1563
+ serverUrl?: string | undefined;
1564
1564
  /**
1565
1565
  * <p>The date and time when the endpoint was created.</p>
1566
1566
  * @public
1567
1567
  */
1568
- createdAt?: Date;
1568
+ createdAt?: Date | undefined;
1569
1569
  /**
1570
1570
  * <p>The security group configuration of the endpoint. </p>
1571
1571
  * @public
1572
1572
  */
1573
- securityGroup?: string;
1573
+ securityGroup?: string | undefined;
1574
1574
  /**
1575
1575
  * <p>The subnet IDs of the endpoint. </p>
1576
1576
  * @public
1577
1577
  */
1578
- subnetIds?: string[];
1578
+ subnetIds?: string[] | undefined;
1579
1579
  /**
1580
1580
  * <p> Additional details of the endpoint state. </p>
1581
1581
  * @public
1582
1582
  */
1583
- stateDetails?: string;
1583
+ stateDetails?: string | undefined;
1584
1584
  /**
1585
1585
  * <p> The reasons why the endpoint has failed. </p>
1586
1586
  * @public
1587
1587
  */
1588
- failureReason?: FailureReason;
1588
+ failureReason?: FailureReason | undefined;
1589
1589
  /**
1590
1590
  * <p>The tags of the endpoint. </p>
1591
1591
  * @public
1592
1592
  */
1593
- tags?: Record<string, string>;
1593
+ tags?: Record<string, string> | undefined;
1594
1594
  }
1595
1595
  /**
1596
1596
  * <p>This entity describes a job run. A job run is a unit of work, such as a Spark jar,
@@ -1602,92 +1602,92 @@ export interface JobRun {
1602
1602
  * <p>The ID of the job run.</p>
1603
1603
  * @public
1604
1604
  */
1605
- id?: string;
1605
+ id?: string | undefined;
1606
1606
  /**
1607
1607
  * <p>The name of the job run.</p>
1608
1608
  * @public
1609
1609
  */
1610
- name?: string;
1610
+ name?: string | undefined;
1611
1611
  /**
1612
1612
  * <p>The ID of the job run's virtual cluster.</p>
1613
1613
  * @public
1614
1614
  */
1615
- virtualClusterId?: string;
1615
+ virtualClusterId?: string | undefined;
1616
1616
  /**
1617
1617
  * <p>The ARN of job run.</p>
1618
1618
  * @public
1619
1619
  */
1620
- arn?: string;
1620
+ arn?: string | undefined;
1621
1621
  /**
1622
1622
  * <p>The state of the job run. </p>
1623
1623
  * @public
1624
1624
  */
1625
- state?: JobRunState;
1625
+ state?: JobRunState | undefined;
1626
1626
  /**
1627
1627
  * <p>The client token used to start a job run.</p>
1628
1628
  * @public
1629
1629
  */
1630
- clientToken?: string;
1630
+ clientToken?: string | undefined;
1631
1631
  /**
1632
1632
  * <p>The execution role ARN of the job run.</p>
1633
1633
  * @public
1634
1634
  */
1635
- executionRoleArn?: string;
1635
+ executionRoleArn?: string | undefined;
1636
1636
  /**
1637
1637
  * <p>The release version of Amazon EMR.</p>
1638
1638
  * @public
1639
1639
  */
1640
- releaseLabel?: string;
1640
+ releaseLabel?: string | undefined;
1641
1641
  /**
1642
1642
  * <p>The configuration settings that are used to override default configuration.</p>
1643
1643
  * @public
1644
1644
  */
1645
- configurationOverrides?: ConfigurationOverrides;
1645
+ configurationOverrides?: ConfigurationOverrides | undefined;
1646
1646
  /**
1647
1647
  * <p>Parameters of job driver for the job run.</p>
1648
1648
  * @public
1649
1649
  */
1650
- jobDriver?: JobDriver;
1650
+ jobDriver?: JobDriver | undefined;
1651
1651
  /**
1652
1652
  * <p>The date and time when the job run was created.</p>
1653
1653
  * @public
1654
1654
  */
1655
- createdAt?: Date;
1655
+ createdAt?: Date | undefined;
1656
1656
  /**
1657
1657
  * <p>The user who created the job run.</p>
1658
1658
  * @public
1659
1659
  */
1660
- createdBy?: string;
1660
+ createdBy?: string | undefined;
1661
1661
  /**
1662
1662
  * <p>The date and time when the job run has finished.</p>
1663
1663
  * @public
1664
1664
  */
1665
- finishedAt?: Date;
1665
+ finishedAt?: Date | undefined;
1666
1666
  /**
1667
1667
  * <p>Additional details of the job run state.</p>
1668
1668
  * @public
1669
1669
  */
1670
- stateDetails?: string;
1670
+ stateDetails?: string | undefined;
1671
1671
  /**
1672
1672
  * <p>The reasons why the job run has failed.</p>
1673
1673
  * @public
1674
1674
  */
1675
- failureReason?: FailureReason;
1675
+ failureReason?: FailureReason | undefined;
1676
1676
  /**
1677
1677
  * <p>The assigned tags of the job run.</p>
1678
1678
  * @public
1679
1679
  */
1680
- tags?: Record<string, string>;
1680
+ tags?: Record<string, string> | undefined;
1681
1681
  /**
1682
1682
  * <p>The configuration of the retry policy that the job runs on.</p>
1683
1683
  * @public
1684
1684
  */
1685
- retryPolicyConfiguration?: RetryPolicyConfiguration;
1685
+ retryPolicyConfiguration?: RetryPolicyConfiguration | undefined;
1686
1686
  /**
1687
1687
  * <p>The current status of the retry policy executed on the job.</p>
1688
1688
  * @public
1689
1689
  */
1690
- retryPolicyExecution?: RetryPolicyExecution;
1690
+ retryPolicyExecution?: RetryPolicyExecution | undefined;
1691
1691
  }
1692
1692
  /**
1693
1693
  * <p>The values of StartJobRun API requests used in job runs started using the job
@@ -1709,7 +1709,7 @@ export interface JobTemplateData {
1709
1709
  * <p> The configuration settings that are used to override defaults configuration.</p>
1710
1710
  * @public
1711
1711
  */
1712
- configurationOverrides?: ParametricConfigurationOverrides;
1712
+ configurationOverrides?: ParametricConfigurationOverrides | undefined;
1713
1713
  /**
1714
1714
  * <p>Specify the driver that the job runs on. Exactly one of the two available job drivers is
1715
1715
  * required, either sparkSqlJobDriver or sparkSubmitJobDriver.</p>
@@ -1720,12 +1720,12 @@ export interface JobTemplateData {
1720
1720
  * <p>The configuration of parameters existing in the job template.</p>
1721
1721
  * @public
1722
1722
  */
1723
- parameterConfiguration?: Record<string, TemplateParameterConfiguration>;
1723
+ parameterConfiguration?: Record<string, TemplateParameterConfiguration> | undefined;
1724
1724
  /**
1725
1725
  * <p>The tags assigned to jobs started using the job template.</p>
1726
1726
  * @public
1727
1727
  */
1728
- jobTags?: Record<string, string>;
1728
+ jobTags?: Record<string, string> | undefined;
1729
1729
  }
1730
1730
  /**
1731
1731
  * @public
@@ -1735,7 +1735,7 @@ export interface StartJobRunRequest {
1735
1735
  * <p>The name of the job run.</p>
1736
1736
  * @public
1737
1737
  */
1738
- name?: string;
1738
+ name?: string | undefined;
1739
1739
  /**
1740
1740
  * <p>The virtual cluster ID for which the job run request is submitted.</p>
1741
1741
  * @public
@@ -1745,47 +1745,47 @@ export interface StartJobRunRequest {
1745
1745
  * <p>The client idempotency token of the job run request. </p>
1746
1746
  * @public
1747
1747
  */
1748
- clientToken?: string;
1748
+ clientToken?: string | undefined;
1749
1749
  /**
1750
1750
  * <p>The execution role ARN for the job run.</p>
1751
1751
  * @public
1752
1752
  */
1753
- executionRoleArn?: string;
1753
+ executionRoleArn?: string | undefined;
1754
1754
  /**
1755
1755
  * <p>The Amazon EMR release version to use for the job run.</p>
1756
1756
  * @public
1757
1757
  */
1758
- releaseLabel?: string;
1758
+ releaseLabel?: string | undefined;
1759
1759
  /**
1760
1760
  * <p>The job driver for the job run.</p>
1761
1761
  * @public
1762
1762
  */
1763
- jobDriver?: JobDriver;
1763
+ jobDriver?: JobDriver | undefined;
1764
1764
  /**
1765
1765
  * <p>The configuration overrides for the job run.</p>
1766
1766
  * @public
1767
1767
  */
1768
- configurationOverrides?: ConfigurationOverrides;
1768
+ configurationOverrides?: ConfigurationOverrides | undefined;
1769
1769
  /**
1770
1770
  * <p>The tags assigned to job runs.</p>
1771
1771
  * @public
1772
1772
  */
1773
- tags?: Record<string, string>;
1773
+ tags?: Record<string, string> | undefined;
1774
1774
  /**
1775
1775
  * <p>The job template ID to be used to start the job run.</p>
1776
1776
  * @public
1777
1777
  */
1778
- jobTemplateId?: string;
1778
+ jobTemplateId?: string | undefined;
1779
1779
  /**
1780
1780
  * <p>The values of job template parameters to start a job run.</p>
1781
1781
  * @public
1782
1782
  */
1783
- jobTemplateParameters?: Record<string, string>;
1783
+ jobTemplateParameters?: Record<string, string> | undefined;
1784
1784
  /**
1785
1785
  * <p>The retry policy configuration for the job run.</p>
1786
1786
  * @public
1787
1787
  */
1788
- retryPolicyConfiguration?: RetryPolicyConfiguration;
1788
+ retryPolicyConfiguration?: RetryPolicyConfiguration | undefined;
1789
1789
  }
1790
1790
  /**
1791
1791
  * @public
@@ -1800,7 +1800,7 @@ export interface CreateJobTemplateRequest {
1800
1800
  * <p>The client token of the job template.</p>
1801
1801
  * @public
1802
1802
  */
1803
- clientToken?: string;
1803
+ clientToken?: string | undefined;
1804
1804
  /**
1805
1805
  * <p>The job template data which holds values of StartJobRun API request.</p>
1806
1806
  * @public
@@ -1810,12 +1810,12 @@ export interface CreateJobTemplateRequest {
1810
1810
  * <p>The tags that are associated with the job template.</p>
1811
1811
  * @public
1812
1812
  */
1813
- tags?: Record<string, string>;
1813
+ tags?: Record<string, string> | undefined;
1814
1814
  /**
1815
1815
  * <p>The KMS key ARN used to encrypt the job template.</p>
1816
1816
  * @public
1817
1817
  */
1818
- kmsKeyArn?: string;
1818
+ kmsKeyArn?: string | undefined;
1819
1819
  }
1820
1820
  /**
1821
1821
  * @public
@@ -1825,7 +1825,7 @@ export interface DescribeJobRunResponse {
1825
1825
  * <p>The output displays information about a job run.</p>
1826
1826
  * @public
1827
1827
  */
1828
- jobRun?: JobRun;
1828
+ jobRun?: JobRun | undefined;
1829
1829
  }
1830
1830
  /**
1831
1831
  * @public
@@ -1835,7 +1835,7 @@ export interface DescribeManagedEndpointResponse {
1835
1835
  * <p>This output displays information about a managed endpoint.</p>
1836
1836
  * @public
1837
1837
  */
1838
- endpoint?: Endpoint;
1838
+ endpoint?: Endpoint | undefined;
1839
1839
  }
1840
1840
  /**
1841
1841
  * <p>This entity describes a job template. Job template stores values of StartJobRun API
@@ -1849,32 +1849,32 @@ export interface JobTemplate {
1849
1849
  * <p>The name of the job template.</p>
1850
1850
  * @public
1851
1851
  */
1852
- name?: string;
1852
+ name?: string | undefined;
1853
1853
  /**
1854
1854
  * <p>The ID of the job template.</p>
1855
1855
  * @public
1856
1856
  */
1857
- id?: string;
1857
+ id?: string | undefined;
1858
1858
  /**
1859
1859
  * <p>The ARN of the job template.</p>
1860
1860
  * @public
1861
1861
  */
1862
- arn?: string;
1862
+ arn?: string | undefined;
1863
1863
  /**
1864
1864
  * <p> The date and time when the job template was created.</p>
1865
1865
  * @public
1866
1866
  */
1867
- createdAt?: Date;
1867
+ createdAt?: Date | undefined;
1868
1868
  /**
1869
1869
  * <p> The user who created the job template.</p>
1870
1870
  * @public
1871
1871
  */
1872
- createdBy?: string;
1872
+ createdBy?: string | undefined;
1873
1873
  /**
1874
1874
  * <p>The tags assigned to the job template.</p>
1875
1875
  * @public
1876
1876
  */
1877
- tags?: Record<string, string>;
1877
+ tags?: Record<string, string> | undefined;
1878
1878
  /**
1879
1879
  * <p>The job template data which holds values of StartJobRun API request.</p>
1880
1880
  * @public
@@ -1884,12 +1884,12 @@ export interface JobTemplate {
1884
1884
  * <p> The KMS key ARN used to encrypt the job template.</p>
1885
1885
  * @public
1886
1886
  */
1887
- kmsKeyArn?: string;
1887
+ kmsKeyArn?: string | undefined;
1888
1888
  /**
1889
1889
  * <p>The error message in case the decryption of job template fails.</p>
1890
1890
  * @public
1891
1891
  */
1892
- decryptionError?: string;
1892
+ decryptionError?: string | undefined;
1893
1893
  }
1894
1894
  /**
1895
1895
  * @public
@@ -1899,7 +1899,7 @@ export interface DescribeJobTemplateResponse {
1899
1899
  * <p>This output displays information about the specified job template.</p>
1900
1900
  * @public
1901
1901
  */
1902
- jobTemplate?: JobTemplate;
1902
+ jobTemplate?: JobTemplate | undefined;
1903
1903
  }
1904
1904
  /**
1905
1905
  * @public
@@ -1909,12 +1909,12 @@ export interface ListJobRunsResponse {
1909
1909
  * <p>This output lists information about the specified job runs.</p>
1910
1910
  * @public
1911
1911
  */
1912
- jobRuns?: JobRun[];
1912
+ jobRuns?: JobRun[] | undefined;
1913
1913
  /**
1914
1914
  * <p>This output displays the token for the next set of job runs.</p>
1915
1915
  * @public
1916
1916
  */
1917
- nextToken?: string;
1917
+ nextToken?: string | undefined;
1918
1918
  }
1919
1919
  /**
1920
1920
  * @public
@@ -1924,12 +1924,12 @@ export interface ListManagedEndpointsResponse {
1924
1924
  * <p>The managed endpoints to be listed.</p>
1925
1925
  * @public
1926
1926
  */
1927
- endpoints?: Endpoint[];
1927
+ endpoints?: Endpoint[] | undefined;
1928
1928
  /**
1929
1929
  * <p> The token for the next set of endpoints to return. </p>
1930
1930
  * @public
1931
1931
  */
1932
- nextToken?: string;
1932
+ nextToken?: string | undefined;
1933
1933
  }
1934
1934
  /**
1935
1935
  * @public
@@ -1939,12 +1939,12 @@ export interface ListJobTemplatesResponse {
1939
1939
  * <p>This output lists information about the specified job templates.</p>
1940
1940
  * @public
1941
1941
  */
1942
- templates?: JobTemplate[];
1942
+ templates?: JobTemplate[] | undefined;
1943
1943
  /**
1944
1944
  * <p> This output displays the token for the next set of job templates.</p>
1945
1945
  * @public
1946
1946
  */
1947
- nextToken?: string;
1947
+ nextToken?: string | undefined;
1948
1948
  }
1949
1949
  /**
1950
1950
  * @internal