@aws-sdk/client-glue 3.687.0 → 3.692.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.
@@ -56,17 +56,17 @@ export interface CancelMLTaskRunResponse {
56
56
  * <p>The unique identifier of the machine learning transform.</p>
57
57
  * @public
58
58
  */
59
- TransformId?: string;
59
+ TransformId?: string | undefined;
60
60
  /**
61
61
  * <p>The unique identifier for the task run.</p>
62
62
  * @public
63
63
  */
64
- TaskRunId?: string;
64
+ TaskRunId?: string | undefined;
65
65
  /**
66
66
  * <p>The status for this run.</p>
67
67
  * @public
68
68
  */
69
- Status?: TaskStatusType;
69
+ Status?: TaskStatusType | undefined;
70
70
  }
71
71
  /**
72
72
  * @public
@@ -86,7 +86,7 @@ export interface CancelStatementRequest {
86
86
  * <p>The origin of the request to cancel the statement.</p>
87
87
  * @public
88
88
  */
89
- RequestOrigin?: string;
89
+ RequestOrigin?: string | undefined;
90
90
  }
91
91
  /**
92
92
  * @public
@@ -104,7 +104,7 @@ export declare class IllegalSessionStateException extends __BaseException {
104
104
  * <p>A message describing the problem.</p>
105
105
  * @public
106
106
  */
107
- Message?: string;
107
+ Message?: string | undefined;
108
108
  /**
109
109
  * @internal
110
110
  */
@@ -146,12 +146,12 @@ export interface CheckSchemaVersionValidityResponse {
146
146
  * <p>Return true, if the schema is valid and false otherwise.</p>
147
147
  * @public
148
148
  */
149
- Valid?: boolean;
149
+ Valid?: boolean | undefined;
150
150
  /**
151
151
  * <p>A validation failure error message.</p>
152
152
  * @public
153
153
  */
154
- Error?: string;
154
+ Error?: string | undefined;
155
155
  }
156
156
  /**
157
157
  * @public
@@ -166,7 +166,7 @@ export interface CreateBlueprintRequest {
166
166
  * <p>A description of the blueprint.</p>
167
167
  * @public
168
168
  */
169
- Description?: string;
169
+ Description?: string | undefined;
170
170
  /**
171
171
  * <p>Specifies a path in Amazon S3 where the blueprint is published.</p>
172
172
  * @public
@@ -176,7 +176,7 @@ export interface CreateBlueprintRequest {
176
176
  * <p>The tags to be applied to this blueprint.</p>
177
177
  * @public
178
178
  */
179
- Tags?: Record<string, string>;
179
+ Tags?: Record<string, string> | undefined;
180
180
  }
181
181
  /**
182
182
  * @public
@@ -186,7 +186,7 @@ export interface CreateBlueprintResponse {
186
186
  * <p>Returns the name of the blueprint that was registered.</p>
187
187
  * @public
188
188
  */
189
- Name?: string;
189
+ Name?: string | undefined;
190
190
  }
191
191
  /**
192
192
  * @public
@@ -228,47 +228,47 @@ export interface CreateCsvClassifierRequest {
228
228
  * <p>A custom symbol to denote what separates each column entry in the row.</p>
229
229
  * @public
230
230
  */
231
- Delimiter?: string;
231
+ Delimiter?: string | undefined;
232
232
  /**
233
233
  * <p>A custom symbol to denote what combines content into a single column value. Must be different from the column delimiter.</p>
234
234
  * @public
235
235
  */
236
- QuoteSymbol?: string;
236
+ QuoteSymbol?: string | undefined;
237
237
  /**
238
238
  * <p>Indicates whether the CSV file contains a header.</p>
239
239
  * @public
240
240
  */
241
- ContainsHeader?: CsvHeaderOption;
241
+ ContainsHeader?: CsvHeaderOption | undefined;
242
242
  /**
243
243
  * <p>A list of strings representing column names.</p>
244
244
  * @public
245
245
  */
246
- Header?: string[];
246
+ Header?: string[] | undefined;
247
247
  /**
248
248
  * <p>Specifies not to trim values before identifying the type of column values. The default value is true.</p>
249
249
  * @public
250
250
  */
251
- DisableValueTrimming?: boolean;
251
+ DisableValueTrimming?: boolean | undefined;
252
252
  /**
253
253
  * <p>Enables the processing of files that contain only one column.</p>
254
254
  * @public
255
255
  */
256
- AllowSingleColumn?: boolean;
256
+ AllowSingleColumn?: boolean | undefined;
257
257
  /**
258
258
  * <p>Enables the configuration of custom datatypes.</p>
259
259
  * @public
260
260
  */
261
- CustomDatatypeConfigured?: boolean;
261
+ CustomDatatypeConfigured?: boolean | undefined;
262
262
  /**
263
263
  * <p>Creates a list of supported custom datatypes.</p>
264
264
  * @public
265
265
  */
266
- CustomDatatypes?: string[];
266
+ CustomDatatypes?: string[] | undefined;
267
267
  /**
268
268
  * <p>Sets the SerDe for processing CSV in the classifier, which will be applied in the Data Catalog. Valid values are <code>OpenCSVSerDe</code>, <code>LazySimpleSerDe</code>, and <code>None</code>. You can specify the <code>None</code> value when you want the crawler to do the detection.</p>
269
269
  * @public
270
270
  */
271
- Serde?: CsvSerdeOption;
271
+ Serde?: CsvSerdeOption | undefined;
272
272
  }
273
273
  /**
274
274
  * <p>Specifies a <code>grok</code> classifier for <code>CreateClassifier</code>
@@ -296,7 +296,7 @@ export interface CreateGrokClassifierRequest {
296
296
  * <p>Optional custom grok patterns used by this classifier.</p>
297
297
  * @public
298
298
  */
299
- CustomPatterns?: string;
299
+ CustomPatterns?: string | undefined;
300
300
  }
301
301
  /**
302
302
  * <p>Specifies a JSON classifier for <code>CreateClassifier</code> to create.</p>
@@ -338,7 +338,7 @@ export interface CreateXMLClassifierRequest {
338
338
  * <code><row item_a="A" item_b="B" /></code> is not).</p>
339
339
  * @public
340
340
  */
341
- RowTag?: string;
341
+ RowTag?: string | undefined;
342
342
  }
343
343
  /**
344
344
  * @public
@@ -349,25 +349,25 @@ export interface CreateClassifierRequest {
349
349
  * to create.</p>
350
350
  * @public
351
351
  */
352
- GrokClassifier?: CreateGrokClassifierRequest;
352
+ GrokClassifier?: CreateGrokClassifierRequest | undefined;
353
353
  /**
354
354
  * <p>An <code>XMLClassifier</code> object specifying the classifier
355
355
  * to create.</p>
356
356
  * @public
357
357
  */
358
- XMLClassifier?: CreateXMLClassifierRequest;
358
+ XMLClassifier?: CreateXMLClassifierRequest | undefined;
359
359
  /**
360
360
  * <p>A <code>JsonClassifier</code> object specifying the classifier
361
361
  * to create.</p>
362
362
  * @public
363
363
  */
364
- JsonClassifier?: CreateJsonClassifierRequest;
364
+ JsonClassifier?: CreateJsonClassifierRequest | undefined;
365
365
  /**
366
366
  * <p>A <code>CsvClassifier</code> object specifying the classifier
367
367
  * to create.</p>
368
368
  * @public
369
369
  */
370
- CsvClassifier?: CreateCsvClassifierRequest;
370
+ CsvClassifier?: CreateCsvClassifierRequest | undefined;
371
371
  }
372
372
  /**
373
373
  * @public
@@ -385,7 +385,7 @@ export declare class ColumnStatisticsTaskRunningException extends __BaseExceptio
385
385
  * <p>A message describing the problem.</p>
386
386
  * @public
387
387
  */
388
- Message?: string;
388
+ Message?: string | undefined;
389
389
  /**
390
390
  * @internal
391
391
  */
@@ -414,32 +414,32 @@ export interface CreateColumnStatisticsTaskSettingsRequest {
414
414
  * <p>A schedule for running the column statistics, specified in CRON syntax.</p>
415
415
  * @public
416
416
  */
417
- Schedule?: string;
417
+ Schedule?: string | undefined;
418
418
  /**
419
419
  * <p>A list of column names for which to run statistics.</p>
420
420
  * @public
421
421
  */
422
- ColumnNameList?: string[];
422
+ ColumnNameList?: string[] | undefined;
423
423
  /**
424
424
  * <p>The percentage of data to sample.</p>
425
425
  * @public
426
426
  */
427
- SampleSize?: number;
427
+ SampleSize?: number | undefined;
428
428
  /**
429
429
  * <p>The ID of the Data Catalog in which the database resides.</p>
430
430
  * @public
431
431
  */
432
- CatalogID?: string;
432
+ CatalogID?: string | undefined;
433
433
  /**
434
434
  * <p>Name of the security configuration that is used to encrypt CloudWatch logs.</p>
435
435
  * @public
436
436
  */
437
- SecurityConfiguration?: string;
437
+ SecurityConfiguration?: string | undefined;
438
438
  /**
439
439
  * <p>A map of tags.</p>
440
440
  * @public
441
441
  */
442
- Tags?: Record<string, string>;
442
+ Tags?: Record<string, string> | undefined;
443
443
  }
444
444
  /**
445
445
  * @public
@@ -532,17 +532,17 @@ export interface PhysicalConnectionRequirements {
532
532
  * <p>The subnet ID used by the connection.</p>
533
533
  * @public
534
534
  */
535
- SubnetId?: string;
535
+ SubnetId?: string | undefined;
536
536
  /**
537
537
  * <p>The security group ID list used by the connection.</p>
538
538
  * @public
539
539
  */
540
- SecurityGroupIdList?: string[];
540
+ SecurityGroupIdList?: string[] | undefined;
541
541
  /**
542
542
  * <p>The connection's Availability Zone.</p>
543
543
  * @public
544
544
  */
545
- AvailabilityZone?: string;
545
+ AvailabilityZone?: string | undefined;
546
546
  }
547
547
  /**
548
548
  * <p>A structure that is used to specify a connection to create or update.</p>
@@ -558,7 +558,7 @@ export interface ConnectionInput {
558
558
  * <p>The description of the connection.</p>
559
559
  * @public
560
560
  */
561
- Description?: string;
561
+ Description?: string | undefined;
562
562
  /**
563
563
  * <p>The type of the connection. Currently, these types are supported:</p>
564
564
  * <ul>
@@ -673,7 +673,7 @@ export interface ConnectionInput {
673
673
  * <p>A list of criteria that can be used in selecting this connection.</p>
674
674
  * @public
675
675
  */
676
- MatchCriteria?: string[];
676
+ MatchCriteria?: string[] | undefined;
677
677
  /**
678
678
  * <p>These key-value pairs define parameters for the connection.</p>
679
679
  * @public
@@ -683,22 +683,22 @@ export interface ConnectionInput {
683
683
  * <p>This field is not currently used.</p>
684
684
  * @public
685
685
  */
686
- AthenaProperties?: Record<string, string>;
686
+ AthenaProperties?: Record<string, string> | undefined;
687
687
  /**
688
688
  * <p>The physical connection requirements, such as virtual private cloud (VPC) and <code>SecurityGroup</code>, that are needed to successfully make this connection.</p>
689
689
  * @public
690
690
  */
691
- PhysicalConnectionRequirements?: PhysicalConnectionRequirements;
691
+ PhysicalConnectionRequirements?: PhysicalConnectionRequirements | undefined;
692
692
  /**
693
693
  * <p>The authentication properties of the connection. Used for a Salesforce connection.</p>
694
694
  * @public
695
695
  */
696
- AuthenticationConfiguration?: AuthenticationConfigurationInput;
696
+ AuthenticationConfiguration?: AuthenticationConfigurationInput | undefined;
697
697
  /**
698
698
  * <p>A flag to validate the credentials during create connection. Used for a Salesforce connection. Default is true. </p>
699
699
  * @public
700
700
  */
701
- ValidateCredentials?: boolean;
701
+ ValidateCredentials?: boolean | undefined;
702
702
  }
703
703
  /**
704
704
  * @public
@@ -709,7 +709,7 @@ export interface CreateConnectionRequest {
709
709
  * account ID is used by default.</p>
710
710
  * @public
711
711
  */
712
- CatalogId?: string;
712
+ CatalogId?: string | undefined;
713
713
  /**
714
714
  * <p>A <code>ConnectionInput</code> object defining the connection
715
715
  * to create.</p>
@@ -720,7 +720,7 @@ export interface CreateConnectionRequest {
720
720
  * <p>The tags you assign to the connection.</p>
721
721
  * @public
722
722
  */
723
- Tags?: Record<string, string>;
723
+ Tags?: Record<string, string> | undefined;
724
724
  }
725
725
  /**
726
726
  * @public
@@ -743,7 +743,7 @@ export interface CreateConnectionResponse {
743
743
  * <p>The status of the connection creation request. The request can take some time for certain authentication types, for example when creating an OAuth connection with token exchange over VPC.</p>
744
744
  * @public
745
745
  */
746
- CreateConnectionStatus?: ConnectionStatus;
746
+ CreateConnectionStatus?: ConnectionStatus | undefined;
747
747
  }
748
748
  /**
749
749
  * @public
@@ -765,12 +765,12 @@ export interface CreateCrawlerRequest {
765
765
  * <code>arn:aws:daylight:us-east-1::database/sometable/*</code>.</p>
766
766
  * @public
767
767
  */
768
- DatabaseName?: string;
768
+ DatabaseName?: string | undefined;
769
769
  /**
770
770
  * <p>A description of the new crawler.</p>
771
771
  * @public
772
772
  */
773
- Description?: string;
773
+ Description?: string | undefined;
774
774
  /**
775
775
  * <p>A list of collection of targets to crawl.</p>
776
776
  * @public
@@ -782,59 +782,59 @@ export interface CreateCrawlerRequest {
782
782
  * <code>cron(15 12 * * ? *)</code>.</p>
783
783
  * @public
784
784
  */
785
- Schedule?: string;
785
+ Schedule?: string | undefined;
786
786
  /**
787
787
  * <p>A list of custom classifiers that the user has registered. By default, all built-in
788
788
  * classifiers are included in a crawl, but these custom classifiers always override the default
789
789
  * classifiers for a given classification.</p>
790
790
  * @public
791
791
  */
792
- Classifiers?: string[];
792
+ Classifiers?: string[] | undefined;
793
793
  /**
794
794
  * <p>The table prefix used for catalog tables that are created.</p>
795
795
  * @public
796
796
  */
797
- TablePrefix?: string;
797
+ TablePrefix?: string | undefined;
798
798
  /**
799
799
  * <p>The policy for the crawler's update and deletion behavior.</p>
800
800
  * @public
801
801
  */
802
- SchemaChangePolicy?: SchemaChangePolicy;
802
+ SchemaChangePolicy?: SchemaChangePolicy | undefined;
803
803
  /**
804
804
  * <p>A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.</p>
805
805
  * @public
806
806
  */
807
- RecrawlPolicy?: RecrawlPolicy;
807
+ RecrawlPolicy?: RecrawlPolicy | undefined;
808
808
  /**
809
809
  * <p>Specifies data lineage configuration settings for the crawler.</p>
810
810
  * @public
811
811
  */
812
- LineageConfiguration?: LineageConfiguration;
812
+ LineageConfiguration?: LineageConfiguration | undefined;
813
813
  /**
814
814
  * <p>Specifies Lake Formation configuration settings for the crawler.</p>
815
815
  * @public
816
816
  */
817
- LakeFormationConfiguration?: LakeFormationConfiguration;
817
+ LakeFormationConfiguration?: LakeFormationConfiguration | undefined;
818
818
  /**
819
819
  * <p>Crawler configuration information. This versioned JSON
820
820
  * string allows users to specify aspects of a crawler's behavior.
821
821
  * For more information, see <a href="https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html">Setting crawler configuration options</a>.</p>
822
822
  * @public
823
823
  */
824
- Configuration?: string;
824
+ Configuration?: string | undefined;
825
825
  /**
826
826
  * <p>The name of the <code>SecurityConfiguration</code> structure to be used by this
827
827
  * crawler.</p>
828
828
  * @public
829
829
  */
830
- CrawlerSecurityConfiguration?: string;
830
+ CrawlerSecurityConfiguration?: string | undefined;
831
831
  /**
832
832
  * <p>The tags to use with this crawler request. You may use tags to limit access to the
833
833
  * crawler. For more information about tags in Glue, see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer
834
834
  * guide.</p>
835
835
  * @public
836
836
  */
837
- Tags?: Record<string, string>;
837
+ Tags?: Record<string, string> | undefined;
838
838
  }
839
839
  /**
840
840
  * @public
@@ -860,12 +860,12 @@ export interface CreateCustomEntityTypeRequest {
860
860
  * <p>If no context words are passed only a regular expression is checked.</p>
861
861
  * @public
862
862
  */
863
- ContextWords?: string[];
863
+ ContextWords?: string[] | undefined;
864
864
  /**
865
865
  * <p>A list of tags applied to the custom entity type.</p>
866
866
  * @public
867
867
  */
868
- Tags?: Record<string, string>;
868
+ Tags?: Record<string, string> | undefined;
869
869
  }
870
870
  /**
871
871
  * @public
@@ -875,7 +875,7 @@ export interface CreateCustomEntityTypeResponse {
875
875
  * <p>The name of the custom pattern you created.</p>
876
876
  * @public
877
877
  */
878
- Name?: string;
878
+ Name?: string | undefined;
879
879
  }
880
880
  /**
881
881
  * <p>The same unique identifier was associated with two different records.</p>
@@ -888,7 +888,7 @@ export declare class IdempotentParameterMismatchException extends __BaseExceptio
888
888
  * <p>A message describing the problem.</p>
889
889
  * @public
890
890
  */
891
- Message?: string;
891
+ Message?: string | undefined;
892
892
  /**
893
893
  * @internal
894
894
  */
@@ -905,7 +905,7 @@ export declare class ConcurrentModificationException extends __BaseException {
905
905
  * <p>A message describing the problem.</p>
906
906
  * @public
907
907
  */
908
- Message?: string;
908
+ Message?: string | undefined;
909
909
  /**
910
910
  * @internal
911
911
  */
@@ -939,7 +939,7 @@ export interface DataLakePrincipal {
939
939
  * <p>An identifier for the Lake Formation principal.</p>
940
940
  * @public
941
941
  */
942
- DataLakePrincipalIdentifier?: string;
942
+ DataLakePrincipalIdentifier?: string | undefined;
943
943
  }
944
944
  /**
945
945
  * <p>Permissions granted to a principal.</p>
@@ -950,12 +950,12 @@ export interface PrincipalPermissions {
950
950
  * <p>The principal who is granted permissions.</p>
951
951
  * @public
952
952
  */
953
- Principal?: DataLakePrincipal;
953
+ Principal?: DataLakePrincipal | undefined;
954
954
  /**
955
955
  * <p>The permissions that are granted to the principal.</p>
956
956
  * @public
957
957
  */
958
- Permissions?: Permission[];
958
+ Permissions?: Permission[] | undefined;
959
959
  }
960
960
  /**
961
961
  * <p>A database that points to an entity outside the Glue Data Catalog.</p>
@@ -966,12 +966,12 @@ export interface FederatedDatabase {
966
966
  * <p>A unique identifier for the federated database.</p>
967
967
  * @public
968
968
  */
969
- Identifier?: string;
969
+ Identifier?: string | undefined;
970
970
  /**
971
971
  * <p>The name of the connection to the external metastore.</p>
972
972
  * @public
973
973
  */
974
- ConnectionName?: string;
974
+ ConnectionName?: string | undefined;
975
975
  }
976
976
  /**
977
977
  * <p>A structure that describes a target database for resource linking.</p>
@@ -982,17 +982,17 @@ export interface DatabaseIdentifier {
982
982
  * <p>The ID of the Data Catalog in which the database resides.</p>
983
983
  * @public
984
984
  */
985
- CatalogId?: string;
985
+ CatalogId?: string | undefined;
986
986
  /**
987
987
  * <p>The name of the catalog database.</p>
988
988
  * @public
989
989
  */
990
- DatabaseName?: string;
990
+ DatabaseName?: string | undefined;
991
991
  /**
992
992
  * <p>Region of the target database.</p>
993
993
  * @public
994
994
  */
995
- Region?: string;
995
+ Region?: string | undefined;
996
996
  }
997
997
  /**
998
998
  * <p>The structure used to create or update a database.</p>
@@ -1009,34 +1009,34 @@ export interface DatabaseInput {
1009
1009
  * <p>A description of the database.</p>
1010
1010
  * @public
1011
1011
  */
1012
- Description?: string;
1012
+ Description?: string | undefined;
1013
1013
  /**
1014
1014
  * <p>The location of the database (for example, an HDFS path). </p>
1015
1015
  * @public
1016
1016
  */
1017
- LocationUri?: string;
1017
+ LocationUri?: string | undefined;
1018
1018
  /**
1019
1019
  * <p>These key-value pairs define parameters and properties
1020
1020
  * of the database.</p>
1021
1021
  * <p>These key-value pairs define parameters and properties of the database.</p>
1022
1022
  * @public
1023
1023
  */
1024
- Parameters?: Record<string, string>;
1024
+ Parameters?: Record<string, string> | undefined;
1025
1025
  /**
1026
1026
  * <p>Creates a set of default permissions on the table for principals. Used by Lake Formation. Not used in the normal course of Glue operations.</p>
1027
1027
  * @public
1028
1028
  */
1029
- CreateTableDefaultPermissions?: PrincipalPermissions[];
1029
+ CreateTableDefaultPermissions?: PrincipalPermissions[] | undefined;
1030
1030
  /**
1031
1031
  * <p>A <code>DatabaseIdentifier</code> structure that describes a target database for resource linking.</p>
1032
1032
  * @public
1033
1033
  */
1034
- TargetDatabase?: DatabaseIdentifier;
1034
+ TargetDatabase?: DatabaseIdentifier | undefined;
1035
1035
  /**
1036
1036
  * <p>A <code>FederatedDatabase</code> structure that references an entity outside the Glue Data Catalog.</p>
1037
1037
  * @public
1038
1038
  */
1039
- FederatedDatabase?: FederatedDatabase;
1039
+ FederatedDatabase?: FederatedDatabase | undefined;
1040
1040
  }
1041
1041
  /**
1042
1042
  * @public
@@ -1047,7 +1047,7 @@ export interface CreateDatabaseRequest {
1047
1047
  * account ID is used by default.</p>
1048
1048
  * @public
1049
1049
  */
1050
- CatalogId?: string;
1050
+ CatalogId?: string | undefined;
1051
1051
  /**
1052
1052
  * <p>The metadata for the database.</p>
1053
1053
  * @public
@@ -1057,7 +1057,7 @@ export interface CreateDatabaseRequest {
1057
1057
  * <p>The tags you assign to the database.</p>
1058
1058
  * @public
1059
1059
  */
1060
- Tags?: Record<string, string>;
1060
+ Tags?: Record<string, string> | undefined;
1061
1061
  }
1062
1062
  /**
1063
1063
  * @public
@@ -1075,12 +1075,12 @@ export declare class FederatedResourceAlreadyExistsException extends __BaseExcep
1075
1075
  * <p>The message describing the problem.</p>
1076
1076
  * @public
1077
1077
  */
1078
- Message?: string;
1078
+ Message?: string | undefined;
1079
1079
  /**
1080
1080
  * <p>The associated Glue resource already exists.</p>
1081
1081
  * @public
1082
1082
  */
1083
- AssociatedGlueResource?: string;
1083
+ AssociatedGlueResource?: string | undefined;
1084
1084
  /**
1085
1085
  * @internal
1086
1086
  */
@@ -1105,7 +1105,7 @@ export interface DataQualityTargetTable {
1105
1105
  * <p>The catalog id where the Glue table exists.</p>
1106
1106
  * @public
1107
1107
  */
1108
- CatalogId?: string;
1108
+ CatalogId?: string | undefined;
1109
1109
  }
1110
1110
  /**
1111
1111
  * @public
@@ -1120,7 +1120,7 @@ export interface CreateDataQualityRulesetRequest {
1120
1120
  * <p>A description of the data quality ruleset.</p>
1121
1121
  * @public
1122
1122
  */
1123
- Description?: string;
1123
+ Description?: string | undefined;
1124
1124
  /**
1125
1125
  * <p>A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.</p>
1126
1126
  * @public
@@ -1130,22 +1130,22 @@ export interface CreateDataQualityRulesetRequest {
1130
1130
  * <p>A list of tags applied to the data quality ruleset.</p>
1131
1131
  * @public
1132
1132
  */
1133
- Tags?: Record<string, string>;
1133
+ Tags?: Record<string, string> | undefined;
1134
1134
  /**
1135
1135
  * <p>A target table associated with the data quality ruleset.</p>
1136
1136
  * @public
1137
1137
  */
1138
- TargetTable?: DataQualityTargetTable;
1138
+ TargetTable?: DataQualityTargetTable | undefined;
1139
1139
  /**
1140
1140
  * <p>The name of the security configuration created with the data quality encryption option.</p>
1141
1141
  * @public
1142
1142
  */
1143
- DataQualitySecurityConfiguration?: string;
1143
+ DataQualitySecurityConfiguration?: string | undefined;
1144
1144
  /**
1145
1145
  * <p>Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.</p>
1146
1146
  * @public
1147
1147
  */
1148
- ClientToken?: string;
1148
+ ClientToken?: string | undefined;
1149
1149
  }
1150
1150
  /**
1151
1151
  * @public
@@ -1155,7 +1155,7 @@ export interface CreateDataQualityRulesetResponse {
1155
1155
  * <p>A unique name for the data quality ruleset.</p>
1156
1156
  * @public
1157
1157
  */
1158
- Name?: string;
1158
+ Name?: string | undefined;
1159
1159
  }
1160
1160
  /**
1161
1161
  * @public
@@ -1176,19 +1176,19 @@ export interface CreateDevEndpointRequest {
1176
1176
  * <code>DevEndpoint</code>.</p>
1177
1177
  * @public
1178
1178
  */
1179
- SecurityGroupIds?: string[];
1179
+ SecurityGroupIds?: string[] | undefined;
1180
1180
  /**
1181
1181
  * <p>The subnet ID for the new <code>DevEndpoint</code> to use.</p>
1182
1182
  * @public
1183
1183
  */
1184
- SubnetId?: string;
1184
+ SubnetId?: string | undefined;
1185
1185
  /**
1186
1186
  * <p>The public key to be used by this <code>DevEndpoint</code> for authentication. This
1187
1187
  * attribute is provided for backward compatibility because the recommended attribute to use is
1188
1188
  * public keys.</p>
1189
1189
  * @public
1190
1190
  */
1191
- PublicKey?: string;
1191
+ PublicKey?: string | undefined;
1192
1192
  /**
1193
1193
  * <p>A list of public keys to be used by the development endpoints for authentication. The use
1194
1194
  * of this attribute is preferred over a single public key because the public keys allow you to
@@ -1201,13 +1201,13 @@ export interface CreateDevEndpointRequest {
1201
1201
  * </note>
1202
1202
  * @public
1203
1203
  */
1204
- PublicKeys?: string[];
1204
+ PublicKeys?: string[] | undefined;
1205
1205
  /**
1206
1206
  * <p>The number of Glue Data Processing Units (DPUs) to allocate to this
1207
1207
  * <code>DevEndpoint</code>.</p>
1208
1208
  * @public
1209
1209
  */
1210
- NumberOfNodes?: number;
1210
+ NumberOfNodes?: number | undefined;
1211
1211
  /**
1212
1212
  * <p>The type of predefined worker that is allocated to the development endpoint. Accepts a value of Standard, G.1X, or G.2X.</p>
1213
1213
  * <ul>
@@ -1225,7 +1225,7 @@ export interface CreateDevEndpointRequest {
1225
1225
  * <code>WorkerType</code> configuration, the Spark drivers for the development endpoint will run on 4 vCPU, 16 GB of memory, and a 64 GB disk. </p>
1226
1226
  * @public
1227
1227
  */
1228
- WorkerType?: WorkerType;
1228
+ WorkerType?: WorkerType | undefined;
1229
1229
  /**
1230
1230
  * <p>Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for running your ETL scripts on development endpoints. </p>
1231
1231
  * <p>For more information about the available Glue versions and corresponding Spark and Python versions, see <a href="https://docs.aws.amazon.com/glue/latest/dg/add-job.html">Glue version</a> in the developer guide.</p>
@@ -1233,13 +1233,13 @@ export interface CreateDevEndpointRequest {
1233
1233
  * <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p>
1234
1234
  * @public
1235
1235
  */
1236
- GlueVersion?: string;
1236
+ GlueVersion?: string | undefined;
1237
1237
  /**
1238
1238
  * <p>The number of workers of a defined <code>workerType</code> that are allocated to the development endpoint.</p>
1239
1239
  * <p>The maximum number of workers you can define are 299 for <code>G.1X</code>, and 149 for <code>G.2X</code>. </p>
1240
1240
  * @public
1241
1241
  */
1242
- NumberOfWorkers?: number;
1242
+ NumberOfWorkers?: number | undefined;
1243
1243
  /**
1244
1244
  * <p>The paths to one or more Python libraries in an Amazon S3 bucket that should be loaded in
1245
1245
  * your <code>DevEndpoint</code>. Multiple values must be complete paths separated by a
@@ -1251,29 +1251,29 @@ export interface CreateDevEndpointRequest {
1251
1251
  * </note>
1252
1252
  * @public
1253
1253
  */
1254
- ExtraPythonLibsS3Path?: string;
1254
+ ExtraPythonLibsS3Path?: string | undefined;
1255
1255
  /**
1256
1256
  * <p>The path to one or more Java <code>.jar</code> files in an S3 bucket that should be loaded
1257
1257
  * in your <code>DevEndpoint</code>.</p>
1258
1258
  * @public
1259
1259
  */
1260
- ExtraJarsS3Path?: string;
1260
+ ExtraJarsS3Path?: string | undefined;
1261
1261
  /**
1262
1262
  * <p>The name of the <code>SecurityConfiguration</code> structure to be used with this
1263
1263
  * <code>DevEndpoint</code>.</p>
1264
1264
  * @public
1265
1265
  */
1266
- SecurityConfiguration?: string;
1266
+ SecurityConfiguration?: string | undefined;
1267
1267
  /**
1268
1268
  * <p>The tags to use with this DevEndpoint. You may use tags to limit access to the DevEndpoint. For more information about tags in Glue, see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer guide.</p>
1269
1269
  * @public
1270
1270
  */
1271
- Tags?: Record<string, string>;
1271
+ Tags?: Record<string, string> | undefined;
1272
1272
  /**
1273
1273
  * <p>A map of arguments used to configure the <code>DevEndpoint</code>.</p>
1274
1274
  * @public
1275
1275
  */
1276
- Arguments?: Record<string, string>;
1276
+ Arguments?: Record<string, string> | undefined;
1277
1277
  }
1278
1278
  /**
1279
1279
  * @public
@@ -1283,97 +1283,97 @@ export interface CreateDevEndpointResponse {
1283
1283
  * <p>The name assigned to the new <code>DevEndpoint</code>.</p>
1284
1284
  * @public
1285
1285
  */
1286
- EndpointName?: string;
1286
+ EndpointName?: string | undefined;
1287
1287
  /**
1288
1288
  * <p>The current status of the new <code>DevEndpoint</code>.</p>
1289
1289
  * @public
1290
1290
  */
1291
- Status?: string;
1291
+ Status?: string | undefined;
1292
1292
  /**
1293
1293
  * <p>The security groups assigned to the new <code>DevEndpoint</code>.</p>
1294
1294
  * @public
1295
1295
  */
1296
- SecurityGroupIds?: string[];
1296
+ SecurityGroupIds?: string[] | undefined;
1297
1297
  /**
1298
1298
  * <p>The subnet ID assigned to the new <code>DevEndpoint</code>.</p>
1299
1299
  * @public
1300
1300
  */
1301
- SubnetId?: string;
1301
+ SubnetId?: string | undefined;
1302
1302
  /**
1303
1303
  * <p>The Amazon Resource Name (ARN) of the role assigned to the new
1304
1304
  * <code>DevEndpoint</code>.</p>
1305
1305
  * @public
1306
1306
  */
1307
- RoleArn?: string;
1307
+ RoleArn?: string | undefined;
1308
1308
  /**
1309
1309
  * <p>The address of the YARN endpoint used by this <code>DevEndpoint</code>.</p>
1310
1310
  * @public
1311
1311
  */
1312
- YarnEndpointAddress?: string;
1312
+ YarnEndpointAddress?: string | undefined;
1313
1313
  /**
1314
1314
  * <p>The Apache Zeppelin port for the remote Apache Spark interpreter.</p>
1315
1315
  * @public
1316
1316
  */
1317
- ZeppelinRemoteSparkInterpreterPort?: number;
1317
+ ZeppelinRemoteSparkInterpreterPort?: number | undefined;
1318
1318
  /**
1319
1319
  * <p>The number of Glue Data Processing Units (DPUs) allocated to this DevEndpoint.</p>
1320
1320
  * @public
1321
1321
  */
1322
- NumberOfNodes?: number;
1322
+ NumberOfNodes?: number | undefined;
1323
1323
  /**
1324
1324
  * <p>The type of predefined worker that is allocated to the development endpoint. May be a value of Standard, G.1X, or G.2X.</p>
1325
1325
  * @public
1326
1326
  */
1327
- WorkerType?: WorkerType;
1327
+ WorkerType?: WorkerType | undefined;
1328
1328
  /**
1329
1329
  * <p>Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for running your ETL scripts on development endpoints. </p>
1330
1330
  * <p>For more information about the available Glue versions and corresponding Spark and Python versions, see <a href="https://docs.aws.amazon.com/glue/latest/dg/add-job.html">Glue version</a> in the developer guide.</p>
1331
1331
  * @public
1332
1332
  */
1333
- GlueVersion?: string;
1333
+ GlueVersion?: string | undefined;
1334
1334
  /**
1335
1335
  * <p>The number of workers of a defined <code>workerType</code> that are allocated to the development endpoint.</p>
1336
1336
  * @public
1337
1337
  */
1338
- NumberOfWorkers?: number;
1338
+ NumberOfWorkers?: number | undefined;
1339
1339
  /**
1340
1340
  * <p>The Amazon Web Services Availability Zone where this <code>DevEndpoint</code> is located.</p>
1341
1341
  * @public
1342
1342
  */
1343
- AvailabilityZone?: string;
1343
+ AvailabilityZone?: string | undefined;
1344
1344
  /**
1345
1345
  * <p>The ID of the virtual private cloud (VPC) used by this <code>DevEndpoint</code>.</p>
1346
1346
  * @public
1347
1347
  */
1348
- VpcId?: string;
1348
+ VpcId?: string | undefined;
1349
1349
  /**
1350
1350
  * <p>The paths to one or more Python libraries in an S3 bucket that will be loaded in your
1351
1351
  * <code>DevEndpoint</code>.</p>
1352
1352
  * @public
1353
1353
  */
1354
- ExtraPythonLibsS3Path?: string;
1354
+ ExtraPythonLibsS3Path?: string | undefined;
1355
1355
  /**
1356
1356
  * <p>Path to one or more Java <code>.jar</code> files in an S3 bucket that will be loaded in
1357
1357
  * your <code>DevEndpoint</code>.</p>
1358
1358
  * @public
1359
1359
  */
1360
- ExtraJarsS3Path?: string;
1360
+ ExtraJarsS3Path?: string | undefined;
1361
1361
  /**
1362
1362
  * <p>The reason for a current failure in this <code>DevEndpoint</code>.</p>
1363
1363
  * @public
1364
1364
  */
1365
- FailureReason?: string;
1365
+ FailureReason?: string | undefined;
1366
1366
  /**
1367
1367
  * <p>The name of the <code>SecurityConfiguration</code> structure being used with this
1368
1368
  * <code>DevEndpoint</code>.</p>
1369
1369
  * @public
1370
1370
  */
1371
- SecurityConfiguration?: string;
1371
+ SecurityConfiguration?: string | undefined;
1372
1372
  /**
1373
1373
  * <p>The point in time at which this <code>DevEndpoint</code> was created.</p>
1374
1374
  * @public
1375
1375
  */
1376
- CreatedTimestamp?: Date;
1376
+ CreatedTimestamp?: Date | undefined;
1377
1377
  /**
1378
1378
  * <p>The map of arguments used to configure this <code>DevEndpoint</code>.</p>
1379
1379
  * <p>Valid arguments are:</p>
@@ -1387,7 +1387,7 @@ export interface CreateDevEndpointResponse {
1387
1387
  * <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p>
1388
1388
  * @public
1389
1389
  */
1390
- Arguments?: Record<string, string>;
1390
+ Arguments?: Record<string, string> | undefined;
1391
1391
  }
1392
1392
  /**
1393
1393
  * <p>A value could not be validated.</p>
@@ -1400,7 +1400,7 @@ export declare class ValidationException extends __BaseException {
1400
1400
  * <p>A message describing the problem.</p>
1401
1401
  * @public
1402
1402
  */
1403
- Message?: string;
1403
+ Message?: string | undefined;
1404
1404
  /**
1405
1405
  * @internal
1406
1406
  */
@@ -1414,7 +1414,7 @@ export interface CreateJobResponse {
1414
1414
  * <p>The unique name that was provided for this job definition.</p>
1415
1415
  * @public
1416
1416
  */
1417
- Name?: string;
1417
+ Name?: string | undefined;
1418
1418
  }
1419
1419
  /**
1420
1420
  * <p>The parameters to configure the find matches transform.</p>
@@ -1425,7 +1425,7 @@ export interface FindMatchesParameters {
1425
1425
  * <p>The name of a column that uniquely identifies rows in the source table. Used to help identify matching records.</p>
1426
1426
  * @public
1427
1427
  */
1428
- PrimaryKeyColumnName?: string;
1428
+ PrimaryKeyColumnName?: string | undefined;
1429
1429
  /**
1430
1430
  * <p>The value selected when tuning your transform for a balance between precision and recall.
1431
1431
  * A value of 0.5 means no preference; a value of 1.0 means a bias purely for precision, and a
@@ -1436,7 +1436,7 @@ export interface FindMatchesParameters {
1436
1436
  * match.</p>
1437
1437
  * @public
1438
1438
  */
1439
- PrecisionRecallTradeoff?: number;
1439
+ PrecisionRecallTradeoff?: number | undefined;
1440
1440
  /**
1441
1441
  * <p>The value that is selected when tuning your transform for a balance between accuracy and
1442
1442
  * cost. A value of 0.5 means that the system balances accuracy and cost concerns. A value of 1.0
@@ -1448,13 +1448,13 @@ export interface FindMatchesParameters {
1448
1448
  * transform.</p>
1449
1449
  * @public
1450
1450
  */
1451
- AccuracyCostTradeoff?: number;
1451
+ AccuracyCostTradeoff?: number | undefined;
1452
1452
  /**
1453
1453
  * <p>The value to switch on or off to force the output to match the provided labels from users. If the value is <code>True</code>, the <code>find matches</code> transform forces the output to match the provided labels. The results override the normal conflation results. If the value is <code>False</code>, the <code>find matches</code> transform does not ensure all the labels provided are respected, and the results rely on the trained model.</p>
1454
1454
  * <p>Note that setting this value to true may increase the conflation execution time.</p>
1455
1455
  * @public
1456
1456
  */
1457
- EnforceProvidedLabels?: boolean;
1457
+ EnforceProvidedLabels?: boolean | undefined;
1458
1458
  }
1459
1459
  /**
1460
1460
  * @public
@@ -1483,7 +1483,7 @@ export interface TransformParameters {
1483
1483
  * <p>The parameters for the find matches algorithm.</p>
1484
1484
  * @public
1485
1485
  */
1486
- FindMatchesParameters?: FindMatchesParameters;
1486
+ FindMatchesParameters?: FindMatchesParameters | undefined;
1487
1487
  }
1488
1488
  /**
1489
1489
  * @public
@@ -1519,7 +1519,7 @@ export interface MLUserDataEncryption {
1519
1519
  * <p>The ID for the customer-provided KMS key.</p>
1520
1520
  * @public
1521
1521
  */
1522
- KmsKeyId?: string;
1522
+ KmsKeyId?: string | undefined;
1523
1523
  }
1524
1524
  /**
1525
1525
  * <p>The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.</p>
@@ -1531,12 +1531,12 @@ export interface TransformEncryption {
1531
1531
  * <p>An <code>MLUserDataEncryption</code> object containing the encryption mode and customer-provided KMS key ID.</p>
1532
1532
  * @public
1533
1533
  */
1534
- MlUserDataEncryption?: MLUserDataEncryption;
1534
+ MlUserDataEncryption?: MLUserDataEncryption | undefined;
1535
1535
  /**
1536
1536
  * <p>The name of the security configuration.</p>
1537
1537
  * @public
1538
1538
  */
1539
- TaskRunSecurityConfigurationName?: string;
1539
+ TaskRunSecurityConfigurationName?: string | undefined;
1540
1540
  }
1541
1541
  /**
1542
1542
  * @public
@@ -1552,7 +1552,7 @@ export interface CreateMLTransformRequest {
1552
1552
  * empty string.</p>
1553
1553
  * @public
1554
1554
  */
1555
- Description?: string;
1555
+ Description?: string | undefined;
1556
1556
  /**
1557
1557
  * <p>A list of Glue table definitions used by the transform.</p>
1558
1558
  * @public
@@ -1581,7 +1581,7 @@ export interface CreateMLTransformRequest {
1581
1581
  * <p>This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see <a href="https://docs.aws.amazon.com/glue/latest/dg/release-notes.html#release-notes-versions">Glue Versions</a> in the developer guide.</p>
1582
1582
  * @public
1583
1583
  */
1584
- GlueVersion?: string;
1584
+ GlueVersion?: string | undefined;
1585
1585
  /**
1586
1586
  * <p>The number of Glue data processing units (DPUs) that are allocated to task runs for this transform. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of
1587
1587
  * processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more
@@ -1608,7 +1608,7 @@ export interface CreateMLTransformRequest {
1608
1608
  * <p>When the <code>WorkerType</code> field is set to a value other than <code>Standard</code>, the <code>MaxCapacity</code> field is set automatically and becomes read-only.</p>
1609
1609
  * @public
1610
1610
  */
1611
- MaxCapacity?: number;
1611
+ MaxCapacity?: number | undefined;
1612
1612
  /**
1613
1613
  * <p>The type of predefined worker that is allocated when this task runs. Accepts a value of Standard, G.1X, or G.2X.</p>
1614
1614
  * <ul>
@@ -1641,33 +1641,33 @@ export interface CreateMLTransformRequest {
1641
1641
  * </ul>
1642
1642
  * @public
1643
1643
  */
1644
- WorkerType?: WorkerType;
1644
+ WorkerType?: WorkerType | undefined;
1645
1645
  /**
1646
1646
  * <p>The number of workers of a defined <code>workerType</code> that are allocated when this task runs.</p>
1647
1647
  * <p>If <code>WorkerType</code> is set, then <code>NumberOfWorkers</code> is required (and vice versa).</p>
1648
1648
  * @public
1649
1649
  */
1650
- NumberOfWorkers?: number;
1650
+ NumberOfWorkers?: number | undefined;
1651
1651
  /**
1652
1652
  * <p>The timeout of the task run for this transform in minutes. This is the maximum time that a task run for this transform can consume resources before it is terminated and enters <code>TIMEOUT</code> status. The default is 2,880 minutes (48 hours).</p>
1653
1653
  * @public
1654
1654
  */
1655
- Timeout?: number;
1655
+ Timeout?: number | undefined;
1656
1656
  /**
1657
1657
  * <p>The maximum number of times to retry a task for this transform after a task run fails.</p>
1658
1658
  * @public
1659
1659
  */
1660
- MaxRetries?: number;
1660
+ MaxRetries?: number | undefined;
1661
1661
  /**
1662
1662
  * <p>The tags to use with this machine learning transform. You may use tags to limit access to the machine learning transform. For more information about tags in Glue, see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer guide.</p>
1663
1663
  * @public
1664
1664
  */
1665
- Tags?: Record<string, string>;
1665
+ Tags?: Record<string, string> | undefined;
1666
1666
  /**
1667
1667
  * <p>The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.</p>
1668
1668
  * @public
1669
1669
  */
1670
- TransformEncryption?: TransformEncryption;
1670
+ TransformEncryption?: TransformEncryption | undefined;
1671
1671
  }
1672
1672
  /**
1673
1673
  * @public
@@ -1677,7 +1677,7 @@ export interface CreateMLTransformResponse {
1677
1677
  * <p>A unique identifier that is generated for the transform.</p>
1678
1678
  * @public
1679
1679
  */
1680
- TransformId?: string;
1680
+ TransformId?: string | undefined;
1681
1681
  }
1682
1682
  /**
1683
1683
  * @public
@@ -1687,7 +1687,7 @@ export interface CreatePartitionRequest {
1687
1687
  * <p>The Amazon Web Services account ID of the catalog in which the partition is to be created.</p>
1688
1688
  * @public
1689
1689
  */
1690
- CatalogId?: string;
1690
+ CatalogId?: string | undefined;
1691
1691
  /**
1692
1692
  * <p>The name of the metadata database in which the partition is
1693
1693
  * to be created.</p>
@@ -1735,7 +1735,7 @@ export interface CreatePartitionIndexRequest {
1735
1735
  * <p>The catalog ID where the table resides.</p>
1736
1736
  * @public
1737
1737
  */
1738
- CatalogId?: string;
1738
+ CatalogId?: string | undefined;
1739
1739
  /**
1740
1740
  * <p>Specifies the name of a database in which you want to create a partition index.</p>
1741
1741
  * @public
@@ -1770,12 +1770,12 @@ export interface CreateRegistryInput {
1770
1770
  * <p>A description of the registry. If description is not provided, there will not be any default value for this.</p>
1771
1771
  * @public
1772
1772
  */
1773
- Description?: string;
1773
+ Description?: string | undefined;
1774
1774
  /**
1775
1775
  * <p>Amazon Web Services tags that contain a key value pair and may be searched by console, command line, or API.</p>
1776
1776
  * @public
1777
1777
  */
1778
- Tags?: Record<string, string>;
1778
+ Tags?: Record<string, string> | undefined;
1779
1779
  }
1780
1780
  /**
1781
1781
  * @public
@@ -1785,22 +1785,22 @@ export interface CreateRegistryResponse {
1785
1785
  * <p>The Amazon Resource Name (ARN) of the newly created registry.</p>
1786
1786
  * @public
1787
1787
  */
1788
- RegistryArn?: string;
1788
+ RegistryArn?: string | undefined;
1789
1789
  /**
1790
1790
  * <p>The name of the registry.</p>
1791
1791
  * @public
1792
1792
  */
1793
- RegistryName?: string;
1793
+ RegistryName?: string | undefined;
1794
1794
  /**
1795
1795
  * <p>A description of the registry.</p>
1796
1796
  * @public
1797
1797
  */
1798
- Description?: string;
1798
+ Description?: string | undefined;
1799
1799
  /**
1800
1800
  * <p>The tags for the registry.</p>
1801
1801
  * @public
1802
1802
  */
1803
- Tags?: Record<string, string>;
1803
+ Tags?: Record<string, string> | undefined;
1804
1804
  }
1805
1805
  /**
1806
1806
  * @public
@@ -1829,12 +1829,12 @@ export interface RegistryId {
1829
1829
  * <p>Name of the registry. Used only for lookup. One of <code>RegistryArn</code> or <code>RegistryName</code> has to be provided. </p>
1830
1830
  * @public
1831
1831
  */
1832
- RegistryName?: string;
1832
+ RegistryName?: string | undefined;
1833
1833
  /**
1834
1834
  * <p>Arn of the registry to be updated. One of <code>RegistryArn</code> or <code>RegistryName</code> has to be provided.</p>
1835
1835
  * @public
1836
1836
  */
1837
- RegistryArn?: string;
1837
+ RegistryArn?: string | undefined;
1838
1838
  }
1839
1839
  /**
1840
1840
  * @public
@@ -1844,7 +1844,7 @@ export interface CreateSchemaInput {
1844
1844
  * <p> This is a wrapper shape to contain the registry identity fields. If this is not provided, the default registry will be used. The ARN format for the same will be: <code>arn:aws:glue:us-east-2:<customer id>:registry/default-registry:random-5-letter-id</code>.</p>
1845
1845
  * @public
1846
1846
  */
1847
- RegistryId?: RegistryId;
1847
+ RegistryId?: RegistryId | undefined;
1848
1848
  /**
1849
1849
  * <p>Name of the schema to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.</p>
1850
1850
  * @public
@@ -1893,22 +1893,22 @@ export interface CreateSchemaInput {
1893
1893
  * </ul>
1894
1894
  * @public
1895
1895
  */
1896
- Compatibility?: Compatibility;
1896
+ Compatibility?: Compatibility | undefined;
1897
1897
  /**
1898
1898
  * <p>An optional description of the schema. If description is not provided, there will not be any automatic default value for this.</p>
1899
1899
  * @public
1900
1900
  */
1901
- Description?: string;
1901
+ Description?: string | undefined;
1902
1902
  /**
1903
1903
  * <p>Amazon Web Services tags that contain a key value pair and may be searched by console, command line, or API. If specified, follows the Amazon Web Services tags-on-create pattern.</p>
1904
1904
  * @public
1905
1905
  */
1906
- Tags?: Record<string, string>;
1906
+ Tags?: Record<string, string> | undefined;
1907
1907
  /**
1908
1908
  * <p>The schema definition using the <code>DataFormat</code> setting for <code>SchemaName</code>.</p>
1909
1909
  * @public
1910
1910
  */
1911
- SchemaDefinition?: string;
1911
+ SchemaDefinition?: string | undefined;
1912
1912
  }
1913
1913
  /**
1914
1914
  * @public
@@ -1945,72 +1945,72 @@ export interface CreateSchemaResponse {
1945
1945
  * <p>The name of the registry.</p>
1946
1946
  * @public
1947
1947
  */
1948
- RegistryName?: string;
1948
+ RegistryName?: string | undefined;
1949
1949
  /**
1950
1950
  * <p>The Amazon Resource Name (ARN) of the registry.</p>
1951
1951
  * @public
1952
1952
  */
1953
- RegistryArn?: string;
1953
+ RegistryArn?: string | undefined;
1954
1954
  /**
1955
1955
  * <p>The name of the schema.</p>
1956
1956
  * @public
1957
1957
  */
1958
- SchemaName?: string;
1958
+ SchemaName?: string | undefined;
1959
1959
  /**
1960
1960
  * <p>The Amazon Resource Name (ARN) of the schema.</p>
1961
1961
  * @public
1962
1962
  */
1963
- SchemaArn?: string;
1963
+ SchemaArn?: string | undefined;
1964
1964
  /**
1965
1965
  * <p>A description of the schema if specified when created.</p>
1966
1966
  * @public
1967
1967
  */
1968
- Description?: string;
1968
+ Description?: string | undefined;
1969
1969
  /**
1970
1970
  * <p>The data format of the schema definition. Currently <code>AVRO</code>, <code>JSON</code> and <code>PROTOBUF</code> are supported.</p>
1971
1971
  * @public
1972
1972
  */
1973
- DataFormat?: DataFormat;
1973
+ DataFormat?: DataFormat | undefined;
1974
1974
  /**
1975
1975
  * <p>The schema compatibility mode.</p>
1976
1976
  * @public
1977
1977
  */
1978
- Compatibility?: Compatibility;
1978
+ Compatibility?: Compatibility | undefined;
1979
1979
  /**
1980
1980
  * <p>The version number of the checkpoint (the last time the compatibility mode was changed).</p>
1981
1981
  * @public
1982
1982
  */
1983
- SchemaCheckpoint?: number;
1983
+ SchemaCheckpoint?: number | undefined;
1984
1984
  /**
1985
1985
  * <p>The latest version of the schema associated with the returned schema definition.</p>
1986
1986
  * @public
1987
1987
  */
1988
- LatestSchemaVersion?: number;
1988
+ LatestSchemaVersion?: number | undefined;
1989
1989
  /**
1990
1990
  * <p>The next version of the schema associated with the returned schema definition.</p>
1991
1991
  * @public
1992
1992
  */
1993
- NextSchemaVersion?: number;
1993
+ NextSchemaVersion?: number | undefined;
1994
1994
  /**
1995
1995
  * <p>The status of the schema. </p>
1996
1996
  * @public
1997
1997
  */
1998
- SchemaStatus?: SchemaStatus;
1998
+ SchemaStatus?: SchemaStatus | undefined;
1999
1999
  /**
2000
2000
  * <p>The tags for the schema.</p>
2001
2001
  * @public
2002
2002
  */
2003
- Tags?: Record<string, string>;
2003
+ Tags?: Record<string, string> | undefined;
2004
2004
  /**
2005
2005
  * <p>The unique identifier of the first schema version.</p>
2006
2006
  * @public
2007
2007
  */
2008
- SchemaVersionId?: string;
2008
+ SchemaVersionId?: string | undefined;
2009
2009
  /**
2010
2010
  * <p>The status of the first schema version created.</p>
2011
2011
  * @public
2012
2012
  */
2013
- SchemaVersionStatus?: SchemaVersionStatus;
2013
+ SchemaVersionStatus?: SchemaVersionStatus | undefined;
2014
2014
  }
2015
2015
  /**
2016
2016
  * <p>Represents a directional edge in a directed acyclic graph (DAG).</p>
@@ -2031,7 +2031,7 @@ export interface CodeGenEdge {
2031
2031
  * <p>The target of the edge.</p>
2032
2032
  * @public
2033
2033
  */
2034
- TargetParameter?: string;
2034
+ TargetParameter?: string | undefined;
2035
2035
  }
2036
2036
  /**
2037
2037
  * <p>An argument or property of a node.</p>
@@ -2052,7 +2052,7 @@ export interface CodeGenNodeArg {
2052
2052
  * <p>True if the value is used as a parameter.</p>
2053
2053
  * @public
2054
2054
  */
2055
- Param?: boolean;
2055
+ Param?: boolean | undefined;
2056
2056
  }
2057
2057
  /**
2058
2058
  * <p>Represents a node in a directed acyclic graph (DAG)</p>
@@ -2078,7 +2078,7 @@ export interface CodeGenNode {
2078
2078
  * <p>The line number of the node.</p>
2079
2079
  * @public
2080
2080
  */
2081
- LineNumber?: number;
2081
+ LineNumber?: number | undefined;
2082
2082
  }
2083
2083
  /**
2084
2084
  * @public
@@ -2100,17 +2100,17 @@ export interface CreateScriptRequest {
2100
2100
  * <p>A list of the nodes in the DAG.</p>
2101
2101
  * @public
2102
2102
  */
2103
- DagNodes?: CodeGenNode[];
2103
+ DagNodes?: CodeGenNode[] | undefined;
2104
2104
  /**
2105
2105
  * <p>A list of the edges in the DAG.</p>
2106
2106
  * @public
2107
2107
  */
2108
- DagEdges?: CodeGenEdge[];
2108
+ DagEdges?: CodeGenEdge[] | undefined;
2109
2109
  /**
2110
2110
  * <p>The programming language of the resulting code from the DAG.</p>
2111
2111
  * @public
2112
2112
  */
2113
- Language?: Language;
2113
+ Language?: Language | undefined;
2114
2114
  }
2115
2115
  /**
2116
2116
  * @public
@@ -2120,12 +2120,12 @@ export interface CreateScriptResponse {
2120
2120
  * <p>The Python script generated from the DAG.</p>
2121
2121
  * @public
2122
2122
  */
2123
- PythonScript?: string;
2123
+ PythonScript?: string | undefined;
2124
2124
  /**
2125
2125
  * <p>The Scala code generated from the DAG.</p>
2126
2126
  * @public
2127
2127
  */
2128
- ScalaCode?: string;
2128
+ ScalaCode?: string | undefined;
2129
2129
  }
2130
2130
  /**
2131
2131
  * @public
@@ -2148,12 +2148,12 @@ export interface CloudWatchEncryption {
2148
2148
  * <p>The encryption mode to use for CloudWatch data.</p>
2149
2149
  * @public
2150
2150
  */
2151
- CloudWatchEncryptionMode?: CloudWatchEncryptionMode;
2151
+ CloudWatchEncryptionMode?: CloudWatchEncryptionMode | undefined;
2152
2152
  /**
2153
2153
  * <p>The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.</p>
2154
2154
  * @public
2155
2155
  */
2156
- KmsKeyArn?: string;
2156
+ KmsKeyArn?: string | undefined;
2157
2157
  }
2158
2158
  /**
2159
2159
  * @public
@@ -2176,12 +2176,12 @@ export interface JobBookmarksEncryption {
2176
2176
  * <p>The encryption mode to use for job bookmarks data.</p>
2177
2177
  * @public
2178
2178
  */
2179
- JobBookmarksEncryptionMode?: JobBookmarksEncryptionMode;
2179
+ JobBookmarksEncryptionMode?: JobBookmarksEncryptionMode | undefined;
2180
2180
  /**
2181
2181
  * <p>The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.</p>
2182
2182
  * @public
2183
2183
  */
2184
- KmsKeyArn?: string;
2184
+ KmsKeyArn?: string | undefined;
2185
2185
  }
2186
2186
  /**
2187
2187
  * @public
@@ -2205,12 +2205,12 @@ export interface S3Encryption {
2205
2205
  * <p>The encryption mode to use for Amazon S3 data.</p>
2206
2206
  * @public
2207
2207
  */
2208
- S3EncryptionMode?: S3EncryptionMode;
2208
+ S3EncryptionMode?: S3EncryptionMode | undefined;
2209
2209
  /**
2210
2210
  * <p>The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.</p>
2211
2211
  * @public
2212
2212
  */
2213
- KmsKeyArn?: string;
2213
+ KmsKeyArn?: string | undefined;
2214
2214
  }
2215
2215
  /**
2216
2216
  * <p>Specifies an encryption configuration.</p>
@@ -2221,17 +2221,17 @@ export interface EncryptionConfiguration {
2221
2221
  * <p>The encryption configuration for Amazon Simple Storage Service (Amazon S3) data.</p>
2222
2222
  * @public
2223
2223
  */
2224
- S3Encryption?: S3Encryption[];
2224
+ S3Encryption?: S3Encryption[] | undefined;
2225
2225
  /**
2226
2226
  * <p>The encryption configuration for Amazon CloudWatch.</p>
2227
2227
  * @public
2228
2228
  */
2229
- CloudWatchEncryption?: CloudWatchEncryption;
2229
+ CloudWatchEncryption?: CloudWatchEncryption | undefined;
2230
2230
  /**
2231
2231
  * <p>The encryption configuration for job bookmarks.</p>
2232
2232
  * @public
2233
2233
  */
2234
- JobBookmarksEncryption?: JobBookmarksEncryption;
2234
+ JobBookmarksEncryption?: JobBookmarksEncryption | undefined;
2235
2235
  }
2236
2236
  /**
2237
2237
  * @public
@@ -2256,12 +2256,12 @@ export interface CreateSecurityConfigurationResponse {
2256
2256
  * <p>The name assigned to the new security configuration.</p>
2257
2257
  * @public
2258
2258
  */
2259
- Name?: string;
2259
+ Name?: string | undefined;
2260
2260
  /**
2261
2261
  * <p>The time at which the new security configuration was created.</p>
2262
2262
  * @public
2263
2263
  */
2264
- CreatedTimestamp?: Date;
2264
+ CreatedTimestamp?: Date | undefined;
2265
2265
  }
2266
2266
  /**
2267
2267
  * <p>The <code>SessionCommand</code> that runs the job.</p>
@@ -2272,12 +2272,12 @@ export interface SessionCommand {
2272
2272
  * <p>Specifies the name of the SessionCommand. Can be 'glueetl' or 'gluestreaming'.</p>
2273
2273
  * @public
2274
2274
  */
2275
- Name?: string;
2275
+ Name?: string | undefined;
2276
2276
  /**
2277
2277
  * <p>Specifies the Python version. The Python version indicates the version supported for jobs of type Spark.</p>
2278
2278
  * @public
2279
2279
  */
2280
- PythonVersion?: string;
2280
+ PythonVersion?: string | undefined;
2281
2281
  }
2282
2282
  /**
2283
2283
  * <p>Request to create a new session.</p>
@@ -2293,7 +2293,7 @@ export interface CreateSessionRequest {
2293
2293
  * <p>The description of the session. </p>
2294
2294
  * @public
2295
2295
  */
2296
- Description?: string;
2296
+ Description?: string | undefined;
2297
2297
  /**
2298
2298
  * <p>The IAM Role ARN </p>
2299
2299
  * @public
@@ -2312,7 +2312,7 @@ export interface CreateSessionRequest {
2312
2312
  * </p>
2313
2313
  * @public
2314
2314
  */
2315
- Timeout?: number;
2315
+ Timeout?: number | undefined;
2316
2316
  /**
2317
2317
  * <p>
2318
2318
  * The number of minutes when idle before session times out. Default for
@@ -2321,28 +2321,28 @@ export interface CreateSessionRequest {
2321
2321
  * </p>
2322
2322
  * @public
2323
2323
  */
2324
- IdleTimeout?: number;
2324
+ IdleTimeout?: number | undefined;
2325
2325
  /**
2326
2326
  * <p>A map array of key-value pairs. Max is 75 pairs. </p>
2327
2327
  * @public
2328
2328
  */
2329
- DefaultArguments?: Record<string, string>;
2329
+ DefaultArguments?: Record<string, string> | undefined;
2330
2330
  /**
2331
2331
  * <p>The number of connections to use for the session. </p>
2332
2332
  * @public
2333
2333
  */
2334
- Connections?: ConnectionsList;
2334
+ Connections?: ConnectionsList | undefined;
2335
2335
  /**
2336
2336
  * <p>The number of Glue data processing units (DPUs) that can be allocated when the job runs.
2337
2337
  * A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB memory. </p>
2338
2338
  * @public
2339
2339
  */
2340
- MaxCapacity?: number;
2340
+ MaxCapacity?: number | undefined;
2341
2341
  /**
2342
2342
  * <p>The number of workers of a defined <code>WorkerType</code> to use for the session. </p>
2343
2343
  * @public
2344
2344
  */
2345
- NumberOfWorkers?: number;
2345
+ NumberOfWorkers?: number | undefined;
2346
2346
  /**
2347
2347
  * <p>The type of predefined worker that is allocated when a job runs. Accepts a value of
2348
2348
  * G.1X, G.2X, G.4X, or G.8X for Spark jobs. Accepts the value Z.2X for Ray notebooks.</p>
@@ -2365,28 +2365,28 @@ export interface CreateSessionRequest {
2365
2365
  * </ul>
2366
2366
  * @public
2367
2367
  */
2368
- WorkerType?: WorkerType;
2368
+ WorkerType?: WorkerType | undefined;
2369
2369
  /**
2370
2370
  * <p>The name of the SecurityConfiguration structure to be used with the session </p>
2371
2371
  * @public
2372
2372
  */
2373
- SecurityConfiguration?: string;
2373
+ SecurityConfiguration?: string | undefined;
2374
2374
  /**
2375
2375
  * <p>The Glue version determines the versions of Apache Spark and Python that Glue supports.
2376
2376
  * The GlueVersion must be greater than 2.0. </p>
2377
2377
  * @public
2378
2378
  */
2379
- GlueVersion?: string;
2379
+ GlueVersion?: string | undefined;
2380
2380
  /**
2381
2381
  * <p>The map of key value pairs (tags) belonging to the session.</p>
2382
2382
  * @public
2383
2383
  */
2384
- Tags?: Record<string, string>;
2384
+ Tags?: Record<string, string> | undefined;
2385
2385
  /**
2386
2386
  * <p>The origin of the request. </p>
2387
2387
  * @public
2388
2388
  */
2389
- RequestOrigin?: string;
2389
+ RequestOrigin?: string | undefined;
2390
2390
  }
2391
2391
  /**
2392
2392
  * @public
@@ -2413,104 +2413,104 @@ export interface Session {
2413
2413
  * <p>The ID of the session.</p>
2414
2414
  * @public
2415
2415
  */
2416
- Id?: string;
2416
+ Id?: string | undefined;
2417
2417
  /**
2418
2418
  * <p>The time and date when the session was created.</p>
2419
2419
  * @public
2420
2420
  */
2421
- CreatedOn?: Date;
2421
+ CreatedOn?: Date | undefined;
2422
2422
  /**
2423
2423
  * <p>The session status. </p>
2424
2424
  * @public
2425
2425
  */
2426
- Status?: SessionStatus;
2426
+ Status?: SessionStatus | undefined;
2427
2427
  /**
2428
2428
  * <p>The error message displayed during the session.</p>
2429
2429
  * @public
2430
2430
  */
2431
- ErrorMessage?: string;
2431
+ ErrorMessage?: string | undefined;
2432
2432
  /**
2433
2433
  * <p>The description of the session.</p>
2434
2434
  * @public
2435
2435
  */
2436
- Description?: string;
2436
+ Description?: string | undefined;
2437
2437
  /**
2438
2438
  * <p>The name or Amazon Resource Name (ARN) of the IAM role associated with the Session.</p>
2439
2439
  * @public
2440
2440
  */
2441
- Role?: string;
2441
+ Role?: string | undefined;
2442
2442
  /**
2443
2443
  * <p>The command object.See SessionCommand.</p>
2444
2444
  * @public
2445
2445
  */
2446
- Command?: SessionCommand;
2446
+ Command?: SessionCommand | undefined;
2447
2447
  /**
2448
2448
  * <p>A map array of key-value pairs. Max is 75 pairs. </p>
2449
2449
  * @public
2450
2450
  */
2451
- DefaultArguments?: Record<string, string>;
2451
+ DefaultArguments?: Record<string, string> | undefined;
2452
2452
  /**
2453
2453
  * <p>The number of connections used for the session.</p>
2454
2454
  * @public
2455
2455
  */
2456
- Connections?: ConnectionsList;
2456
+ Connections?: ConnectionsList | undefined;
2457
2457
  /**
2458
2458
  * <p>The code execution progress of the session.</p>
2459
2459
  * @public
2460
2460
  */
2461
- Progress?: number;
2461
+ Progress?: number | undefined;
2462
2462
  /**
2463
2463
  * <p>The number of Glue data processing units (DPUs) that can be allocated when the job runs.
2464
2464
  * A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB memory. </p>
2465
2465
  * @public
2466
2466
  */
2467
- MaxCapacity?: number;
2467
+ MaxCapacity?: number | undefined;
2468
2468
  /**
2469
2469
  * <p>The name of the SecurityConfiguration structure to be used with the session.</p>
2470
2470
  * @public
2471
2471
  */
2472
- SecurityConfiguration?: string;
2472
+ SecurityConfiguration?: string | undefined;
2473
2473
  /**
2474
2474
  * <p>The Glue version determines the versions of Apache Spark and Python that Glue supports.
2475
2475
  * The GlueVersion must be greater than 2.0.</p>
2476
2476
  * @public
2477
2477
  */
2478
- GlueVersion?: string;
2478
+ GlueVersion?: string | undefined;
2479
2479
  /**
2480
2480
  * <p>The number of workers of a defined <code>WorkerType</code> to use for the session.</p>
2481
2481
  * @public
2482
2482
  */
2483
- NumberOfWorkers?: number;
2483
+ NumberOfWorkers?: number | undefined;
2484
2484
  /**
2485
2485
  * <p>The type of predefined worker that is allocated when a session runs. Accepts a value of <code>G.1X</code>, <code>G.2X</code>, <code>G.4X</code>, or <code>G.8X</code> for Spark sessions. Accepts the value <code>Z.2X</code> for Ray sessions.</p>
2486
2486
  * @public
2487
2487
  */
2488
- WorkerType?: WorkerType;
2488
+ WorkerType?: WorkerType | undefined;
2489
2489
  /**
2490
2490
  * <p>The date and time that this session is completed.</p>
2491
2491
  * @public
2492
2492
  */
2493
- CompletedOn?: Date;
2493
+ CompletedOn?: Date | undefined;
2494
2494
  /**
2495
2495
  * <p>The total time the session ran for.</p>
2496
2496
  * @public
2497
2497
  */
2498
- ExecutionTime?: number;
2498
+ ExecutionTime?: number | undefined;
2499
2499
  /**
2500
2500
  * <p>The DPUs consumed by the session (formula: ExecutionTime * MaxCapacity).</p>
2501
2501
  * @public
2502
2502
  */
2503
- DPUSeconds?: number;
2503
+ DPUSeconds?: number | undefined;
2504
2504
  /**
2505
2505
  * <p>The number of minutes when idle before the session times out.</p>
2506
2506
  * @public
2507
2507
  */
2508
- IdleTimeout?: number;
2508
+ IdleTimeout?: number | undefined;
2509
2509
  /**
2510
2510
  * <p>The name of an Glue usage profile associated with the session.</p>
2511
2511
  * @public
2512
2512
  */
2513
- ProfileName?: string;
2513
+ ProfileName?: string | undefined;
2514
2514
  }
2515
2515
  /**
2516
2516
  * @public
@@ -2520,7 +2520,7 @@ export interface CreateSessionResponse {
2520
2520
  * <p>Returns the session object in the response.</p>
2521
2521
  * @public
2522
2522
  */
2523
- Session?: Session;
2523
+ Session?: Session | undefined;
2524
2524
  }
2525
2525
  /**
2526
2526
  * @public
@@ -2547,7 +2547,7 @@ export interface IcebergInput {
2547
2547
  * <p>The table version for the Iceberg table. Defaults to 2.</p>
2548
2548
  * @public
2549
2549
  */
2550
- Version?: string;
2550
+ Version?: string | undefined;
2551
2551
  }
2552
2552
  /**
2553
2553
  * <p>A structure representing an open format table.</p>
@@ -2558,7 +2558,7 @@ export interface OpenTableFormatInput {
2558
2558
  * <p>Specifies an <code>IcebergInput</code> structure that defines an Apache Iceberg metadata table.</p>
2559
2559
  * @public
2560
2560
  */
2561
- IcebergInput?: IcebergInput;
2561
+ IcebergInput?: IcebergInput | undefined;
2562
2562
  }
2563
2563
  /**
2564
2564
  * <p>A structure that describes a target table for resource linking.</p>
@@ -2569,22 +2569,22 @@ export interface TableIdentifier {
2569
2569
  * <p>The ID of the Data Catalog in which the table resides.</p>
2570
2570
  * @public
2571
2571
  */
2572
- CatalogId?: string;
2572
+ CatalogId?: string | undefined;
2573
2573
  /**
2574
2574
  * <p>The name of the catalog database that contains the target table.</p>
2575
2575
  * @public
2576
2576
  */
2577
- DatabaseName?: string;
2577
+ DatabaseName?: string | undefined;
2578
2578
  /**
2579
2579
  * <p>The name of the target table.</p>
2580
2580
  * @public
2581
2581
  */
2582
- Name?: string;
2582
+ Name?: string | undefined;
2583
2583
  /**
2584
2584
  * <p>Region of the target table.</p>
2585
2585
  * @public
2586
2586
  */
2587
- Region?: string;
2587
+ Region?: string | undefined;
2588
2588
  }
2589
2589
  /**
2590
2590
  * @public
@@ -2608,27 +2608,27 @@ export interface ViewRepresentationInput {
2608
2608
  * <p>A parameter that specifies the engine type of a specific representation.</p>
2609
2609
  * @public
2610
2610
  */
2611
- Dialect?: ViewDialect;
2611
+ Dialect?: ViewDialect | undefined;
2612
2612
  /**
2613
2613
  * <p>A parameter that specifies the version of the engine of a specific representation.</p>
2614
2614
  * @public
2615
2615
  */
2616
- DialectVersion?: string;
2616
+ DialectVersion?: string | undefined;
2617
2617
  /**
2618
2618
  * <p>A string that represents the original SQL query that describes the view.</p>
2619
2619
  * @public
2620
2620
  */
2621
- ViewOriginalText?: string;
2621
+ ViewOriginalText?: string | undefined;
2622
2622
  /**
2623
2623
  * <p>The name of the connection to be used to validate the specific representation of the view.</p>
2624
2624
  * @public
2625
2625
  */
2626
- ValidationConnection?: string;
2626
+ ValidationConnection?: string | undefined;
2627
2627
  /**
2628
2628
  * <p>A string that represents the SQL query that describes the view with expanded resource ARNs</p>
2629
2629
  * @public
2630
2630
  */
2631
- ViewExpandedText?: string;
2631
+ ViewExpandedText?: string | undefined;
2632
2632
  }
2633
2633
  /**
2634
2634
  * <p>A structure containing details for creating or updating an Glue view.</p>
@@ -2639,22 +2639,22 @@ export interface ViewDefinitionInput {
2639
2639
  * <p>You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.</p>
2640
2640
  * @public
2641
2641
  */
2642
- IsProtected?: boolean;
2642
+ IsProtected?: boolean | undefined;
2643
2643
  /**
2644
2644
  * <p>The definer of a view in SQL.</p>
2645
2645
  * @public
2646
2646
  */
2647
- Definer?: string;
2647
+ Definer?: string | undefined;
2648
2648
  /**
2649
2649
  * <p>A list of structures that contains the dialect of the view, and the query that defines the view.</p>
2650
2650
  * @public
2651
2651
  */
2652
- Representations?: ViewRepresentationInput[];
2652
+ Representations?: ViewRepresentationInput[] | undefined;
2653
2653
  /**
2654
2654
  * <p>A list of base table ARNs that make up the view.</p>
2655
2655
  * @public
2656
2656
  */
2657
- SubObjects?: string[];
2657
+ SubObjects?: string[] | undefined;
2658
2658
  }
2659
2659
  /**
2660
2660
  * <p>A structure used to define a table.</p>
@@ -2671,33 +2671,33 @@ export interface TableInput {
2671
2671
  * <p>A description of the table.</p>
2672
2672
  * @public
2673
2673
  */
2674
- Description?: string;
2674
+ Description?: string | undefined;
2675
2675
  /**
2676
2676
  * <p>The table owner. Included for Apache Hive compatibility. Not used in the normal course of Glue operations.</p>
2677
2677
  * @public
2678
2678
  */
2679
- Owner?: string;
2679
+ Owner?: string | undefined;
2680
2680
  /**
2681
2681
  * <p>The last time that the table was accessed.</p>
2682
2682
  * @public
2683
2683
  */
2684
- LastAccessTime?: Date;
2684
+ LastAccessTime?: Date | undefined;
2685
2685
  /**
2686
2686
  * <p>The last time that column statistics were computed for this table.</p>
2687
2687
  * @public
2688
2688
  */
2689
- LastAnalyzedTime?: Date;
2689
+ LastAnalyzedTime?: Date | undefined;
2690
2690
  /**
2691
2691
  * <p>The retention time for this table.</p>
2692
2692
  * @public
2693
2693
  */
2694
- Retention?: number;
2694
+ Retention?: number | undefined;
2695
2695
  /**
2696
2696
  * <p>A storage descriptor containing information about the physical storage
2697
2697
  * of this table.</p>
2698
2698
  * @public
2699
2699
  */
2700
- StorageDescriptor?: StorageDescriptor;
2700
+ StorageDescriptor?: StorageDescriptor | undefined;
2701
2701
  /**
2702
2702
  * <p>A list of columns by which the table is partitioned. Only primitive
2703
2703
  * types are supported as partition keys.</p>
@@ -2709,18 +2709,18 @@ export interface TableInput {
2709
2709
  * </p>
2710
2710
  * @public
2711
2711
  */
2712
- PartitionKeys?: Column[];
2712
+ PartitionKeys?: Column[] | undefined;
2713
2713
  /**
2714
2714
  * <p>Included for Apache Hive compatibility. Not used in the normal course of Glue operations.
2715
2715
  * If the table is a <code>VIRTUAL_VIEW</code>, certain Athena configuration encoded in base64.</p>
2716
2716
  * @public
2717
2717
  */
2718
- ViewOriginalText?: string;
2718
+ ViewOriginalText?: string | undefined;
2719
2719
  /**
2720
2720
  * <p>Included for Apache Hive compatibility. Not used in the normal course of Glue operations.</p>
2721
2721
  * @public
2722
2722
  */
2723
- ViewExpandedText?: string;
2723
+ ViewExpandedText?: string | undefined;
2724
2724
  /**
2725
2725
  * <p>The type of this table.
2726
2726
  * Glue will create tables with the <code>EXTERNAL_TABLE</code> type.
@@ -2740,22 +2740,22 @@ export interface TableInput {
2740
2740
  * </dl>
2741
2741
  * @public
2742
2742
  */
2743
- TableType?: string;
2743
+ TableType?: string | undefined;
2744
2744
  /**
2745
2745
  * <p>These key-value pairs define properties associated with the table.</p>
2746
2746
  * @public
2747
2747
  */
2748
- Parameters?: Record<string, string>;
2748
+ Parameters?: Record<string, string> | undefined;
2749
2749
  /**
2750
2750
  * <p>A <code>TableIdentifier</code> structure that describes a target table for resource linking.</p>
2751
2751
  * @public
2752
2752
  */
2753
- TargetTable?: TableIdentifier;
2753
+ TargetTable?: TableIdentifier | undefined;
2754
2754
  /**
2755
2755
  * <p>A structure that contains all the information that defines the view, including the dialect or dialects for the view, and the query.</p>
2756
2756
  * @public
2757
2757
  */
2758
- ViewDefinition?: ViewDefinitionInput;
2758
+ ViewDefinition?: ViewDefinitionInput | undefined;
2759
2759
  }
2760
2760
  /**
2761
2761
  * @public
@@ -2766,7 +2766,7 @@ export interface CreateTableRequest {
2766
2766
  * If none is supplied, the Amazon Web Services account ID is used by default.</p>
2767
2767
  * @public
2768
2768
  */
2769
- CatalogId?: string;
2769
+ CatalogId?: string | undefined;
2770
2770
  /**
2771
2771
  * <p>The catalog database in which to create the new table. For Hive
2772
2772
  * compatibility, this name is entirely lowercase.</p>
@@ -2783,17 +2783,17 @@ export interface CreateTableRequest {
2783
2783
  * <p>A list of partition indexes, <code>PartitionIndex</code> structures, to create in the table.</p>
2784
2784
  * @public
2785
2785
  */
2786
- PartitionIndexes?: PartitionIndex[];
2786
+ PartitionIndexes?: PartitionIndex[] | undefined;
2787
2787
  /**
2788
2788
  * <p>The ID of the transaction.</p>
2789
2789
  * @public
2790
2790
  */
2791
- TransactionId?: string;
2791
+ TransactionId?: string | undefined;
2792
2792
  /**
2793
2793
  * <p>Specifies an <code>OpenTableFormatInput</code> structure when creating an open format table.</p>
2794
2794
  * @public
2795
2795
  */
2796
- OpenTableFormatInput?: OpenTableFormatInput;
2796
+ OpenTableFormatInput?: OpenTableFormatInput | undefined;
2797
2797
  }
2798
2798
  /**
2799
2799
  * @public
@@ -2848,7 +2848,7 @@ export interface CreateTriggerRequest {
2848
2848
  * <p>The name of the workflow associated with the trigger.</p>
2849
2849
  * @public
2850
2850
  */
2851
- WorkflowName?: string;
2851
+ WorkflowName?: string | undefined;
2852
2852
  /**
2853
2853
  * <p>The type of the new trigger.</p>
2854
2854
  * @public
@@ -2861,13 +2861,13 @@ export interface CreateTriggerRequest {
2861
2861
  * <p>This field is required when the trigger type is SCHEDULED.</p>
2862
2862
  * @public
2863
2863
  */
2864
- Schedule?: string;
2864
+ Schedule?: string | undefined;
2865
2865
  /**
2866
2866
  * <p>A predicate to specify when the new trigger should fire.</p>
2867
2867
  * <p>This field is required when the trigger type is <code>CONDITIONAL</code>.</p>
2868
2868
  * @public
2869
2869
  */
2870
- Predicate?: Predicate;
2870
+ Predicate?: Predicate | undefined;
2871
2871
  /**
2872
2872
  * <p>The actions initiated by this trigger when it fires.</p>
2873
2873
  * @public
@@ -2877,26 +2877,26 @@ export interface CreateTriggerRequest {
2877
2877
  * <p>A description of the new trigger.</p>
2878
2878
  * @public
2879
2879
  */
2880
- Description?: string;
2880
+ Description?: string | undefined;
2881
2881
  /**
2882
2882
  * <p>Set to <code>true</code> to start <code>SCHEDULED</code> and <code>CONDITIONAL</code>
2883
2883
  * triggers when created. True is not supported for <code>ON_DEMAND</code> triggers.</p>
2884
2884
  * @public
2885
2885
  */
2886
- StartOnCreation?: boolean;
2886
+ StartOnCreation?: boolean | undefined;
2887
2887
  /**
2888
2888
  * <p>The tags to use with this trigger. You may use tags to limit access to the trigger.
2889
2889
  * For more information about tags in Glue, see
2890
2890
  * <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer guide. </p>
2891
2891
  * @public
2892
2892
  */
2893
- Tags?: Record<string, string>;
2893
+ Tags?: Record<string, string> | undefined;
2894
2894
  /**
2895
2895
  * <p>Batch condition that must be met (specified number of events received or batch time window expired)
2896
2896
  * before EventBridge event trigger fires.</p>
2897
2897
  * @public
2898
2898
  */
2899
- EventBatchingCondition?: EventBatchingCondition;
2899
+ EventBatchingCondition?: EventBatchingCondition | undefined;
2900
2900
  }
2901
2901
  /**
2902
2902
  * @public
@@ -2906,7 +2906,7 @@ export interface CreateTriggerResponse {
2906
2906
  * <p>The name of the trigger.</p>
2907
2907
  * @public
2908
2908
  */
2909
- Name?: string;
2909
+ Name?: string | undefined;
2910
2910
  }
2911
2911
  /**
2912
2912
  * <p>Specifies the values that an admin sets for each job or session parameter configured in a Glue usage profile.</p>
@@ -2917,22 +2917,22 @@ export interface ConfigurationObject {
2917
2917
  * <p>A default value for the parameter.</p>
2918
2918
  * @public
2919
2919
  */
2920
- DefaultValue?: string;
2920
+ DefaultValue?: string | undefined;
2921
2921
  /**
2922
2922
  * <p>A list of allowed values for the parameter.</p>
2923
2923
  * @public
2924
2924
  */
2925
- AllowedValues?: string[];
2925
+ AllowedValues?: string[] | undefined;
2926
2926
  /**
2927
2927
  * <p>A minimum allowed value for the parameter.</p>
2928
2928
  * @public
2929
2929
  */
2930
- MinValue?: string;
2930
+ MinValue?: string | undefined;
2931
2931
  /**
2932
2932
  * <p>A maximum allowed value for the parameter.</p>
2933
2933
  * @public
2934
2934
  */
2935
- MaxValue?: string;
2935
+ MaxValue?: string | undefined;
2936
2936
  }
2937
2937
  /**
2938
2938
  * <p>Specifies the job and session values that an admin configures in an Glue usage profile.</p>
@@ -2943,12 +2943,12 @@ export interface ProfileConfiguration {
2943
2943
  * <p>A key-value map of configuration parameters for Glue sessions. </p>
2944
2944
  * @public
2945
2945
  */
2946
- SessionConfiguration?: Record<string, ConfigurationObject>;
2946
+ SessionConfiguration?: Record<string, ConfigurationObject> | undefined;
2947
2947
  /**
2948
2948
  * <p>A key-value map of configuration parameters for Glue jobs. </p>
2949
2949
  * @public
2950
2950
  */
2951
- JobConfiguration?: Record<string, ConfigurationObject>;
2951
+ JobConfiguration?: Record<string, ConfigurationObject> | undefined;
2952
2952
  }
2953
2953
  /**
2954
2954
  * @public
@@ -2963,7 +2963,7 @@ export interface CreateUsageProfileRequest {
2963
2963
  * <p>A description of the usage profile.</p>
2964
2964
  * @public
2965
2965
  */
2966
- Description?: string;
2966
+ Description?: string | undefined;
2967
2967
  /**
2968
2968
  * <p>A <code>ProfileConfiguration</code> object specifying the job and session values for the profile.</p>
2969
2969
  * @public
@@ -2973,7 +2973,7 @@ export interface CreateUsageProfileRequest {
2973
2973
  * <p>A list of tags applied to the usage profile.</p>
2974
2974
  * @public
2975
2975
  */
2976
- Tags?: Record<string, string>;
2976
+ Tags?: Record<string, string> | undefined;
2977
2977
  }
2978
2978
  /**
2979
2979
  * @public
@@ -2983,7 +2983,7 @@ export interface CreateUsageProfileResponse {
2983
2983
  * <p>The name of the usage profile that was created.</p>
2984
2984
  * @public
2985
2985
  */
2986
- Name?: string;
2986
+ Name?: string | undefined;
2987
2987
  }
2988
2988
  /**
2989
2989
  * <p>The operation is not available in the region.</p>
@@ -2996,7 +2996,7 @@ export declare class OperationNotSupportedException extends __BaseException {
2996
2996
  * <p>A message describing the problem.</p>
2997
2997
  * @public
2998
2998
  */
2999
- Message?: string;
2999
+ Message?: string | undefined;
3000
3000
  /**
3001
3001
  * @internal
3002
3002
  */
@@ -3037,12 +3037,12 @@ export interface ResourceUri {
3037
3037
  * <p>The type of the resource.</p>
3038
3038
  * @public
3039
3039
  */
3040
- ResourceType?: ResourceType;
3040
+ ResourceType?: ResourceType | undefined;
3041
3041
  /**
3042
3042
  * <p>The URI for accessing the resource.</p>
3043
3043
  * @public
3044
3044
  */
3045
- Uri?: string;
3045
+ Uri?: string | undefined;
3046
3046
  }
3047
3047
  /**
3048
3048
  * <p>A structure used to create or update a user-defined function.</p>
@@ -3053,27 +3053,27 @@ export interface UserDefinedFunctionInput {
3053
3053
  * <p>The name of the function.</p>
3054
3054
  * @public
3055
3055
  */
3056
- FunctionName?: string;
3056
+ FunctionName?: string | undefined;
3057
3057
  /**
3058
3058
  * <p>The Java class that contains the function code.</p>
3059
3059
  * @public
3060
3060
  */
3061
- ClassName?: string;
3061
+ ClassName?: string | undefined;
3062
3062
  /**
3063
3063
  * <p>The owner of the function.</p>
3064
3064
  * @public
3065
3065
  */
3066
- OwnerName?: string;
3066
+ OwnerName?: string | undefined;
3067
3067
  /**
3068
3068
  * <p>The owner type.</p>
3069
3069
  * @public
3070
3070
  */
3071
- OwnerType?: PrincipalType;
3071
+ OwnerType?: PrincipalType | undefined;
3072
3072
  /**
3073
3073
  * <p>The resource URIs for the function.</p>
3074
3074
  * @public
3075
3075
  */
3076
- ResourceUris?: ResourceUri[];
3076
+ ResourceUris?: ResourceUri[] | undefined;
3077
3077
  }
3078
3078
  /**
3079
3079
  * @public
@@ -3084,7 +3084,7 @@ export interface CreateUserDefinedFunctionRequest {
3084
3084
  * account ID is used by default.</p>
3085
3085
  * @public
3086
3086
  */
3087
- CatalogId?: string;
3087
+ CatalogId?: string | undefined;
3088
3088
  /**
3089
3089
  * <p>The name of the catalog database in which to create the function.</p>
3090
3090
  * @public
@@ -3115,22 +3115,22 @@ export interface CreateWorkflowRequest {
3115
3115
  * <p>A description of the workflow.</p>
3116
3116
  * @public
3117
3117
  */
3118
- Description?: string;
3118
+ Description?: string | undefined;
3119
3119
  /**
3120
3120
  * <p>A collection of properties to be used as part of each execution of the workflow.</p>
3121
3121
  * @public
3122
3122
  */
3123
- DefaultRunProperties?: Record<string, string>;
3123
+ DefaultRunProperties?: Record<string, string> | undefined;
3124
3124
  /**
3125
3125
  * <p>The tags to be used with this workflow.</p>
3126
3126
  * @public
3127
3127
  */
3128
- Tags?: Record<string, string>;
3128
+ Tags?: Record<string, string> | undefined;
3129
3129
  /**
3130
3130
  * <p>You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.</p>
3131
3131
  * @public
3132
3132
  */
3133
- MaxConcurrentRuns?: number;
3133
+ MaxConcurrentRuns?: number | undefined;
3134
3134
  }
3135
3135
  /**
3136
3136
  * @public
@@ -3140,7 +3140,7 @@ export interface CreateWorkflowResponse {
3140
3140
  * <p>The name of the workflow which was provided as part of the request.</p>
3141
3141
  * @public
3142
3142
  */
3143
- Name?: string;
3143
+ Name?: string | undefined;
3144
3144
  }
3145
3145
  /**
3146
3146
  * @public
@@ -3160,7 +3160,7 @@ export interface DeleteBlueprintResponse {
3160
3160
  * <p>Returns the name of the blueprint that was deleted.</p>
3161
3161
  * @public
3162
3162
  */
3163
- Name?: string;
3163
+ Name?: string | undefined;
3164
3164
  }
3165
3165
  /**
3166
3166
  * @public
@@ -3186,7 +3186,7 @@ export interface DeleteColumnStatisticsForPartitionRequest {
3186
3186
  * If none is supplied, the Amazon Web Services account ID is used by default.</p>
3187
3187
  * @public
3188
3188
  */
3189
- CatalogId?: string;
3189
+ CatalogId?: string | undefined;
3190
3190
  /**
3191
3191
  * <p>The name of the catalog database where the partitions reside.</p>
3192
3192
  * @public
@@ -3222,7 +3222,7 @@ export interface DeleteColumnStatisticsForTableRequest {
3222
3222
  * If none is supplied, the Amazon Web Services account ID is used by default.</p>
3223
3223
  * @public
3224
3224
  */
3225
- CatalogId?: string;
3225
+ CatalogId?: string | undefined;
3226
3226
  /**
3227
3227
  * <p>The name of the catalog database where the partitions reside.</p>
3228
3228
  * @public
@@ -3273,7 +3273,7 @@ export interface DeleteConnectionRequest {
3273
3273
  * account ID is used by default.</p>
3274
3274
  * @public
3275
3275
  */
3276
- CatalogId?: string;
3276
+ CatalogId?: string | undefined;
3277
3277
  /**
3278
3278
  * <p>The name of the connection to delete.</p>
3279
3279
  * @public
@@ -3296,7 +3296,7 @@ export declare class CrawlerRunningException extends __BaseException {
3296
3296
  * <p>A message describing the problem.</p>
3297
3297
  * @public
3298
3298
  */
3299
- Message?: string;
3299
+ Message?: string | undefined;
3300
3300
  /**
3301
3301
  * @internal
3302
3302
  */
@@ -3328,7 +3328,7 @@ export declare class SchedulerTransitioningException extends __BaseException {
3328
3328
  * <p>A message describing the problem.</p>
3329
3329
  * @public
3330
3330
  */
3331
- Message?: string;
3331
+ Message?: string | undefined;
3332
3332
  /**
3333
3333
  * @internal
3334
3334
  */
@@ -3352,7 +3352,7 @@ export interface DeleteCustomEntityTypeResponse {
3352
3352
  * <p>The name of the custom pattern you deleted.</p>
3353
3353
  * @public
3354
3354
  */
3355
- Name?: string;
3355
+ Name?: string | undefined;
3356
3356
  }
3357
3357
  /**
3358
3358
  * @public
@@ -3363,7 +3363,7 @@ export interface DeleteDatabaseRequest {
3363
3363
  * account ID is used by default.</p>
3364
3364
  * @public
3365
3365
  */
3366
- CatalogId?: string;
3366
+ CatalogId?: string | undefined;
3367
3367
  /**
3368
3368
  * <p>The name of the database to delete. For Hive compatibility, this must be all
3369
3369
  * lowercase.</p>
@@ -3424,7 +3424,7 @@ export interface DeleteJobResponse {
3424
3424
  * <p>The name of the job definition that was deleted.</p>
3425
3425
  * @public
3426
3426
  */
3427
- JobName?: string;
3427
+ JobName?: string | undefined;
3428
3428
  }
3429
3429
  /**
3430
3430
  * @public
@@ -3444,7 +3444,7 @@ export interface DeleteMLTransformResponse {
3444
3444
  * <p>The unique identifier of the transform that was deleted.</p>
3445
3445
  * @public
3446
3446
  */
3447
- TransformId?: string;
3447
+ TransformId?: string | undefined;
3448
3448
  }
3449
3449
  /**
3450
3450
  * @public
@@ -3455,7 +3455,7 @@ export interface DeletePartitionRequest {
3455
3455
  * the Amazon Web Services account ID is used by default.</p>
3456
3456
  * @public
3457
3457
  */
3458
- CatalogId?: string;
3458
+ CatalogId?: string | undefined;
3459
3459
  /**
3460
3460
  * <p>The name of the catalog database in which the table in question
3461
3461
  * resides.</p>
@@ -3489,7 +3489,7 @@ export declare class ConflictException extends __BaseException {
3489
3489
  * <p>A message describing the problem.</p>
3490
3490
  * @public
3491
3491
  */
3492
- Message?: string;
3492
+ Message?: string | undefined;
3493
3493
  /**
3494
3494
  * @internal
3495
3495
  */
@@ -3503,7 +3503,7 @@ export interface DeletePartitionIndexRequest {
3503
3503
  * <p>The catalog ID where the table resides.</p>
3504
3504
  * @public
3505
3505
  */
3506
- CatalogId?: string;
3506
+ CatalogId?: string | undefined;
3507
3507
  /**
3508
3508
  * <p>Specifies the name of a database from which you want to delete a partition index.</p>
3509
3509
  * @public
@@ -3555,17 +3555,17 @@ export interface DeleteRegistryResponse {
3555
3555
  * <p>The name of the registry being deleted.</p>
3556
3556
  * @public
3557
3557
  */
3558
- RegistryName?: string;
3558
+ RegistryName?: string | undefined;
3559
3559
  /**
3560
3560
  * <p>The Amazon Resource Name (ARN) of the registry being deleted.</p>
3561
3561
  * @public
3562
3562
  */
3563
- RegistryArn?: string;
3563
+ RegistryArn?: string | undefined;
3564
3564
  /**
3565
3565
  * <p>The status of the registry. A successful operation will return the <code>Deleting</code> status.</p>
3566
3566
  * @public
3567
3567
  */
3568
- Status?: RegistryStatus;
3568
+ Status?: RegistryStatus | undefined;
3569
3569
  }
3570
3570
  /**
3571
3571
  * <p>A specified condition was not satisfied.</p>
@@ -3578,7 +3578,7 @@ export declare class ConditionCheckFailureException extends __BaseException {
3578
3578
  * <p>A message describing the problem.</p>
3579
3579
  * @public
3580
3580
  */
3581
- Message?: string;
3581
+ Message?: string | undefined;
3582
3582
  /**
3583
3583
  * @internal
3584
3584
  */
@@ -3592,12 +3592,12 @@ export interface DeleteResourcePolicyRequest {
3592
3592
  * <p>The hash value returned when this policy was set.</p>
3593
3593
  * @public
3594
3594
  */
3595
- PolicyHashCondition?: string;
3595
+ PolicyHashCondition?: string | undefined;
3596
3596
  /**
3597
3597
  * <p>The ARN of the Glue resource for the resource policy to be deleted.</p>
3598
3598
  * @public
3599
3599
  */
3600
- ResourceArn?: string;
3600
+ ResourceArn?: string | undefined;
3601
3601
  }
3602
3602
  /**
3603
3603
  * @public
@@ -3622,17 +3622,17 @@ export interface DeleteSchemaResponse {
3622
3622
  * <p>The Amazon Resource Name (ARN) of the schema being deleted.</p>
3623
3623
  * @public
3624
3624
  */
3625
- SchemaArn?: string;
3625
+ SchemaArn?: string | undefined;
3626
3626
  /**
3627
3627
  * <p>The name of the schema being deleted.</p>
3628
3628
  * @public
3629
3629
  */
3630
- SchemaName?: string;
3630
+ SchemaName?: string | undefined;
3631
3631
  /**
3632
3632
  * <p>The status of the schema.</p>
3633
3633
  * @public
3634
3634
  */
3635
- Status?: SchemaStatus;
3635
+ Status?: SchemaStatus | undefined;
3636
3636
  }
3637
3637
  /**
3638
3638
  * @public
@@ -3666,12 +3666,12 @@ export interface ErrorDetails {
3666
3666
  * <p>The error code for an error.</p>
3667
3667
  * @public
3668
3668
  */
3669
- ErrorCode?: string;
3669
+ ErrorCode?: string | undefined;
3670
3670
  /**
3671
3671
  * <p>The error message for an error.</p>
3672
3672
  * @public
3673
3673
  */
3674
- ErrorMessage?: string;
3674
+ ErrorMessage?: string | undefined;
3675
3675
  }
3676
3676
  /**
3677
3677
  * <p>An object that contains the error details for an operation on a schema version.</p>
@@ -3682,12 +3682,12 @@ export interface SchemaVersionErrorItem {
3682
3682
  * <p>The version number of the schema.</p>
3683
3683
  * @public
3684
3684
  */
3685
- VersionNumber?: number;
3685
+ VersionNumber?: number | undefined;
3686
3686
  /**
3687
3687
  * <p>The details of the error for the schema version.</p>
3688
3688
  * @public
3689
3689
  */
3690
- ErrorDetails?: ErrorDetails;
3690
+ ErrorDetails?: ErrorDetails | undefined;
3691
3691
  }
3692
3692
  /**
3693
3693
  * @public
@@ -3697,7 +3697,7 @@ export interface DeleteSchemaVersionsResponse {
3697
3697
  * <p>A list of <code>SchemaVersionErrorItem</code> objects, each containing an error and schema version.</p>
3698
3698
  * @public
3699
3699
  */
3700
- SchemaVersionErrors?: SchemaVersionErrorItem[];
3700
+ SchemaVersionErrors?: SchemaVersionErrorItem[] | undefined;
3701
3701
  }
3702
3702
  /**
3703
3703
  * @public
@@ -3727,7 +3727,7 @@ export interface DeleteSessionRequest {
3727
3727
  * <p>The name of the origin of the delete session request.</p>
3728
3728
  * @public
3729
3729
  */
3730
- RequestOrigin?: string;
3730
+ RequestOrigin?: string | undefined;
3731
3731
  }
3732
3732
  /**
3733
3733
  * @public
@@ -3737,7 +3737,7 @@ export interface DeleteSessionResponse {
3737
3737
  * <p>Returns the ID of the deleted session.</p>
3738
3738
  * @public
3739
3739
  */
3740
- Id?: string;
3740
+ Id?: string | undefined;
3741
3741
  }
3742
3742
  /**
3743
3743
  * @public
@@ -3748,7 +3748,7 @@ export interface DeleteTableRequest {
3748
3748
  * ID is used by default.</p>
3749
3749
  * @public
3750
3750
  */
3751
- CatalogId?: string;
3751
+ CatalogId?: string | undefined;
3752
3752
  /**
3753
3753
  * <p>The name of the catalog database in which the table resides. For Hive
3754
3754
  * compatibility, this name is entirely lowercase.</p>
@@ -3765,7 +3765,7 @@ export interface DeleteTableRequest {
3765
3765
  * <p>The transaction ID at which to delete the table contents.</p>
3766
3766
  * @public
3767
3767
  */
3768
- TransactionId?: string;
3768
+ TransactionId?: string | undefined;
3769
3769
  }
3770
3770
  /**
3771
3771
  * @public
@@ -3811,7 +3811,7 @@ export interface DeleteTableVersionRequest {
3811
3811
  * ID is used by default.</p>
3812
3812
  * @public
3813
3813
  */
3814
- CatalogId?: string;
3814
+ CatalogId?: string | undefined;
3815
3815
  /**
3816
3816
  * <p>The database in the catalog in which the table resides. For Hive
3817
3817
  * compatibility, this name is entirely lowercase.</p>
@@ -3853,7 +3853,7 @@ export interface DeleteTriggerResponse {
3853
3853
  * <p>The name of the trigger that was deleted.</p>
3854
3854
  * @public
3855
3855
  */
3856
- Name?: string;
3856
+ Name?: string | undefined;
3857
3857
  }
3858
3858
  /**
3859
3859
  * @public
@@ -3879,7 +3879,7 @@ export interface DeleteUserDefinedFunctionRequest {
3879
3879
  * located. If none is supplied, the Amazon Web Services account ID is used by default.</p>
3880
3880
  * @public
3881
3881
  */
3882
- CatalogId?: string;
3882
+ CatalogId?: string | undefined;
3883
3883
  /**
3884
3884
  * <p>The name of the catalog database where the function is located.</p>
3885
3885
  * @public
@@ -3914,7 +3914,7 @@ export interface DeleteWorkflowResponse {
3914
3914
  * <p>Name of the workflow specified in input.</p>
3915
3915
  * @public
3916
3916
  */
3917
- Name?: string;
3917
+ Name?: string | undefined;
3918
3918
  }
3919
3919
  /**
3920
3920
  * @public
@@ -3929,12 +3929,12 @@ export interface GetBlueprintRequest {
3929
3929
  * <p>Specifies whether or not to include the blueprint in the response.</p>
3930
3930
  * @public
3931
3931
  */
3932
- IncludeBlueprint?: boolean;
3932
+ IncludeBlueprint?: boolean | undefined;
3933
3933
  /**
3934
3934
  * <p>Specifies whether or not to include the parameter specification.</p>
3935
3935
  * @public
3936
3936
  */
3937
- IncludeParameterSpec?: boolean;
3937
+ IncludeParameterSpec?: boolean | undefined;
3938
3938
  }
3939
3939
  /**
3940
3940
  * @public
@@ -3944,7 +3944,7 @@ export interface GetBlueprintResponse {
3944
3944
  * <p>Returns a <code>Blueprint</code> object.</p>
3945
3945
  * @public
3946
3946
  */
3947
- Blueprint?: Blueprint;
3947
+ Blueprint?: Blueprint | undefined;
3948
3948
  }
3949
3949
  /**
3950
3950
  * @public
@@ -3984,17 +3984,17 @@ export interface BlueprintRun {
3984
3984
  * <p>The name of the blueprint.</p>
3985
3985
  * @public
3986
3986
  */
3987
- BlueprintName?: string;
3987
+ BlueprintName?: string | undefined;
3988
3988
  /**
3989
3989
  * <p>The run ID for this blueprint run.</p>
3990
3990
  * @public
3991
3991
  */
3992
- RunId?: string;
3992
+ RunId?: string | undefined;
3993
3993
  /**
3994
3994
  * <p>The name of a workflow that is created as a result of a successful blueprint run. If a blueprint run has an error, there will not be a workflow created.</p>
3995
3995
  * @public
3996
3996
  */
3997
- WorkflowName?: string;
3997
+ WorkflowName?: string | undefined;
3998
3998
  /**
3999
3999
  * <p>The state of the blueprint run. Possible values are:</p>
4000
4000
  * <ul>
@@ -4013,37 +4013,37 @@ export interface BlueprintRun {
4013
4013
  * </ul>
4014
4014
  * @public
4015
4015
  */
4016
- State?: BlueprintRunState;
4016
+ State?: BlueprintRunState | undefined;
4017
4017
  /**
4018
4018
  * <p>The date and time that the blueprint run started.</p>
4019
4019
  * @public
4020
4020
  */
4021
- StartedOn?: Date;
4021
+ StartedOn?: Date | undefined;
4022
4022
  /**
4023
4023
  * <p>The date and time that the blueprint run completed.</p>
4024
4024
  * @public
4025
4025
  */
4026
- CompletedOn?: Date;
4026
+ CompletedOn?: Date | undefined;
4027
4027
  /**
4028
4028
  * <p>Indicates any errors that are seen while running the blueprint.</p>
4029
4029
  * @public
4030
4030
  */
4031
- ErrorMessage?: string;
4031
+ ErrorMessage?: string | undefined;
4032
4032
  /**
4033
4033
  * <p>If there are any errors while creating the entities of a workflow, we try to roll back the created entities until that point and delete them. This attribute indicates the errors seen while trying to delete the entities that are created.</p>
4034
4034
  * @public
4035
4035
  */
4036
- RollbackErrorMessage?: string;
4036
+ RollbackErrorMessage?: string | undefined;
4037
4037
  /**
4038
4038
  * <p>The blueprint parameters as a string. You will have to provide a value for each key that is required from the parameter spec that is defined in the <code>Blueprint$ParameterSpec</code>.</p>
4039
4039
  * @public
4040
4040
  */
4041
- Parameters?: string;
4041
+ Parameters?: string | undefined;
4042
4042
  /**
4043
4043
  * <p>The role ARN. This role will be assumed by the Glue service and will be used to create the workflow and other entities of a workflow.</p>
4044
4044
  * @public
4045
4045
  */
4046
- RoleArn?: string;
4046
+ RoleArn?: string | undefined;
4047
4047
  }
4048
4048
  /**
4049
4049
  * @public
@@ -4053,7 +4053,7 @@ export interface GetBlueprintRunResponse {
4053
4053
  * <p>Returns a <code>BlueprintRun</code> object.</p>
4054
4054
  * @public
4055
4055
  */
4056
- BlueprintRun?: BlueprintRun;
4056
+ BlueprintRun?: BlueprintRun | undefined;
4057
4057
  }
4058
4058
  /**
4059
4059
  * @public
@@ -4068,12 +4068,12 @@ export interface GetBlueprintRunsRequest {
4068
4068
  * <p>A continuation token, if this is a continuation request.</p>
4069
4069
  * @public
4070
4070
  */
4071
- NextToken?: string;
4071
+ NextToken?: string | undefined;
4072
4072
  /**
4073
4073
  * <p>The maximum size of a list to return.</p>
4074
4074
  * @public
4075
4075
  */
4076
- MaxResults?: number;
4076
+ MaxResults?: number | undefined;
4077
4077
  }
4078
4078
  /**
4079
4079
  * @public
@@ -4083,12 +4083,12 @@ export interface GetBlueprintRunsResponse {
4083
4083
  * <p>Returns a list of <code>BlueprintRun</code> objects.</p>
4084
4084
  * @public
4085
4085
  */
4086
- BlueprintRuns?: BlueprintRun[];
4086
+ BlueprintRuns?: BlueprintRun[] | undefined;
4087
4087
  /**
4088
4088
  * <p>A continuation token, if not all blueprint runs have been returned.</p>
4089
4089
  * @public
4090
4090
  */
4091
- NextToken?: string;
4091
+ NextToken?: string | undefined;
4092
4092
  }
4093
4093
  /**
4094
4094
  * @public
@@ -4098,7 +4098,7 @@ export interface GetCatalogImportStatusRequest {
4098
4098
  * <p>The ID of the catalog to migrate. Currently, this should be the Amazon Web Services account ID.</p>
4099
4099
  * @public
4100
4100
  */
4101
- CatalogId?: string;
4101
+ CatalogId?: string | undefined;
4102
4102
  }
4103
4103
  /**
4104
4104
  * <p>A structure containing migration status information.</p>
@@ -4110,17 +4110,17 @@ export interface CatalogImportStatus {
4110
4110
  * <code>True</code> if the migration has completed, or <code>False</code> otherwise.</p>
4111
4111
  * @public
4112
4112
  */
4113
- ImportCompleted?: boolean;
4113
+ ImportCompleted?: boolean | undefined;
4114
4114
  /**
4115
4115
  * <p>The time that the migration was started.</p>
4116
4116
  * @public
4117
4117
  */
4118
- ImportTime?: Date;
4118
+ ImportTime?: Date | undefined;
4119
4119
  /**
4120
4120
  * <p>The name of the person who initiated the migration.</p>
4121
4121
  * @public
4122
4122
  */
4123
- ImportedBy?: string;
4123
+ ImportedBy?: string | undefined;
4124
4124
  }
4125
4125
  /**
4126
4126
  * @public
@@ -4130,7 +4130,7 @@ export interface GetCatalogImportStatusResponse {
4130
4130
  * <p>The status of the specified catalog migration.</p>
4131
4131
  * @public
4132
4132
  */
4133
- ImportStatus?: CatalogImportStatus;
4133
+ ImportStatus?: CatalogImportStatus | undefined;
4134
4134
  }
4135
4135
  /**
4136
4136
  * @public
@@ -4156,64 +4156,64 @@ export interface CsvClassifier {
4156
4156
  * <p>The time that this classifier was registered.</p>
4157
4157
  * @public
4158
4158
  */
4159
- CreationTime?: Date;
4159
+ CreationTime?: Date | undefined;
4160
4160
  /**
4161
4161
  * <p>The time that this classifier was last updated.</p>
4162
4162
  * @public
4163
4163
  */
4164
- LastUpdated?: Date;
4164
+ LastUpdated?: Date | undefined;
4165
4165
  /**
4166
4166
  * <p>The version of this classifier.</p>
4167
4167
  * @public
4168
4168
  */
4169
- Version?: number;
4169
+ Version?: number | undefined;
4170
4170
  /**
4171
4171
  * <p>A custom symbol to denote what separates each column entry in the row.</p>
4172
4172
  * @public
4173
4173
  */
4174
- Delimiter?: string;
4174
+ Delimiter?: string | undefined;
4175
4175
  /**
4176
4176
  * <p>A custom symbol to denote what combines content into a single column value. It must be
4177
4177
  * different from the column delimiter.</p>
4178
4178
  * @public
4179
4179
  */
4180
- QuoteSymbol?: string;
4180
+ QuoteSymbol?: string | undefined;
4181
4181
  /**
4182
4182
  * <p>Indicates whether the CSV file contains a header.</p>
4183
4183
  * @public
4184
4184
  */
4185
- ContainsHeader?: CsvHeaderOption;
4185
+ ContainsHeader?: CsvHeaderOption | undefined;
4186
4186
  /**
4187
4187
  * <p>A list of strings representing column names.</p>
4188
4188
  * @public
4189
4189
  */
4190
- Header?: string[];
4190
+ Header?: string[] | undefined;
4191
4191
  /**
4192
4192
  * <p>Specifies not to trim values before identifying the type of column values. The default
4193
4193
  * value is <code>true</code>.</p>
4194
4194
  * @public
4195
4195
  */
4196
- DisableValueTrimming?: boolean;
4196
+ DisableValueTrimming?: boolean | undefined;
4197
4197
  /**
4198
4198
  * <p>Enables the processing of files that contain only one column.</p>
4199
4199
  * @public
4200
4200
  */
4201
- AllowSingleColumn?: boolean;
4201
+ AllowSingleColumn?: boolean | undefined;
4202
4202
  /**
4203
4203
  * <p>Enables the custom datatype to be configured.</p>
4204
4204
  * @public
4205
4205
  */
4206
- CustomDatatypeConfigured?: boolean;
4206
+ CustomDatatypeConfigured?: boolean | undefined;
4207
4207
  /**
4208
4208
  * <p>A list of custom datatypes including "BINARY", "BOOLEAN", "DATE", "DECIMAL", "DOUBLE", "FLOAT", "INT", "LONG", "SHORT", "STRING", "TIMESTAMP".</p>
4209
4209
  * @public
4210
4210
  */
4211
- CustomDatatypes?: string[];
4211
+ CustomDatatypes?: string[] | undefined;
4212
4212
  /**
4213
4213
  * <p>Sets the SerDe for processing CSV in the classifier, which will be applied in the Data Catalog. Valid values are <code>OpenCSVSerDe</code>, <code>LazySimpleSerDe</code>, and <code>None</code>. You can specify the <code>None</code> value when you want the crawler to do the detection.</p>
4214
4214
  * @public
4215
4215
  */
4216
- Serde?: CsvSerdeOption;
4216
+ Serde?: CsvSerdeOption | undefined;
4217
4217
  }
4218
4218
  /**
4219
4219
  * <p>A classifier that uses <code>grok</code> patterns.</p>
@@ -4235,17 +4235,17 @@ export interface GrokClassifier {
4235
4235
  * <p>The time that this classifier was registered.</p>
4236
4236
  * @public
4237
4237
  */
4238
- CreationTime?: Date;
4238
+ CreationTime?: Date | undefined;
4239
4239
  /**
4240
4240
  * <p>The time that this classifier was last updated.</p>
4241
4241
  * @public
4242
4242
  */
4243
- LastUpdated?: Date;
4243
+ LastUpdated?: Date | undefined;
4244
4244
  /**
4245
4245
  * <p>The version of this classifier.</p>
4246
4246
  * @public
4247
4247
  */
4248
- Version?: number;
4248
+ Version?: number | undefined;
4249
4249
  /**
4250
4250
  * <p>The grok pattern applied to a data store by this classifier.
4251
4251
  * For more information, see built-in patterns in <a href="https://docs.aws.amazon.com/glue/latest/dg/custom-classifier.html">Writing Custom Classifiers</a>.</p>
@@ -4257,7 +4257,7 @@ export interface GrokClassifier {
4257
4257
  * For more information, see custom patterns in <a href="https://docs.aws.amazon.com/glue/latest/dg/custom-classifier.html">Writing Custom Classifiers</a>.</p>
4258
4258
  * @public
4259
4259
  */
4260
- CustomPatterns?: string;
4260
+ CustomPatterns?: string | undefined;
4261
4261
  }
4262
4262
  /**
4263
4263
  * <p>A classifier for <code>JSON</code> content.</p>
@@ -4273,17 +4273,17 @@ export interface JsonClassifier {
4273
4273
  * <p>The time that this classifier was registered.</p>
4274
4274
  * @public
4275
4275
  */
4276
- CreationTime?: Date;
4276
+ CreationTime?: Date | undefined;
4277
4277
  /**
4278
4278
  * <p>The time that this classifier was last updated.</p>
4279
4279
  * @public
4280
4280
  */
4281
- LastUpdated?: Date;
4281
+ LastUpdated?: Date | undefined;
4282
4282
  /**
4283
4283
  * <p>The version of this classifier.</p>
4284
4284
  * @public
4285
4285
  */
4286
- Version?: number;
4286
+ Version?: number | undefined;
4287
4287
  /**
4288
4288
  * <p>A <code>JsonPath</code> string defining the JSON data for the classifier to classify.
4289
4289
  * Glue supports a subset of JsonPath, as described in <a href="https://docs.aws.amazon.com/glue/latest/dg/custom-classifier.html#custom-classifier-json">Writing JsonPath Custom Classifiers</a>.</p>
@@ -4310,17 +4310,17 @@ export interface XMLClassifier {
4310
4310
  * <p>The time that this classifier was registered.</p>
4311
4311
  * @public
4312
4312
  */
4313
- CreationTime?: Date;
4313
+ CreationTime?: Date | undefined;
4314
4314
  /**
4315
4315
  * <p>The time that this classifier was last updated.</p>
4316
4316
  * @public
4317
4317
  */
4318
- LastUpdated?: Date;
4318
+ LastUpdated?: Date | undefined;
4319
4319
  /**
4320
4320
  * <p>The version of this classifier.</p>
4321
4321
  * @public
4322
4322
  */
4323
- Version?: number;
4323
+ Version?: number | undefined;
4324
4324
  /**
4325
4325
  * <p>The XML tag designating the element that contains each record in an XML document being
4326
4326
  * parsed. This can't identify a self-closing element (closed by <code>/></code>). An empty
@@ -4329,7 +4329,7 @@ export interface XMLClassifier {
4329
4329
  * <code><row item_a="A" item_b="B" /></code> is not).</p>
4330
4330
  * @public
4331
4331
  */
4332
- RowTag?: string;
4332
+ RowTag?: string | undefined;
4333
4333
  }
4334
4334
  /**
4335
4335
  * <p>Classifiers are triggered during a crawl task. A classifier checks whether a given file is
@@ -4347,22 +4347,22 @@ export interface Classifier {
4347
4347
  * <p>A classifier that uses <code>grok</code>.</p>
4348
4348
  * @public
4349
4349
  */
4350
- GrokClassifier?: GrokClassifier;
4350
+ GrokClassifier?: GrokClassifier | undefined;
4351
4351
  /**
4352
4352
  * <p>A classifier for XML content.</p>
4353
4353
  * @public
4354
4354
  */
4355
- XMLClassifier?: XMLClassifier;
4355
+ XMLClassifier?: XMLClassifier | undefined;
4356
4356
  /**
4357
4357
  * <p>A classifier for JSON content.</p>
4358
4358
  * @public
4359
4359
  */
4360
- JsonClassifier?: JsonClassifier;
4360
+ JsonClassifier?: JsonClassifier | undefined;
4361
4361
  /**
4362
4362
  * <p>A classifier for comma-separated values (CSV).</p>
4363
4363
  * @public
4364
4364
  */
4365
- CsvClassifier?: CsvClassifier;
4365
+ CsvClassifier?: CsvClassifier | undefined;
4366
4366
  }
4367
4367
  /**
4368
4368
  * @public
@@ -4372,7 +4372,7 @@ export interface GetClassifierResponse {
4372
4372
  * <p>The requested classifier.</p>
4373
4373
  * @public
4374
4374
  */
4375
- Classifier?: Classifier;
4375
+ Classifier?: Classifier | undefined;
4376
4376
  }
4377
4377
  /**
4378
4378
  * @public
@@ -4382,12 +4382,12 @@ export interface GetClassifiersRequest {
4382
4382
  * <p>The size of the list to return (optional).</p>
4383
4383
  * @public
4384
4384
  */
4385
- MaxResults?: number;
4385
+ MaxResults?: number | undefined;
4386
4386
  /**
4387
4387
  * <p>An optional continuation token.</p>
4388
4388
  * @public
4389
4389
  */
4390
- NextToken?: string;
4390
+ NextToken?: string | undefined;
4391
4391
  }
4392
4392
  /**
4393
4393
  * @public
@@ -4398,12 +4398,12 @@ export interface GetClassifiersResponse {
4398
4398
  * objects.</p>
4399
4399
  * @public
4400
4400
  */
4401
- Classifiers?: Classifier[];
4401
+ Classifiers?: Classifier[] | undefined;
4402
4402
  /**
4403
4403
  * <p>A continuation token.</p>
4404
4404
  * @public
4405
4405
  */
4406
- NextToken?: string;
4406
+ NextToken?: string | undefined;
4407
4407
  }
4408
4408
  /**
4409
4409
  * @public
@@ -4414,7 +4414,7 @@ export interface GetColumnStatisticsForPartitionRequest {
4414
4414
  * If none is supplied, the Amazon Web Services account ID is used by default.</p>
4415
4415
  * @public
4416
4416
  */
4417
- CatalogId?: string;
4417
+ CatalogId?: string | undefined;
4418
4418
  /**
4419
4419
  * <p>The name of the catalog database where the partitions reside.</p>
4420
4420
  * @public
@@ -4487,12 +4487,12 @@ export interface DateColumnStatisticsData {
4487
4487
  * <p>The lowest value in the column.</p>
4488
4488
  * @public
4489
4489
  */
4490
- MinimumValue?: Date;
4490
+ MinimumValue?: Date | undefined;
4491
4491
  /**
4492
4492
  * <p>The highest value in the column.</p>
4493
4493
  * @public
4494
4494
  */
4495
- MaximumValue?: Date;
4495
+ MaximumValue?: Date | undefined;
4496
4496
  /**
4497
4497
  * <p>The number of null values in the column.</p>
4498
4498
  * @public
@@ -4530,12 +4530,12 @@ export interface DecimalColumnStatisticsData {
4530
4530
  * <p>The lowest value in the column.</p>
4531
4531
  * @public
4532
4532
  */
4533
- MinimumValue?: DecimalNumber;
4533
+ MinimumValue?: DecimalNumber | undefined;
4534
4534
  /**
4535
4535
  * <p>The highest value in the column.</p>
4536
4536
  * @public
4537
4537
  */
4538
- MaximumValue?: DecimalNumber;
4538
+ MaximumValue?: DecimalNumber | undefined;
4539
4539
  /**
4540
4540
  * <p>The number of null values in the column.</p>
4541
4541
  * @public
@@ -4556,12 +4556,12 @@ export interface DoubleColumnStatisticsData {
4556
4556
  * <p>The lowest value in the column.</p>
4557
4557
  * @public
4558
4558
  */
4559
- MinimumValue?: number;
4559
+ MinimumValue?: number | undefined;
4560
4560
  /**
4561
4561
  * <p>The highest value in the column.</p>
4562
4562
  * @public
4563
4563
  */
4564
- MaximumValue?: number;
4564
+ MaximumValue?: number | undefined;
4565
4565
  /**
4566
4566
  * <p>The number of null values in the column.</p>
4567
4567
  * @public
@@ -4582,12 +4582,12 @@ export interface LongColumnStatisticsData {
4582
4582
  * <p>The lowest value in the column.</p>
4583
4583
  * @public
4584
4584
  */
4585
- MinimumValue?: number;
4585
+ MinimumValue?: number | undefined;
4586
4586
  /**
4587
4587
  * <p>The highest value in the column.</p>
4588
4588
  * @public
4589
4589
  */
4590
- MaximumValue?: number;
4590
+ MaximumValue?: number | undefined;
4591
4591
  /**
4592
4592
  * <p>The number of null values in the column.</p>
4593
4593
  * @public
@@ -4656,12 +4656,12 @@ export interface ColumnStatisticsData {
4656
4656
  * <p>Boolean column statistics data.</p>
4657
4657
  * @public
4658
4658
  */
4659
- BooleanColumnStatisticsData?: BooleanColumnStatisticsData;
4659
+ BooleanColumnStatisticsData?: BooleanColumnStatisticsData | undefined;
4660
4660
  /**
4661
4661
  * <p>Date column statistics data.</p>
4662
4662
  * @public
4663
4663
  */
4664
- DateColumnStatisticsData?: DateColumnStatisticsData;
4664
+ DateColumnStatisticsData?: DateColumnStatisticsData | undefined;
4665
4665
  /**
4666
4666
  * <p>
4667
4667
  * Decimal column statistics data. UnscaledValues within are Base64-encoded
@@ -4670,27 +4670,27 @@ export interface ColumnStatisticsData {
4670
4670
  * </p>
4671
4671
  * @public
4672
4672
  */
4673
- DecimalColumnStatisticsData?: DecimalColumnStatisticsData;
4673
+ DecimalColumnStatisticsData?: DecimalColumnStatisticsData | undefined;
4674
4674
  /**
4675
4675
  * <p>Double column statistics data.</p>
4676
4676
  * @public
4677
4677
  */
4678
- DoubleColumnStatisticsData?: DoubleColumnStatisticsData;
4678
+ DoubleColumnStatisticsData?: DoubleColumnStatisticsData | undefined;
4679
4679
  /**
4680
4680
  * <p>Long column statistics data.</p>
4681
4681
  * @public
4682
4682
  */
4683
- LongColumnStatisticsData?: LongColumnStatisticsData;
4683
+ LongColumnStatisticsData?: LongColumnStatisticsData | undefined;
4684
4684
  /**
4685
4685
  * <p>String column statistics data.</p>
4686
4686
  * @public
4687
4687
  */
4688
- StringColumnStatisticsData?: StringColumnStatisticsData;
4688
+ StringColumnStatisticsData?: StringColumnStatisticsData | undefined;
4689
4689
  /**
4690
4690
  * <p>Binary column statistics data.</p>
4691
4691
  * @public
4692
4692
  */
4693
- BinaryColumnStatisticsData?: BinaryColumnStatisticsData;
4693
+ BinaryColumnStatisticsData?: BinaryColumnStatisticsData | undefined;
4694
4694
  }
4695
4695
  /**
4696
4696
  * <p>Represents the generated column-level statistics for a table or partition.</p>
@@ -4727,12 +4727,12 @@ export interface ColumnError {
4727
4727
  * <p>The name of the column that failed.</p>
4728
4728
  * @public
4729
4729
  */
4730
- ColumnName?: string;
4730
+ ColumnName?: string | undefined;
4731
4731
  /**
4732
4732
  * <p>An error message with the reason for the failure of an operation.</p>
4733
4733
  * @public
4734
4734
  */
4735
- Error?: ErrorDetail;
4735
+ Error?: ErrorDetail | undefined;
4736
4736
  }
4737
4737
  /**
4738
4738
  * @public
@@ -4742,12 +4742,12 @@ export interface GetColumnStatisticsForPartitionResponse {
4742
4742
  * <p>List of ColumnStatistics that failed to be retrieved.</p>
4743
4743
  * @public
4744
4744
  */
4745
- ColumnStatisticsList?: ColumnStatistics[];
4745
+ ColumnStatisticsList?: ColumnStatistics[] | undefined;
4746
4746
  /**
4747
4747
  * <p>Error occurred during retrieving column statistics data.</p>
4748
4748
  * @public
4749
4749
  */
4750
- Errors?: ColumnError[];
4750
+ Errors?: ColumnError[] | undefined;
4751
4751
  }
4752
4752
  /**
4753
4753
  * @public
@@ -4758,7 +4758,7 @@ export interface GetColumnStatisticsForTableRequest {
4758
4758
  * If none is supplied, the Amazon Web Services account ID is used by default.</p>
4759
4759
  * @public
4760
4760
  */
4761
- CatalogId?: string;
4761
+ CatalogId?: string | undefined;
4762
4762
  /**
4763
4763
  * <p>The name of the catalog database where the partitions reside.</p>
4764
4764
  * @public
@@ -4783,12 +4783,12 @@ export interface GetColumnStatisticsForTableResponse {
4783
4783
  * <p>List of ColumnStatistics.</p>
4784
4784
  * @public
4785
4785
  */
4786
- ColumnStatisticsList?: ColumnStatistics[];
4786
+ ColumnStatisticsList?: ColumnStatistics[] | undefined;
4787
4787
  /**
4788
4788
  * <p>List of ColumnStatistics that failed to be retrieved.</p>
4789
4789
  * @public
4790
4790
  */
4791
- Errors?: ColumnError[];
4791
+ Errors?: ColumnError[] | undefined;
4792
4792
  }
4793
4793
  /**
4794
4794
  * @public
@@ -4836,97 +4836,97 @@ export interface ColumnStatisticsTaskRun {
4836
4836
  * <p>The Amazon Web Services account ID.</p>
4837
4837
  * @public
4838
4838
  */
4839
- CustomerId?: string;
4839
+ CustomerId?: string | undefined;
4840
4840
  /**
4841
4841
  * <p>The identifier for the particular column statistics task run.</p>
4842
4842
  * @public
4843
4843
  */
4844
- ColumnStatisticsTaskRunId?: string;
4844
+ ColumnStatisticsTaskRunId?: string | undefined;
4845
4845
  /**
4846
4846
  * <p>The database where the table resides.</p>
4847
4847
  * @public
4848
4848
  */
4849
- DatabaseName?: string;
4849
+ DatabaseName?: string | undefined;
4850
4850
  /**
4851
4851
  * <p>The name of the table for which column statistics is generated.</p>
4852
4852
  * @public
4853
4853
  */
4854
- TableName?: string;
4854
+ TableName?: string | undefined;
4855
4855
  /**
4856
4856
  * <p>A list of the column names. If none is supplied, all column names for the table will be used by default.</p>
4857
4857
  * @public
4858
4858
  */
4859
- ColumnNameList?: string[];
4859
+ ColumnNameList?: string[] | undefined;
4860
4860
  /**
4861
4861
  * <p>The ID of the Data Catalog where the table resides. If none is supplied, the Amazon Web Services account ID is used by default.</p>
4862
4862
  * @public
4863
4863
  */
4864
- CatalogID?: string;
4864
+ CatalogID?: string | undefined;
4865
4865
  /**
4866
4866
  * <p>The IAM role that the service assumes to generate statistics.</p>
4867
4867
  * @public
4868
4868
  */
4869
- Role?: string;
4869
+ Role?: string | undefined;
4870
4870
  /**
4871
4871
  * <p>The percentage of rows used to generate statistics. If none is supplied, the entire table will be used to generate stats.</p>
4872
4872
  * @public
4873
4873
  */
4874
- SampleSize?: number;
4874
+ SampleSize?: number | undefined;
4875
4875
  /**
4876
4876
  * <p>Name of the security configuration that is used to encrypt CloudWatch logs for the column stats task run.</p>
4877
4877
  * @public
4878
4878
  */
4879
- SecurityConfiguration?: string;
4879
+ SecurityConfiguration?: string | undefined;
4880
4880
  /**
4881
4881
  * <p>The number of workers used to generate column statistics. The job is preconfigured to autoscale up to 25 instances.</p>
4882
4882
  * @public
4883
4883
  */
4884
- NumberOfWorkers?: number;
4884
+ NumberOfWorkers?: number | undefined;
4885
4885
  /**
4886
4886
  * <p>The type of workers being used for generating stats. The default is <code>g.1x</code>.</p>
4887
4887
  * @public
4888
4888
  */
4889
- WorkerType?: string;
4889
+ WorkerType?: string | undefined;
4890
4890
  /**
4891
4891
  * <p>The type of column statistics computation.</p>
4892
4892
  * @public
4893
4893
  */
4894
- ComputationType?: ComputationType;
4894
+ ComputationType?: ComputationType | undefined;
4895
4895
  /**
4896
4896
  * <p>The status of the task run.</p>
4897
4897
  * @public
4898
4898
  */
4899
- Status?: ColumnStatisticsState;
4899
+ Status?: ColumnStatisticsState | undefined;
4900
4900
  /**
4901
4901
  * <p>The time that this task was created.</p>
4902
4902
  * @public
4903
4903
  */
4904
- CreationTime?: Date;
4904
+ CreationTime?: Date | undefined;
4905
4905
  /**
4906
4906
  * <p>The last point in time when this task was modified.</p>
4907
4907
  * @public
4908
4908
  */
4909
- LastUpdated?: Date;
4909
+ LastUpdated?: Date | undefined;
4910
4910
  /**
4911
4911
  * <p>The start time of the task.</p>
4912
4912
  * @public
4913
4913
  */
4914
- StartTime?: Date;
4914
+ StartTime?: Date | undefined;
4915
4915
  /**
4916
4916
  * <p>The end time of the task.</p>
4917
4917
  * @public
4918
4918
  */
4919
- EndTime?: Date;
4919
+ EndTime?: Date | undefined;
4920
4920
  /**
4921
4921
  * <p>The error message for the job.</p>
4922
4922
  * @public
4923
4923
  */
4924
- ErrorMessage?: string;
4924
+ ErrorMessage?: string | undefined;
4925
4925
  /**
4926
4926
  * <p>The calculated DPU usage in seconds for all autoscaled workers.</p>
4927
4927
  * @public
4928
4928
  */
4929
- DPUSeconds?: number;
4929
+ DPUSeconds?: number | undefined;
4930
4930
  }
4931
4931
  /**
4932
4932
  * @public
@@ -4936,7 +4936,7 @@ export interface GetColumnStatisticsTaskRunResponse {
4936
4936
  * <p>A <code>ColumnStatisticsTaskRun</code> object representing the details of the column stats run.</p>
4937
4937
  * @public
4938
4938
  */
4939
- ColumnStatisticsTaskRun?: ColumnStatisticsTaskRun;
4939
+ ColumnStatisticsTaskRun?: ColumnStatisticsTaskRun | undefined;
4940
4940
  }
4941
4941
  /**
4942
4942
  * @public
@@ -4956,12 +4956,12 @@ export interface GetColumnStatisticsTaskRunsRequest {
4956
4956
  * <p>The maximum size of the response.</p>
4957
4957
  * @public
4958
4958
  */
4959
- MaxResults?: number;
4959
+ MaxResults?: number | undefined;
4960
4960
  /**
4961
4961
  * <p>A continuation token, if this is a continuation call.</p>
4962
4962
  * @public
4963
4963
  */
4964
- NextToken?: string;
4964
+ NextToken?: string | undefined;
4965
4965
  }
4966
4966
  /**
4967
4967
  * @public
@@ -4971,12 +4971,12 @@ export interface GetColumnStatisticsTaskRunsResponse {
4971
4971
  * <p>A list of column statistics task runs.</p>
4972
4972
  * @public
4973
4973
  */
4974
- ColumnStatisticsTaskRuns?: ColumnStatisticsTaskRun[];
4974
+ ColumnStatisticsTaskRuns?: ColumnStatisticsTaskRun[] | undefined;
4975
4975
  /**
4976
4976
  * <p>A continuation token, if not all task runs have yet been returned.</p>
4977
4977
  * @public
4978
4978
  */
4979
- NextToken?: string;
4979
+ NextToken?: string | undefined;
4980
4980
  }
4981
4981
  /**
4982
4982
  * @public
@@ -5002,42 +5002,42 @@ export interface ColumnStatisticsTaskSettings {
5002
5002
  * <p>The name of the database where the table resides.</p>
5003
5003
  * @public
5004
5004
  */
5005
- DatabaseName?: string;
5005
+ DatabaseName?: string | undefined;
5006
5006
  /**
5007
5007
  * <p>The name of the table for which to generate column statistics.</p>
5008
5008
  * @public
5009
5009
  */
5010
- TableName?: string;
5010
+ TableName?: string | undefined;
5011
5011
  /**
5012
5012
  * <p>A schedule for running the column statistics, specified in CRON syntax.</p>
5013
5013
  * @public
5014
5014
  */
5015
- Schedule?: Schedule;
5015
+ Schedule?: Schedule | undefined;
5016
5016
  /**
5017
5017
  * <p>A list of column names for which to run statistics.</p>
5018
5018
  * @public
5019
5019
  */
5020
- ColumnNameList?: string[];
5020
+ ColumnNameList?: string[] | undefined;
5021
5021
  /**
5022
5022
  * <p>The ID of the Data Catalog in which the database resides.</p>
5023
5023
  * @public
5024
5024
  */
5025
- CatalogID?: string;
5025
+ CatalogID?: string | undefined;
5026
5026
  /**
5027
5027
  * <p>The role used for running the column statistics.</p>
5028
5028
  * @public
5029
5029
  */
5030
- Role?: string;
5030
+ Role?: string | undefined;
5031
5031
  /**
5032
5032
  * <p>The percentage of data to sample.</p>
5033
5033
  * @public
5034
5034
  */
5035
- SampleSize?: number;
5035
+ SampleSize?: number | undefined;
5036
5036
  /**
5037
5037
  * <p>Name of the security configuration that is used to encrypt CloudWatch logs.</p>
5038
5038
  * @public
5039
5039
  */
5040
- SecurityConfiguration?: string;
5040
+ SecurityConfiguration?: string | undefined;
5041
5041
  }
5042
5042
  /**
5043
5043
  * @public
@@ -5047,7 +5047,7 @@ export interface GetColumnStatisticsTaskSettingsResponse {
5047
5047
  * <p>A <code>ColumnStatisticsTaskSettings</code> object representing the settings for the column statistics task.</p>
5048
5048
  * @public
5049
5049
  */
5050
- ColumnStatisticsTaskSettings?: ColumnStatisticsTaskSettings;
5050
+ ColumnStatisticsTaskSettings?: ColumnStatisticsTaskSettings | undefined;
5051
5051
  }
5052
5052
  /**
5053
5053
  * @public
@@ -5058,7 +5058,7 @@ export interface GetConnectionRequest {
5058
5058
  * account ID is used by default.</p>
5059
5059
  * @public
5060
5060
  */
5061
- CatalogId?: string;
5061
+ CatalogId?: string | undefined;
5062
5062
  /**
5063
5063
  * <p>The name of the connection definition to retrieve.</p>
5064
5064
  * @public
@@ -5072,7 +5072,7 @@ export interface GetConnectionRequest {
5072
5072
  * properties.</p>
5073
5073
  * @public
5074
5074
  */
5075
- HidePassword?: boolean;
5075
+ HidePassword?: boolean | undefined;
5076
5076
  }
5077
5077
  /**
5078
5078
  * <p>Defines a connection to a data source.</p>
@@ -5083,22 +5083,22 @@ export interface Connection {
5083
5083
  * <p>The name of the connection definition.</p>
5084
5084
  * @public
5085
5085
  */
5086
- Name?: string;
5086
+ Name?: string | undefined;
5087
5087
  /**
5088
5088
  * <p>The description of the connection.</p>
5089
5089
  * @public
5090
5090
  */
5091
- Description?: string;
5091
+ Description?: string | undefined;
5092
5092
  /**
5093
5093
  * <p>The type of the connection. Currently, SFTP is not supported.</p>
5094
5094
  * @public
5095
5095
  */
5096
- ConnectionType?: ConnectionType;
5096
+ ConnectionType?: ConnectionType | undefined;
5097
5097
  /**
5098
5098
  * <p>A list of criteria that can be used in selecting this connection.</p>
5099
5099
  * @public
5100
5100
  */
5101
- MatchCriteria?: string[];
5101
+ MatchCriteria?: string[] | undefined;
5102
5102
  /**
5103
5103
  * <p>These key-value pairs define parameters for the connection:</p>
5104
5104
  * <ul>
@@ -5302,52 +5302,52 @@ export interface Connection {
5302
5302
  * </ul>
5303
5303
  * @public
5304
5304
  */
5305
- ConnectionProperties?: Partial<Record<ConnectionPropertyKey, string>>;
5305
+ ConnectionProperties?: Partial<Record<ConnectionPropertyKey, string>> | undefined;
5306
5306
  /**
5307
5307
  * <p>This field is not currently used.</p>
5308
5308
  * @public
5309
5309
  */
5310
- AthenaProperties?: Record<string, string>;
5310
+ AthenaProperties?: Record<string, string> | undefined;
5311
5311
  /**
5312
5312
  * <p>The physical connection requirements, such as virtual private cloud (VPC) and <code>SecurityGroup</code>, that are needed to make this connection successfully.</p>
5313
5313
  * @public
5314
5314
  */
5315
- PhysicalConnectionRequirements?: PhysicalConnectionRequirements;
5315
+ PhysicalConnectionRequirements?: PhysicalConnectionRequirements | undefined;
5316
5316
  /**
5317
5317
  * <p>The timestamp of the time that this connection definition was created.</p>
5318
5318
  * @public
5319
5319
  */
5320
- CreationTime?: Date;
5320
+ CreationTime?: Date | undefined;
5321
5321
  /**
5322
5322
  * <p>The timestamp of the last time the connection definition was updated.</p>
5323
5323
  * @public
5324
5324
  */
5325
- LastUpdatedTime?: Date;
5325
+ LastUpdatedTime?: Date | undefined;
5326
5326
  /**
5327
5327
  * <p>The user, group, or role that last updated this connection definition.</p>
5328
5328
  * @public
5329
5329
  */
5330
- LastUpdatedBy?: string;
5330
+ LastUpdatedBy?: string | undefined;
5331
5331
  /**
5332
5332
  * <p>The status of the connection. Can be one of: <code>READY</code>, <code>IN_PROGRESS</code>, or <code>FAILED</code>.</p>
5333
5333
  * @public
5334
5334
  */
5335
- Status?: ConnectionStatus;
5335
+ Status?: ConnectionStatus | undefined;
5336
5336
  /**
5337
5337
  * <p>The reason for the connection status.</p>
5338
5338
  * @public
5339
5339
  */
5340
- StatusReason?: string;
5340
+ StatusReason?: string | undefined;
5341
5341
  /**
5342
5342
  * <p>A timestamp of the time this connection was last validated.</p>
5343
5343
  * @public
5344
5344
  */
5345
- LastConnectionValidationTime?: Date;
5345
+ LastConnectionValidationTime?: Date | undefined;
5346
5346
  /**
5347
5347
  * <p>The authentication properties of the connection.</p>
5348
5348
  * @public
5349
5349
  */
5350
- AuthenticationConfiguration?: AuthenticationConfiguration;
5350
+ AuthenticationConfiguration?: AuthenticationConfiguration | undefined;
5351
5351
  }
5352
5352
  /**
5353
5353
  * @public
@@ -5357,7 +5357,7 @@ export interface GetConnectionResponse {
5357
5357
  * <p>The requested connection definition.</p>
5358
5358
  * @public
5359
5359
  */
5360
- Connection?: Connection;
5360
+ Connection?: Connection | undefined;
5361
5361
  }
5362
5362
  /**
5363
5363
  * <p>Filters the connection definitions that are returned by the <code>GetConnections</code>
@@ -5370,12 +5370,12 @@ export interface GetConnectionsFilter {
5370
5370
  * connection definition for that connection definition to be returned.</p>
5371
5371
  * @public
5372
5372
  */
5373
- MatchCriteria?: string[];
5373
+ MatchCriteria?: string[] | undefined;
5374
5374
  /**
5375
5375
  * <p>The type of connections to return. Currently, SFTP is not supported.</p>
5376
5376
  * @public
5377
5377
  */
5378
- ConnectionType?: ConnectionType;
5378
+ ConnectionType?: ConnectionType | undefined;
5379
5379
  }
5380
5380
  /**
5381
5381
  * @public
@@ -5386,12 +5386,12 @@ export interface GetConnectionsRequest {
5386
5386
  * account ID is used by default.</p>
5387
5387
  * @public
5388
5388
  */
5389
- CatalogId?: string;
5389
+ CatalogId?: string | undefined;
5390
5390
  /**
5391
5391
  * <p>A filter that controls which connections are returned.</p>
5392
5392
  * @public
5393
5393
  */
5394
- Filter?: GetConnectionsFilter;
5394
+ Filter?: GetConnectionsFilter | undefined;
5395
5395
  /**
5396
5396
  * <p>Allows you to retrieve the connection metadata without returning the password. For
5397
5397
  * instance, the Glue console uses this flag to retrieve the connection, and does not display
@@ -5400,17 +5400,17 @@ export interface GetConnectionsRequest {
5400
5400
  * properties.</p>
5401
5401
  * @public
5402
5402
  */
5403
- HidePassword?: boolean;
5403
+ HidePassword?: boolean | undefined;
5404
5404
  /**
5405
5405
  * <p>A continuation token, if this is a continuation call.</p>
5406
5406
  * @public
5407
5407
  */
5408
- NextToken?: string;
5408
+ NextToken?: string | undefined;
5409
5409
  /**
5410
5410
  * <p>The maximum number of connections to return in one response.</p>
5411
5411
  * @public
5412
5412
  */
5413
- MaxResults?: number;
5413
+ MaxResults?: number | undefined;
5414
5414
  }
5415
5415
  /**
5416
5416
  * @public
@@ -5420,13 +5420,13 @@ export interface GetConnectionsResponse {
5420
5420
  * <p>A list of requested connection definitions.</p>
5421
5421
  * @public
5422
5422
  */
5423
- ConnectionList?: Connection[];
5423
+ ConnectionList?: Connection[] | undefined;
5424
5424
  /**
5425
5425
  * <p>A continuation token, if the list of connections returned does not
5426
5426
  * include the last of the filtered connections.</p>
5427
5427
  * @public
5428
5428
  */
5429
- NextToken?: string;
5429
+ NextToken?: string | undefined;
5430
5430
  }
5431
5431
  /**
5432
5432
  * @public
@@ -5446,7 +5446,7 @@ export interface GetCrawlerResponse {
5446
5446
  * <p>The metadata for the specified crawler.</p>
5447
5447
  * @public
5448
5448
  */
5449
- Crawler?: Crawler;
5449
+ Crawler?: Crawler | undefined;
5450
5450
  }
5451
5451
  /**
5452
5452
  * @public
@@ -5456,17 +5456,17 @@ export interface GetCrawlerMetricsRequest {
5456
5456
  * <p>A list of the names of crawlers about which to retrieve metrics.</p>
5457
5457
  * @public
5458
5458
  */
5459
- CrawlerNameList?: string[];
5459
+ CrawlerNameList?: string[] | undefined;
5460
5460
  /**
5461
5461
  * <p>The maximum size of a list to return.</p>
5462
5462
  * @public
5463
5463
  */
5464
- MaxResults?: number;
5464
+ MaxResults?: number | undefined;
5465
5465
  /**
5466
5466
  * <p>A continuation token, if this is a continuation call.</p>
5467
5467
  * @public
5468
5468
  */
5469
- NextToken?: string;
5469
+ NextToken?: string | undefined;
5470
5470
  }
5471
5471
  /**
5472
5472
  * <p>Metrics for a specified crawler.</p>
@@ -5477,42 +5477,42 @@ export interface CrawlerMetrics {
5477
5477
  * <p>The name of the crawler.</p>
5478
5478
  * @public
5479
5479
  */
5480
- CrawlerName?: string;
5480
+ CrawlerName?: string | undefined;
5481
5481
  /**
5482
5482
  * <p>The estimated time left to complete a running crawl.</p>
5483
5483
  * @public
5484
5484
  */
5485
- TimeLeftSeconds?: number;
5485
+ TimeLeftSeconds?: number | undefined;
5486
5486
  /**
5487
5487
  * <p>True if the crawler is still estimating how long it will take to complete this run.</p>
5488
5488
  * @public
5489
5489
  */
5490
- StillEstimating?: boolean;
5490
+ StillEstimating?: boolean | undefined;
5491
5491
  /**
5492
5492
  * <p>The duration of the crawler's most recent run, in seconds.</p>
5493
5493
  * @public
5494
5494
  */
5495
- LastRuntimeSeconds?: number;
5495
+ LastRuntimeSeconds?: number | undefined;
5496
5496
  /**
5497
5497
  * <p>The median duration of this crawler's runs, in seconds.</p>
5498
5498
  * @public
5499
5499
  */
5500
- MedianRuntimeSeconds?: number;
5500
+ MedianRuntimeSeconds?: number | undefined;
5501
5501
  /**
5502
5502
  * <p>The number of tables created by this crawler.</p>
5503
5503
  * @public
5504
5504
  */
5505
- TablesCreated?: number;
5505
+ TablesCreated?: number | undefined;
5506
5506
  /**
5507
5507
  * <p>The number of tables updated by this crawler.</p>
5508
5508
  * @public
5509
5509
  */
5510
- TablesUpdated?: number;
5510
+ TablesUpdated?: number | undefined;
5511
5511
  /**
5512
5512
  * <p>The number of tables deleted by this crawler.</p>
5513
5513
  * @public
5514
5514
  */
5515
- TablesDeleted?: number;
5515
+ TablesDeleted?: number | undefined;
5516
5516
  }
5517
5517
  /**
5518
5518
  * @public
@@ -5522,13 +5522,13 @@ export interface GetCrawlerMetricsResponse {
5522
5522
  * <p>A list of metrics for the specified crawler.</p>
5523
5523
  * @public
5524
5524
  */
5525
- CrawlerMetricsList?: CrawlerMetrics[];
5525
+ CrawlerMetricsList?: CrawlerMetrics[] | undefined;
5526
5526
  /**
5527
5527
  * <p>A continuation token, if the returned list does not contain the
5528
5528
  * last metric available.</p>
5529
5529
  * @public
5530
5530
  */
5531
- NextToken?: string;
5531
+ NextToken?: string | undefined;
5532
5532
  }
5533
5533
  /**
5534
5534
  * @public
@@ -5538,12 +5538,12 @@ export interface GetCrawlersRequest {
5538
5538
  * <p>The number of crawlers to return on each call.</p>
5539
5539
  * @public
5540
5540
  */
5541
- MaxResults?: number;
5541
+ MaxResults?: number | undefined;
5542
5542
  /**
5543
5543
  * <p>A continuation token, if this is a continuation request.</p>
5544
5544
  * @public
5545
5545
  */
5546
- NextToken?: string;
5546
+ NextToken?: string | undefined;
5547
5547
  }
5548
5548
  /**
5549
5549
  * @public
@@ -5553,13 +5553,13 @@ export interface GetCrawlersResponse {
5553
5553
  * <p>A list of crawler metadata.</p>
5554
5554
  * @public
5555
5555
  */
5556
- Crawlers?: Crawler[];
5556
+ Crawlers?: Crawler[] | undefined;
5557
5557
  /**
5558
5558
  * <p>A continuation token, if the returned list has not reached the end
5559
5559
  * of those defined in this customer account.</p>
5560
5560
  * @public
5561
5561
  */
5562
- NextToken?: string;
5562
+ NextToken?: string | undefined;
5563
5563
  }
5564
5564
  /**
5565
5565
  * @public
@@ -5579,17 +5579,17 @@ export interface GetCustomEntityTypeResponse {
5579
5579
  * <p>The name of the custom pattern that you retrieved.</p>
5580
5580
  * @public
5581
5581
  */
5582
- Name?: string;
5582
+ Name?: string | undefined;
5583
5583
  /**
5584
5584
  * <p>A regular expression string that is used for detecting sensitive data in a custom pattern.</p>
5585
5585
  * @public
5586
5586
  */
5587
- RegexString?: string;
5587
+ RegexString?: string | undefined;
5588
5588
  /**
5589
5589
  * <p>A list of context words if specified when you created the custom pattern. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data.</p>
5590
5590
  * @public
5591
5591
  */
5592
- ContextWords?: string[];
5592
+ ContextWords?: string[] | undefined;
5593
5593
  }
5594
5594
  /**
5595
5595
  * @public
@@ -5600,7 +5600,7 @@ export interface GetDatabaseRequest {
5600
5600
  * account ID is used by default.</p>
5601
5601
  * @public
5602
5602
  */
5603
- CatalogId?: string;
5603
+ CatalogId?: string | undefined;
5604
5604
  /**
5605
5605
  * <p>The name of the database to retrieve. For Hive compatibility, this
5606
5606
  * should be all lowercase.</p>
@@ -5624,43 +5624,43 @@ export interface Database {
5624
5624
  * <p>A description of the database.</p>
5625
5625
  * @public
5626
5626
  */
5627
- Description?: string;
5627
+ Description?: string | undefined;
5628
5628
  /**
5629
5629
  * <p>The location of the database (for example, an HDFS path).</p>
5630
5630
  * @public
5631
5631
  */
5632
- LocationUri?: string;
5632
+ LocationUri?: string | undefined;
5633
5633
  /**
5634
5634
  * <p>These key-value pairs define parameters and properties
5635
5635
  * of the database.</p>
5636
5636
  * @public
5637
5637
  */
5638
- Parameters?: Record<string, string>;
5638
+ Parameters?: Record<string, string> | undefined;
5639
5639
  /**
5640
5640
  * <p>The time at which the metadata database was created in the catalog.</p>
5641
5641
  * @public
5642
5642
  */
5643
- CreateTime?: Date;
5643
+ CreateTime?: Date | undefined;
5644
5644
  /**
5645
5645
  * <p>Creates a set of default permissions on the table for principals. Used by Lake Formation. Not used in the normal course of Glue operations.</p>
5646
5646
  * @public
5647
5647
  */
5648
- CreateTableDefaultPermissions?: PrincipalPermissions[];
5648
+ CreateTableDefaultPermissions?: PrincipalPermissions[] | undefined;
5649
5649
  /**
5650
5650
  * <p>A <code>DatabaseIdentifier</code> structure that describes a target database for resource linking.</p>
5651
5651
  * @public
5652
5652
  */
5653
- TargetDatabase?: DatabaseIdentifier;
5653
+ TargetDatabase?: DatabaseIdentifier | undefined;
5654
5654
  /**
5655
5655
  * <p>The ID of the Data Catalog in which the database resides.</p>
5656
5656
  * @public
5657
5657
  */
5658
- CatalogId?: string;
5658
+ CatalogId?: string | undefined;
5659
5659
  /**
5660
5660
  * <p>A <code>FederatedDatabase</code> structure that references an entity outside the Glue Data Catalog.</p>
5661
5661
  * @public
5662
5662
  */
5663
- FederatedDatabase?: FederatedDatabase;
5663
+ FederatedDatabase?: FederatedDatabase | undefined;
5664
5664
  }
5665
5665
  /**
5666
5666
  * @public
@@ -5670,7 +5670,7 @@ export interface GetDatabaseResponse {
5670
5670
  * <p>The definition of the specified database in the Data Catalog.</p>
5671
5671
  * @public
5672
5672
  */
5673
- Database?: Database;
5673
+ Database?: Database | undefined;
5674
5674
  }
5675
5675
  /**
5676
5676
  * @public
@@ -5705,17 +5705,17 @@ export interface GetDatabasesRequest {
5705
5705
  * provided, the Amazon Web Services account ID is used by default.</p>
5706
5706
  * @public
5707
5707
  */
5708
- CatalogId?: string;
5708
+ CatalogId?: string | undefined;
5709
5709
  /**
5710
5710
  * <p>A continuation token, if this is a continuation call.</p>
5711
5711
  * @public
5712
5712
  */
5713
- NextToken?: string;
5713
+ NextToken?: string | undefined;
5714
5714
  /**
5715
5715
  * <p>The maximum number of databases to return in one response.</p>
5716
5716
  * @public
5717
5717
  */
5718
- MaxResults?: number;
5718
+ MaxResults?: number | undefined;
5719
5719
  /**
5720
5720
  * <p>Allows you to specify that you want to list the databases shared with your account. The allowable values are <code>FEDERATED</code>, <code>FOREIGN</code> or <code>ALL</code>. </p>
5721
5721
  * <ul>
@@ -5731,12 +5731,12 @@ export interface GetDatabasesRequest {
5731
5731
  * </ul>
5732
5732
  * @public
5733
5733
  */
5734
- ResourceShareType?: ResourceShareType;
5734
+ ResourceShareType?: ResourceShareType | undefined;
5735
5735
  /**
5736
5736
  * <p>Specifies the database fields returned by the <code>GetDatabases</code> call. This parameter doesn’t accept an empty list. The request must include the <code>NAME</code>.</p>
5737
5737
  * @public
5738
5738
  */
5739
- AttributesToGet?: DatabaseAttributes[];
5739
+ AttributesToGet?: DatabaseAttributes[] | undefined;
5740
5740
  }
5741
5741
  /**
5742
5742
  * @public
@@ -5752,7 +5752,7 @@ export interface GetDatabasesResponse {
5752
5752
  * returned if the current segment of the list is not the last.</p>
5753
5753
  * @public
5754
5754
  */
5755
- NextToken?: string;
5755
+ NextToken?: string | undefined;
5756
5756
  }
5757
5757
  /**
5758
5758
  * @public
@@ -5763,7 +5763,7 @@ export interface GetDataCatalogEncryptionSettingsRequest {
5763
5763
  * provided, the Amazon Web Services account ID is used by default.</p>
5764
5764
  * @public
5765
5765
  */
5766
- CatalogId?: string;
5766
+ CatalogId?: string | undefined;
5767
5767
  }
5768
5768
  /**
5769
5769
  * <p>The data structure used by the Data Catalog to encrypt the password as part of
@@ -5792,7 +5792,7 @@ export interface ConnectionPasswordEncryption {
5792
5792
  * <p>You can set the decrypt permission to enable or restrict access on the password key according to your security requirements.</p>
5793
5793
  * @public
5794
5794
  */
5795
- AwsKmsKeyId?: string;
5795
+ AwsKmsKeyId?: string | undefined;
5796
5796
  }
5797
5797
  /**
5798
5798
  * @public
@@ -5821,12 +5821,12 @@ export interface EncryptionAtRest {
5821
5821
  * <p>The ID of the KMS key to use for encryption at rest.</p>
5822
5822
  * @public
5823
5823
  */
5824
- SseAwsKmsKeyId?: string;
5824
+ SseAwsKmsKeyId?: string | undefined;
5825
5825
  /**
5826
5826
  * <p>The role that Glue assumes to encrypt and decrypt the Data Catalog objects on the caller's behalf.</p>
5827
5827
  * @public
5828
5828
  */
5829
- CatalogEncryptionServiceRole?: string;
5829
+ CatalogEncryptionServiceRole?: string | undefined;
5830
5830
  }
5831
5831
  /**
5832
5832
  * <p>Contains configuration information for maintaining Data Catalog security.</p>
@@ -5837,7 +5837,7 @@ export interface DataCatalogEncryptionSettings {
5837
5837
  * <p>Specifies the encryption-at-rest configuration for the Data Catalog.</p>
5838
5838
  * @public
5839
5839
  */
5840
- EncryptionAtRest?: EncryptionAtRest;
5840
+ EncryptionAtRest?: EncryptionAtRest | undefined;
5841
5841
  /**
5842
5842
  * <p>When connection password protection is enabled, the Data Catalog uses a customer-provided
5843
5843
  * key to encrypt the password as part of <code>CreateConnection</code> or
@@ -5846,7 +5846,7 @@ export interface DataCatalogEncryptionSettings {
5846
5846
  * encryption.</p>
5847
5847
  * @public
5848
5848
  */
5849
- ConnectionPasswordEncryption?: ConnectionPasswordEncryption;
5849
+ ConnectionPasswordEncryption?: ConnectionPasswordEncryption | undefined;
5850
5850
  }
5851
5851
  /**
5852
5852
  * @public
@@ -5856,7 +5856,7 @@ export interface GetDataCatalogEncryptionSettingsResponse {
5856
5856
  * <p>The requested security configuration.</p>
5857
5857
  * @public
5858
5858
  */
5859
- DataCatalogEncryptionSettings?: DataCatalogEncryptionSettings;
5859
+ DataCatalogEncryptionSettings?: DataCatalogEncryptionSettings | undefined;
5860
5860
  }
5861
5861
  /**
5862
5862
  * @public
@@ -5866,7 +5866,7 @@ export interface GetDataflowGraphRequest {
5866
5866
  * <p>The Python script to transform.</p>
5867
5867
  * @public
5868
5868
  */
5869
- PythonScript?: string;
5869
+ PythonScript?: string | undefined;
5870
5870
  }
5871
5871
  /**
5872
5872
  * @public
@@ -5876,12 +5876,12 @@ export interface GetDataflowGraphResponse {
5876
5876
  * <p>A list of the nodes in the resulting DAG.</p>
5877
5877
  * @public
5878
5878
  */
5879
- DagNodes?: CodeGenNode[];
5879
+ DagNodes?: CodeGenNode[] | undefined;
5880
5880
  /**
5881
5881
  * <p>A list of the edges in the resulting DAG.</p>
5882
5882
  * @public
5883
5883
  */
5884
- DagEdges?: CodeGenEdge[];
5884
+ DagEdges?: CodeGenEdge[] | undefined;
5885
5885
  }
5886
5886
  /**
5887
5887
  * @public
@@ -5891,7 +5891,7 @@ export interface GetDataQualityModelRequest {
5891
5891
  * <p>The Statistic ID.</p>
5892
5892
  * @public
5893
5893
  */
5894
- StatisticId?: string;
5894
+ StatisticId?: string | undefined;
5895
5895
  /**
5896
5896
  * <p>The Profile ID.</p>
5897
5897
  * @public
@@ -5919,22 +5919,22 @@ export interface GetDataQualityModelResponse {
5919
5919
  * <p>The training status of the data quality model.</p>
5920
5920
  * @public
5921
5921
  */
5922
- Status?: DataQualityModelStatus;
5922
+ Status?: DataQualityModelStatus | undefined;
5923
5923
  /**
5924
5924
  * <p>The timestamp when the data quality model training started.</p>
5925
5925
  * @public
5926
5926
  */
5927
- StartedOn?: Date;
5927
+ StartedOn?: Date | undefined;
5928
5928
  /**
5929
5929
  * <p>The timestamp when the data quality model training completed.</p>
5930
5930
  * @public
5931
5931
  */
5932
- CompletedOn?: Date;
5932
+ CompletedOn?: Date | undefined;
5933
5933
  /**
5934
5934
  * <p>The training failure reason.</p>
5935
5935
  * @public
5936
5936
  */
5937
- FailureReason?: string;
5937
+ FailureReason?: string | undefined;
5938
5938
  }
5939
5939
  /**
5940
5940
  * @public
@@ -5960,32 +5960,32 @@ export interface StatisticModelResult {
5960
5960
  * <p>The lower bound.</p>
5961
5961
  * @public
5962
5962
  */
5963
- LowerBound?: number;
5963
+ LowerBound?: number | undefined;
5964
5964
  /**
5965
5965
  * <p>The upper bound.</p>
5966
5966
  * @public
5967
5967
  */
5968
- UpperBound?: number;
5968
+ UpperBound?: number | undefined;
5969
5969
  /**
5970
5970
  * <p>The predicted value.</p>
5971
5971
  * @public
5972
5972
  */
5973
- PredictedValue?: number;
5973
+ PredictedValue?: number | undefined;
5974
5974
  /**
5975
5975
  * <p>The actual value.</p>
5976
5976
  * @public
5977
5977
  */
5978
- ActualValue?: number;
5978
+ ActualValue?: number | undefined;
5979
5979
  /**
5980
5980
  * <p>The date.</p>
5981
5981
  * @public
5982
5982
  */
5983
- Date?: Date;
5983
+ Date?: Date | undefined;
5984
5984
  /**
5985
5985
  * <p>The inclusion annotation.</p>
5986
5986
  * @public
5987
5987
  */
5988
- InclusionAnnotation?: InclusionAnnotationValue;
5988
+ InclusionAnnotation?: InclusionAnnotationValue | undefined;
5989
5989
  }
5990
5990
  /**
5991
5991
  * @public
@@ -5995,13 +5995,13 @@ export interface GetDataQualityModelResultResponse {
5995
5995
  * <p>The timestamp when the data quality model training completed.</p>
5996
5996
  * @public
5997
5997
  */
5998
- CompletedOn?: Date;
5998
+ CompletedOn?: Date | undefined;
5999
5999
  /**
6000
6000
  * <p>A list of <code>StatisticModelResult</code>
6001
6001
  * </p>
6002
6002
  * @public
6003
6003
  */
6004
- Model?: StatisticModelResult[];
6004
+ Model?: StatisticModelResult[] | undefined;
6005
6005
  }
6006
6006
  /**
6007
6007
  * @public
@@ -6021,72 +6021,72 @@ export interface GetDataQualityResultResponse {
6021
6021
  * <p>A unique result ID for the data quality result.</p>
6022
6022
  * @public
6023
6023
  */
6024
- ResultId?: string;
6024
+ ResultId?: string | undefined;
6025
6025
  /**
6026
6026
  * <p>The Profile ID for the data quality result.</p>
6027
6027
  * @public
6028
6028
  */
6029
- ProfileId?: string;
6029
+ ProfileId?: string | undefined;
6030
6030
  /**
6031
6031
  * <p>An aggregate data quality score. Represents the ratio of rules that passed to the total number of rules.</p>
6032
6032
  * @public
6033
6033
  */
6034
- Score?: number;
6034
+ Score?: number | undefined;
6035
6035
  /**
6036
6036
  * <p>The table associated with the data quality result, if any.</p>
6037
6037
  * @public
6038
6038
  */
6039
- DataSource?: DataSource;
6039
+ DataSource?: DataSource | undefined;
6040
6040
  /**
6041
6041
  * <p>The name of the ruleset associated with the data quality result.</p>
6042
6042
  * @public
6043
6043
  */
6044
- RulesetName?: string;
6044
+ RulesetName?: string | undefined;
6045
6045
  /**
6046
6046
  * <p>In the context of a job in Glue Studio, each node in the canvas is typically assigned some sort of name and data quality nodes will have names. In the case of multiple nodes, the <code>evaluationContext</code> can differentiate the nodes.</p>
6047
6047
  * @public
6048
6048
  */
6049
- EvaluationContext?: string;
6049
+ EvaluationContext?: string | undefined;
6050
6050
  /**
6051
6051
  * <p>The date and time when the run for this data quality result started.</p>
6052
6052
  * @public
6053
6053
  */
6054
- StartedOn?: Date;
6054
+ StartedOn?: Date | undefined;
6055
6055
  /**
6056
6056
  * <p>The date and time when the run for this data quality result was completed.</p>
6057
6057
  * @public
6058
6058
  */
6059
- CompletedOn?: Date;
6059
+ CompletedOn?: Date | undefined;
6060
6060
  /**
6061
6061
  * <p>The job name associated with the data quality result, if any.</p>
6062
6062
  * @public
6063
6063
  */
6064
- JobName?: string;
6064
+ JobName?: string | undefined;
6065
6065
  /**
6066
6066
  * <p>The job run ID associated with the data quality result, if any.</p>
6067
6067
  * @public
6068
6068
  */
6069
- JobRunId?: string;
6069
+ JobRunId?: string | undefined;
6070
6070
  /**
6071
6071
  * <p>The unique run ID associated with the ruleset evaluation.</p>
6072
6072
  * @public
6073
6073
  */
6074
- RulesetEvaluationRunId?: string;
6074
+ RulesetEvaluationRunId?: string | undefined;
6075
6075
  /**
6076
6076
  * <p>A list of <code>DataQualityRuleResult</code> objects representing the results for each rule. </p>
6077
6077
  * @public
6078
6078
  */
6079
- RuleResults?: DataQualityRuleResult[];
6079
+ RuleResults?: DataQualityRuleResult[] | undefined;
6080
6080
  /**
6081
6081
  * <p>A list of <code>DataQualityAnalyzerResult</code> objects representing the results for each analyzer. </p>
6082
6082
  * @public
6083
6083
  */
6084
- AnalyzerResults?: DataQualityAnalyzerResult[];
6084
+ AnalyzerResults?: DataQualityAnalyzerResult[] | undefined;
6085
6085
  /**
6086
6086
  * <p>A list of <code>DataQualityObservation</code> objects representing the observations generated after evaluating the rules and analyzers. </p>
6087
6087
  * @public
6088
6088
  */
6089
- Observations?: DataQualityObservation[];
6089
+ Observations?: DataQualityObservation[] | undefined;
6090
6090
  }
6091
6091
  /**
6092
6092
  * @public
@@ -6106,72 +6106,72 @@ export interface GetDataQualityRuleRecommendationRunResponse {
6106
6106
  * <p>The unique run identifier associated with this run.</p>
6107
6107
  * @public
6108
6108
  */
6109
- RunId?: string;
6109
+ RunId?: string | undefined;
6110
6110
  /**
6111
6111
  * <p>The data source (an Glue table) associated with this run.</p>
6112
6112
  * @public
6113
6113
  */
6114
- DataSource?: DataSource;
6114
+ DataSource?: DataSource | undefined;
6115
6115
  /**
6116
6116
  * <p>An IAM role supplied to encrypt the results of the run.</p>
6117
6117
  * @public
6118
6118
  */
6119
- Role?: string;
6119
+ Role?: string | undefined;
6120
6120
  /**
6121
6121
  * <p>The number of <code>G.1X</code> workers to be used in the run. The default is 5.</p>
6122
6122
  * @public
6123
6123
  */
6124
- NumberOfWorkers?: number;
6124
+ NumberOfWorkers?: number | undefined;
6125
6125
  /**
6126
6126
  * <p>The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters <code>TIMEOUT</code> status. The default is 2,880 minutes (48 hours).</p>
6127
6127
  * @public
6128
6128
  */
6129
- Timeout?: number;
6129
+ Timeout?: number | undefined;
6130
6130
  /**
6131
6131
  * <p>The status for this run.</p>
6132
6132
  * @public
6133
6133
  */
6134
- Status?: TaskStatusType;
6134
+ Status?: TaskStatusType | undefined;
6135
6135
  /**
6136
6136
  * <p>The error strings that are associated with the run.</p>
6137
6137
  * @public
6138
6138
  */
6139
- ErrorString?: string;
6139
+ ErrorString?: string | undefined;
6140
6140
  /**
6141
6141
  * <p>The date and time when this run started.</p>
6142
6142
  * @public
6143
6143
  */
6144
- StartedOn?: Date;
6144
+ StartedOn?: Date | undefined;
6145
6145
  /**
6146
6146
  * <p>A timestamp. The last point in time when this data quality rule recommendation run was modified.</p>
6147
6147
  * @public
6148
6148
  */
6149
- LastModifiedOn?: Date;
6149
+ LastModifiedOn?: Date | undefined;
6150
6150
  /**
6151
6151
  * <p>The date and time when this run was completed.</p>
6152
6152
  * @public
6153
6153
  */
6154
- CompletedOn?: Date;
6154
+ CompletedOn?: Date | undefined;
6155
6155
  /**
6156
6156
  * <p>The amount of time (in seconds) that the run consumed resources.</p>
6157
6157
  * @public
6158
6158
  */
6159
- ExecutionTime?: number;
6159
+ ExecutionTime?: number | undefined;
6160
6160
  /**
6161
6161
  * <p>When a start rule recommendation run completes, it creates a recommended ruleset (a set of rules). This member has those rules in Data Quality Definition Language (DQDL) format.</p>
6162
6162
  * @public
6163
6163
  */
6164
- RecommendedRuleset?: string;
6164
+ RecommendedRuleset?: string | undefined;
6165
6165
  /**
6166
6166
  * <p>The name of the ruleset that was created by the run.</p>
6167
6167
  * @public
6168
6168
  */
6169
- CreatedRulesetName?: string;
6169
+ CreatedRulesetName?: string | undefined;
6170
6170
  /**
6171
6171
  * <p>The name of the security configuration created with the data quality encryption option.</p>
6172
6172
  * @public
6173
6173
  */
6174
- DataQualitySecurityConfiguration?: string;
6174
+ DataQualitySecurityConfiguration?: string | undefined;
6175
6175
  }
6176
6176
  /**
6177
6177
  * @public
@@ -6191,42 +6191,42 @@ export interface GetDataQualityRulesetResponse {
6191
6191
  * <p>The name of the ruleset.</p>
6192
6192
  * @public
6193
6193
  */
6194
- Name?: string;
6194
+ Name?: string | undefined;
6195
6195
  /**
6196
6196
  * <p>A description of the ruleset.</p>
6197
6197
  * @public
6198
6198
  */
6199
- Description?: string;
6199
+ Description?: string | undefined;
6200
6200
  /**
6201
6201
  * <p>A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.</p>
6202
6202
  * @public
6203
6203
  */
6204
- Ruleset?: string;
6204
+ Ruleset?: string | undefined;
6205
6205
  /**
6206
6206
  * <p>The name and database name of the target table.</p>
6207
6207
  * @public
6208
6208
  */
6209
- TargetTable?: DataQualityTargetTable;
6209
+ TargetTable?: DataQualityTargetTable | undefined;
6210
6210
  /**
6211
6211
  * <p>A timestamp. The time and date that this data quality ruleset was created.</p>
6212
6212
  * @public
6213
6213
  */
6214
- CreatedOn?: Date;
6214
+ CreatedOn?: Date | undefined;
6215
6215
  /**
6216
6216
  * <p>A timestamp. The last point in time when this data quality ruleset was modified.</p>
6217
6217
  * @public
6218
6218
  */
6219
- LastModifiedOn?: Date;
6219
+ LastModifiedOn?: Date | undefined;
6220
6220
  /**
6221
6221
  * <p>When a ruleset was created from a recommendation run, this run ID is generated to link the two together.</p>
6222
6222
  * @public
6223
6223
  */
6224
- RecommendationRunId?: string;
6224
+ RecommendationRunId?: string | undefined;
6225
6225
  /**
6226
6226
  * <p>The name of the security configuration created with the data quality encryption option.</p>
6227
6227
  * @public
6228
6228
  */
6229
- DataQualitySecurityConfiguration?: string;
6229
+ DataQualitySecurityConfiguration?: string | undefined;
6230
6230
  }
6231
6231
  /**
6232
6232
  * @public
@@ -6259,17 +6259,17 @@ export interface DataQualityEvaluationRunAdditionalRunOptions {
6259
6259
  * <p>Whether or not to enable CloudWatch metrics.</p>
6260
6260
  * @public
6261
6261
  */
6262
- CloudWatchMetricsEnabled?: boolean;
6262
+ CloudWatchMetricsEnabled?: boolean | undefined;
6263
6263
  /**
6264
6264
  * <p>Prefix for Amazon S3 to store results.</p>
6265
6265
  * @public
6266
6266
  */
6267
- ResultsS3Prefix?: string;
6267
+ ResultsS3Prefix?: string | undefined;
6268
6268
  /**
6269
6269
  * <p>Set the evaluation method for composite rules in the ruleset to ROW/COLUMN</p>
6270
6270
  * @public
6271
6271
  */
6272
- CompositeRuleEvaluationMethod?: DQCompositeRuleEvaluationMethod;
6272
+ CompositeRuleEvaluationMethod?: DQCompositeRuleEvaluationMethod | undefined;
6273
6273
  }
6274
6274
  /**
6275
6275
  * @public
@@ -6279,77 +6279,77 @@ export interface GetDataQualityRulesetEvaluationRunResponse {
6279
6279
  * <p>The unique run identifier associated with this run.</p>
6280
6280
  * @public
6281
6281
  */
6282
- RunId?: string;
6282
+ RunId?: string | undefined;
6283
6283
  /**
6284
6284
  * <p>The data source (an Glue table) associated with this evaluation run.</p>
6285
6285
  * @public
6286
6286
  */
6287
- DataSource?: DataSource;
6287
+ DataSource?: DataSource | undefined;
6288
6288
  /**
6289
6289
  * <p>An IAM role supplied to encrypt the results of the run.</p>
6290
6290
  * @public
6291
6291
  */
6292
- Role?: string;
6292
+ Role?: string | undefined;
6293
6293
  /**
6294
6294
  * <p>The number of <code>G.1X</code> workers to be used in the run. The default is 5.</p>
6295
6295
  * @public
6296
6296
  */
6297
- NumberOfWorkers?: number;
6297
+ NumberOfWorkers?: number | undefined;
6298
6298
  /**
6299
6299
  * <p>The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters <code>TIMEOUT</code> status. The default is 2,880 minutes (48 hours).</p>
6300
6300
  * @public
6301
6301
  */
6302
- Timeout?: number;
6302
+ Timeout?: number | undefined;
6303
6303
  /**
6304
6304
  * <p>Additional run options you can specify for an evaluation run.</p>
6305
6305
  * @public
6306
6306
  */
6307
- AdditionalRunOptions?: DataQualityEvaluationRunAdditionalRunOptions;
6307
+ AdditionalRunOptions?: DataQualityEvaluationRunAdditionalRunOptions | undefined;
6308
6308
  /**
6309
6309
  * <p>The status for this run.</p>
6310
6310
  * @public
6311
6311
  */
6312
- Status?: TaskStatusType;
6312
+ Status?: TaskStatusType | undefined;
6313
6313
  /**
6314
6314
  * <p>The error strings that are associated with the run.</p>
6315
6315
  * @public
6316
6316
  */
6317
- ErrorString?: string;
6317
+ ErrorString?: string | undefined;
6318
6318
  /**
6319
6319
  * <p>The date and time when this run started.</p>
6320
6320
  * @public
6321
6321
  */
6322
- StartedOn?: Date;
6322
+ StartedOn?: Date | undefined;
6323
6323
  /**
6324
6324
  * <p>A timestamp. The last point in time when this data quality rule recommendation run was modified.</p>
6325
6325
  * @public
6326
6326
  */
6327
- LastModifiedOn?: Date;
6327
+ LastModifiedOn?: Date | undefined;
6328
6328
  /**
6329
6329
  * <p>The date and time when this run was completed.</p>
6330
6330
  * @public
6331
6331
  */
6332
- CompletedOn?: Date;
6332
+ CompletedOn?: Date | undefined;
6333
6333
  /**
6334
6334
  * <p>The amount of time (in seconds) that the run consumed resources.</p>
6335
6335
  * @public
6336
6336
  */
6337
- ExecutionTime?: number;
6337
+ ExecutionTime?: number | undefined;
6338
6338
  /**
6339
6339
  * <p>A list of ruleset names for the run. Currently, this parameter takes only one Ruleset name.</p>
6340
6340
  * @public
6341
6341
  */
6342
- RulesetNames?: string[];
6342
+ RulesetNames?: string[] | undefined;
6343
6343
  /**
6344
6344
  * <p>A list of result IDs for the data quality results for the run.</p>
6345
6345
  * @public
6346
6346
  */
6347
- ResultIds?: string[];
6347
+ ResultIds?: string[] | undefined;
6348
6348
  /**
6349
6349
  * <p>A map of reference strings to additional data sources you can specify for an evaluation run.</p>
6350
6350
  * @public
6351
6351
  */
6352
- AdditionalDataSources?: Record<string, DataSource>;
6352
+ AdditionalDataSources?: Record<string, DataSource> | undefined;
6353
6353
  }
6354
6354
  /**
6355
6355
  * @public
@@ -6369,7 +6369,7 @@ export interface GetDevEndpointResponse {
6369
6369
  * <p>A <code>DevEndpoint</code> definition.</p>
6370
6370
  * @public
6371
6371
  */
6372
- DevEndpoint?: DevEndpoint;
6372
+ DevEndpoint?: DevEndpoint | undefined;
6373
6373
  }
6374
6374
  /**
6375
6375
  * @public
@@ -6379,12 +6379,12 @@ export interface GetDevEndpointsRequest {
6379
6379
  * <p>The maximum size of information to return.</p>
6380
6380
  * @public
6381
6381
  */
6382
- MaxResults?: number;
6382
+ MaxResults?: number | undefined;
6383
6383
  /**
6384
6384
  * <p>A continuation token, if this is a continuation call.</p>
6385
6385
  * @public
6386
6386
  */
6387
- NextToken?: string;
6387
+ NextToken?: string | undefined;
6388
6388
  }
6389
6389
  /**
6390
6390
  * @public
@@ -6394,13 +6394,13 @@ export interface GetDevEndpointsResponse {
6394
6394
  * <p>A list of <code>DevEndpoint</code> definitions.</p>
6395
6395
  * @public
6396
6396
  */
6397
- DevEndpoints?: DevEndpoint[];
6397
+ DevEndpoints?: DevEndpoint[] | undefined;
6398
6398
  /**
6399
6399
  * <p>A continuation token, if not all <code>DevEndpoint</code> definitions have yet been
6400
6400
  * returned.</p>
6401
6401
  * @public
6402
6402
  */
6403
- NextToken?: string;
6403
+ NextToken?: string | undefined;
6404
6404
  }
6405
6405
  /**
6406
6406
  * @public
@@ -6425,7 +6425,7 @@ export interface GetJobBookmarkRequest {
6425
6425
  * <p>The unique run identifier associated with this job run.</p>
6426
6426
  * @public
6427
6427
  */
6428
- RunId?: string;
6428
+ RunId?: string | undefined;
6429
6429
  }
6430
6430
  /**
6431
6431
  * <p>Defines a point that a job can resume processing.</p>
@@ -6436,37 +6436,37 @@ export interface JobBookmarkEntry {
6436
6436
  * <p>The name of the job in question.</p>
6437
6437
  * @public
6438
6438
  */
6439
- JobName?: string;
6439
+ JobName?: string | undefined;
6440
6440
  /**
6441
6441
  * <p>The version of the job.</p>
6442
6442
  * @public
6443
6443
  */
6444
- Version?: number;
6444
+ Version?: number | undefined;
6445
6445
  /**
6446
6446
  * <p>The run ID number.</p>
6447
6447
  * @public
6448
6448
  */
6449
- Run?: number;
6449
+ Run?: number | undefined;
6450
6450
  /**
6451
6451
  * <p>The attempt ID number.</p>
6452
6452
  * @public
6453
6453
  */
6454
- Attempt?: number;
6454
+ Attempt?: number | undefined;
6455
6455
  /**
6456
6456
  * <p>The unique run identifier associated with the previous job run.</p>
6457
6457
  * @public
6458
6458
  */
6459
- PreviousRunId?: string;
6459
+ PreviousRunId?: string | undefined;
6460
6460
  /**
6461
6461
  * <p>The run ID number.</p>
6462
6462
  * @public
6463
6463
  */
6464
- RunId?: string;
6464
+ RunId?: string | undefined;
6465
6465
  /**
6466
6466
  * <p>The bookmark itself.</p>
6467
6467
  * @public
6468
6468
  */
6469
- JobBookmark?: string;
6469
+ JobBookmark?: string | undefined;
6470
6470
  }
6471
6471
  /**
6472
6472
  * @public
@@ -6476,7 +6476,7 @@ export interface GetJobBookmarkResponse {
6476
6476
  * <p>A structure that defines a point that a job can resume processing.</p>
6477
6477
  * @public
6478
6478
  */
6479
- JobBookmarkEntry?: JobBookmarkEntry;
6479
+ JobBookmarkEntry?: JobBookmarkEntry | undefined;
6480
6480
  }
6481
6481
  /**
6482
6482
  * @public
@@ -6496,7 +6496,7 @@ export interface GetJobRunRequest {
6496
6496
  * <p>True if a list of predecessor runs should be returned.</p>
6497
6497
  * @public
6498
6498
  */
6499
- PredecessorsIncluded?: boolean;
6499
+ PredecessorsIncluded?: boolean | undefined;
6500
6500
  }
6501
6501
  /**
6502
6502
  * @public
@@ -6506,7 +6506,7 @@ export interface GetJobRunResponse {
6506
6506
  * <p>The requested job-run metadata.</p>
6507
6507
  * @public
6508
6508
  */
6509
- JobRun?: JobRun;
6509
+ JobRun?: JobRun | undefined;
6510
6510
  }
6511
6511
  /**
6512
6512
  * @public
@@ -6521,12 +6521,12 @@ export interface GetJobRunsRequest {
6521
6521
  * <p>A continuation token, if this is a continuation call.</p>
6522
6522
  * @public
6523
6523
  */
6524
- NextToken?: string;
6524
+ NextToken?: string | undefined;
6525
6525
  /**
6526
6526
  * <p>The maximum size of the response.</p>
6527
6527
  * @public
6528
6528
  */
6529
- MaxResults?: number;
6529
+ MaxResults?: number | undefined;
6530
6530
  }
6531
6531
  /**
6532
6532
  * @public
@@ -6536,12 +6536,12 @@ export interface GetJobRunsResponse {
6536
6536
  * <p>A list of job-run metadata objects.</p>
6537
6537
  * @public
6538
6538
  */
6539
- JobRuns?: JobRun[];
6539
+ JobRuns?: JobRun[] | undefined;
6540
6540
  /**
6541
6541
  * <p>A continuation token, if not all requested job runs have been returned.</p>
6542
6542
  * @public
6543
6543
  */
6544
- NextToken?: string;
6544
+ NextToken?: string | undefined;
6545
6545
  }
6546
6546
  /**
6547
6547
  * @public
@@ -6551,12 +6551,12 @@ export interface GetJobsRequest {
6551
6551
  * <p>A continuation token, if this is a continuation call.</p>
6552
6552
  * @public
6553
6553
  */
6554
- NextToken?: string;
6554
+ NextToken?: string | undefined;
6555
6555
  /**
6556
6556
  * <p>The maximum size of the response.</p>
6557
6557
  * @public
6558
6558
  */
6559
- MaxResults?: number;
6559
+ MaxResults?: number | undefined;
6560
6560
  }
6561
6561
  /**
6562
6562
  * <p>The location of resources.</p>
@@ -6567,17 +6567,17 @@ export interface Location {
6567
6567
  * <p>A JDBC location.</p>
6568
6568
  * @public
6569
6569
  */
6570
- Jdbc?: CodeGenNodeArg[];
6570
+ Jdbc?: CodeGenNodeArg[] | undefined;
6571
6571
  /**
6572
6572
  * <p>An Amazon Simple Storage Service (Amazon S3) location.</p>
6573
6573
  * @public
6574
6574
  */
6575
- S3?: CodeGenNodeArg[];
6575
+ S3?: CodeGenNodeArg[] | undefined;
6576
6576
  /**
6577
6577
  * <p>An Amazon DynamoDB table location.</p>
6578
6578
  * @public
6579
6579
  */
6580
- DynamoDB?: CodeGenNodeArg[];
6580
+ DynamoDB?: CodeGenNodeArg[] | undefined;
6581
6581
  }
6582
6582
  /**
6583
6583
  * <p>Specifies a table definition in the Glue Data Catalog.</p>
@@ -6608,12 +6608,12 @@ export interface GetMappingRequest {
6608
6608
  * <p>A list of target tables.</p>
6609
6609
  * @public
6610
6610
  */
6611
- Sinks?: CatalogEntry[];
6611
+ Sinks?: CatalogEntry[] | undefined;
6612
6612
  /**
6613
6613
  * <p>Parameters for the mapping.</p>
6614
6614
  * @public
6615
6615
  */
6616
- Location?: Location;
6616
+ Location?: Location | undefined;
6617
6617
  }
6618
6618
  /**
6619
6619
  * <p>Defines a mapping.</p>
@@ -6624,32 +6624,32 @@ export interface MappingEntry {
6624
6624
  * <p>The name of the source table.</p>
6625
6625
  * @public
6626
6626
  */
6627
- SourceTable?: string;
6627
+ SourceTable?: string | undefined;
6628
6628
  /**
6629
6629
  * <p>The source path.</p>
6630
6630
  * @public
6631
6631
  */
6632
- SourcePath?: string;
6632
+ SourcePath?: string | undefined;
6633
6633
  /**
6634
6634
  * <p>The source type.</p>
6635
6635
  * @public
6636
6636
  */
6637
- SourceType?: string;
6637
+ SourceType?: string | undefined;
6638
6638
  /**
6639
6639
  * <p>The target table.</p>
6640
6640
  * @public
6641
6641
  */
6642
- TargetTable?: string;
6642
+ TargetTable?: string | undefined;
6643
6643
  /**
6644
6644
  * <p>The target path.</p>
6645
6645
  * @public
6646
6646
  */
6647
- TargetPath?: string;
6647
+ TargetPath?: string | undefined;
6648
6648
  /**
6649
6649
  * <p>The target type.</p>
6650
6650
  * @public
6651
6651
  */
6652
- TargetType?: string;
6652
+ TargetType?: string | undefined;
6653
6653
  }
6654
6654
  /**
6655
6655
  * @public
@@ -6686,7 +6686,7 @@ export interface ExportLabelsTaskRunProperties {
6686
6686
  * labels.</p>
6687
6687
  * @public
6688
6688
  */
6689
- OutputS3Path?: string;
6689
+ OutputS3Path?: string | undefined;
6690
6690
  }
6691
6691
  /**
6692
6692
  * <p>Specifies configuration properties for a Find Matches task run.</p>
@@ -6697,17 +6697,17 @@ export interface FindMatchesTaskRunProperties {
6697
6697
  * <p>The job ID for the Find Matches task run.</p>
6698
6698
  * @public
6699
6699
  */
6700
- JobId?: string;
6700
+ JobId?: string | undefined;
6701
6701
  /**
6702
6702
  * <p>The name assigned to the job for the Find Matches task run.</p>
6703
6703
  * @public
6704
6704
  */
6705
- JobName?: string;
6705
+ JobName?: string | undefined;
6706
6706
  /**
6707
6707
  * <p>The job run ID for the Find Matches task run.</p>
6708
6708
  * @public
6709
6709
  */
6710
- JobRunId?: string;
6710
+ JobRunId?: string | undefined;
6711
6711
  }
6712
6712
  /**
6713
6713
  * <p>Specifies configuration properties for an importing labels task run.</p>
@@ -6719,12 +6719,12 @@ export interface ImportLabelsTaskRunProperties {
6719
6719
  * labels.</p>
6720
6720
  * @public
6721
6721
  */
6722
- InputS3Path?: string;
6722
+ InputS3Path?: string | undefined;
6723
6723
  /**
6724
6724
  * <p>Indicates whether to overwrite your existing labels.</p>
6725
6725
  * @public
6726
6726
  */
6727
- Replace?: boolean;
6727
+ Replace?: boolean | undefined;
6728
6728
  }
6729
6729
  /**
6730
6730
  * <p>Specifies configuration properties for a labeling set generation task run.</p>
@@ -6736,7 +6736,7 @@ export interface LabelingSetGenerationTaskRunProperties {
6736
6736
  * set.</p>
6737
6737
  * @public
6738
6738
  */
6739
- OutputS3Path?: string;
6739
+ OutputS3Path?: string | undefined;
6740
6740
  }
6741
6741
  /**
6742
6742
  * @public