@aws-sdk/client-glue 3.857.0 → 3.858.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist-cjs/index.js +54 -18
  2. package/dist-es/models/models_0.js +8 -5
  3. package/dist-es/models/models_1.js +5 -0
  4. package/dist-es/models/models_2.js +0 -9
  5. package/dist-es/models/models_3.js +9 -0
  6. package/dist-es/protocols/Aws_json1_1.js +26 -0
  7. package/dist-types/commands/BatchGetJobsCommand.d.ts +181 -67
  8. package/dist-types/commands/CreateJobCommand.d.ts +181 -67
  9. package/dist-types/commands/GetClassifierCommand.d.ts +2 -1
  10. package/dist-types/commands/GetClassifiersCommand.d.ts +1 -1
  11. package/dist-types/commands/GetColumnStatisticsForPartitionCommand.d.ts +1 -2
  12. package/dist-types/commands/GetJobCommand.d.ts +181 -67
  13. package/dist-types/commands/GetJobsCommand.d.ts +181 -67
  14. package/dist-types/commands/ModifyIntegrationCommand.d.ts +2 -1
  15. package/dist-types/commands/PutDataCatalogEncryptionSettingsCommand.d.ts +1 -1
  16. package/dist-types/commands/PutDataQualityProfileAnnotationCommand.d.ts +1 -1
  17. package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateJobCommand.d.ts +181 -67
  19. package/dist-types/models/models_0.d.ts +445 -448
  20. package/dist-types/models/models_1.d.ts +430 -231
  21. package/dist-types/models/models_2.d.ts +232 -232
  22. package/dist-types/models/models_3.d.ts +298 -27
  23. package/dist-types/ts3.4/commands/GetClassifierCommand.d.ts +2 -4
  24. package/dist-types/ts3.4/commands/GetClassifiersCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/GetColumnStatisticsForPartitionCommand.d.ts +4 -2
  26. package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +2 -4
  27. package/dist-types/ts3.4/commands/PutDataCatalogEncryptionSettingsCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/PutDataQualityProfileAnnotationCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +94 -75
  31. package/dist-types/ts3.4/models/models_1.d.ts +82 -54
  32. package/dist-types/ts3.4/models/models_2.d.ts +56 -59
  33. package/dist-types/ts3.4/models/models_3.d.ts +69 -4
  34. package/package.json +5 -5
@@ -21,6 +21,7 @@ export interface Action {
21
21
  }
22
22
  export declare const AdditionalOptionKeys: {
23
23
  readonly CacheOption: "performanceTuning.caching";
24
+ readonly CompositeOption: "compositeRuleEvaluation.method";
24
25
  readonly ObservationsOption: "observations.scope";
25
26
  };
26
27
  export type AdditionalOptionKeys =
@@ -141,6 +142,7 @@ export interface StatisticAnnotation {
141
142
  export interface GlueStudioSchemaColumn {
142
143
  Name: string | undefined;
143
144
  Type?: string | undefined;
145
+ GlueStudioType?: string | undefined;
144
146
  }
145
147
  export interface GlueSchema {
146
148
  Columns?: GlueStudioSchemaColumn[] | undefined;
@@ -248,6 +250,10 @@ export interface AuthenticationConfigurationInput {
248
250
  BasicAuthenticationCredentials?: BasicAuthenticationCredentials | undefined;
249
251
  CustomAuthenticationCredentials?: Record<string, string> | undefined;
250
252
  }
253
+ export interface AutoDataQuality {
254
+ IsEnabled?: boolean | undefined;
255
+ EvaluationContext?: string | undefined;
256
+ }
251
257
  export interface Column {
252
258
  Name: string | undefined;
253
259
  Type?: string | undefined;
@@ -780,6 +786,13 @@ export interface CatalogHudiSource {
780
786
  AdditionalHudiOptions?: Record<string, string> | undefined;
781
787
  OutputSchemas?: GlueSchema[] | undefined;
782
788
  }
789
+ export interface CatalogIcebergSource {
790
+ Name: string | undefined;
791
+ Database: string | undefined;
792
+ Table: string | undefined;
793
+ AdditionalIcebergOptions?: Record<string, string> | undefined;
794
+ OutputSchemas?: GlueSchema[] | undefined;
795
+ }
783
796
  export interface StreamingDataPreviewOptions {
784
797
  PollingTime?: number | undefined;
785
798
  RecordPollingLimit?: number | undefined;
@@ -844,6 +857,7 @@ export interface KinesisStreamingSourceOptions {
844
857
  AddRecordTimestamp?: string | undefined;
845
858
  EmitConsumerLagMetrics?: string | undefined;
846
859
  StartingTimestamp?: Date | undefined;
860
+ FanoutConsumerARN?: string | undefined;
847
861
  }
848
862
  export interface CatalogKinesisSource {
849
863
  Name: string | undefined;
@@ -858,6 +872,8 @@ export interface CatalogSource {
858
872
  Name: string | undefined;
859
873
  Database: string | undefined;
860
874
  Table: string | undefined;
875
+ PartitionPredicate?: string | undefined;
876
+ OutputSchemas?: GlueSchema[] | undefined;
861
877
  }
862
878
  export interface BasicCatalogTarget {
863
879
  Name: string | undefined;
@@ -901,6 +917,7 @@ export interface DirectJDBCSource {
901
917
  ConnectionName: string | undefined;
902
918
  ConnectionType: JDBCConnectionType | undefined;
903
919
  RedshiftTmpDir?: string | undefined;
920
+ OutputSchemas?: GlueSchema[] | undefined;
904
921
  }
905
922
  export interface DirectKafkaSource {
906
923
  Name: string | undefined;
@@ -974,10 +991,35 @@ export interface DynamicTransform {
974
991
  Version?: string | undefined;
975
992
  OutputSchemas?: GlueSchema[] | undefined;
976
993
  }
994
+ export interface DDBELTCatalogAdditionalOptions {
995
+ DynamodbExport?: string | undefined;
996
+ DynamodbUnnestDDBJson?: boolean | undefined;
997
+ }
977
998
  export interface DynamoDBCatalogSource {
978
999
  Name: string | undefined;
979
1000
  Database: string | undefined;
980
1001
  Table: string | undefined;
1002
+ PitrEnabled?: boolean | undefined;
1003
+ AdditionalOptions?: DDBELTCatalogAdditionalOptions | undefined;
1004
+ }
1005
+ export declare const DdbExportType: {
1006
+ readonly ddb: "ddb";
1007
+ readonly s3: "s3";
1008
+ };
1009
+ export type DdbExportType = (typeof DdbExportType)[keyof typeof DdbExportType];
1010
+ export interface DDBELTConnectionOptions {
1011
+ DynamodbExport?: DdbExportType | undefined;
1012
+ DynamodbUnnestDDBJson?: boolean | undefined;
1013
+ DynamodbTableArn: string | undefined;
1014
+ DynamodbS3Bucket?: string | undefined;
1015
+ DynamodbS3Prefix?: string | undefined;
1016
+ DynamodbS3BucketOwner?: string | undefined;
1017
+ DynamodbStsRoleArn?: string | undefined;
1018
+ }
1019
+ export interface DynamoDBELTConnectorSource {
1020
+ Name: string | undefined;
1021
+ ConnectionOptions?: DDBELTConnectionOptions | undefined;
1022
+ OutputSchemas?: GlueSchema[] | undefined;
981
1023
  }
982
1024
  export declare const DQTransformOutput: {
983
1025
  readonly EvaluationResults: "EvaluationResults";
@@ -1236,9 +1278,12 @@ export interface OracleSQLCatalogTarget {
1236
1278
  }
1237
1279
  export declare const PiiType: {
1238
1280
  readonly ColumnAudit: "ColumnAudit";
1281
+ readonly ColumnHashing: "ColumnHashing";
1239
1282
  readonly ColumnMasking: "ColumnMasking";
1240
1283
  readonly RowAudit: "RowAudit";
1284
+ readonly RowHashing: "RowHashing";
1241
1285
  readonly RowMasking: "RowMasking";
1286
+ readonly RowPartialMasking: "RowPartialMasking";
1242
1287
  };
1243
1288
  export type PiiType = (typeof PiiType)[keyof typeof PiiType];
1244
1289
  export interface PIIDetection {
@@ -1250,6 +1295,13 @@ export interface PIIDetection {
1250
1295
  SampleFraction?: number | undefined;
1251
1296
  ThresholdFraction?: number | undefined;
1252
1297
  MaskValue?: string | undefined;
1298
+ RedactText?: string | undefined;
1299
+ RedactChar?: string | undefined;
1300
+ MatchPattern?: string | undefined;
1301
+ NumLeftCharsToExclude?: number | undefined;
1302
+ NumRightCharsToExclude?: number | undefined;
1303
+ DetectionParameters?: string | undefined;
1304
+ DetectionSensitivity?: string | undefined;
1253
1305
  }
1254
1306
  export interface PostgreSQLCatalogSource {
1255
1307
  Name: string | undefined;
@@ -1317,6 +1369,16 @@ export interface RenameField {
1317
1369
  SourcePath: string[] | undefined;
1318
1370
  TargetPath: string[] | undefined;
1319
1371
  }
1372
+ export interface GroupFilters {
1373
+ GroupName: string | undefined;
1374
+ Filters: FilterExpression[] | undefined;
1375
+ LogicalOperator: FilterLogicalOperator | undefined;
1376
+ }
1377
+ export interface Route {
1378
+ Name: string | undefined;
1379
+ Inputs: string[] | undefined;
1380
+ GroupFiltersList: GroupFilters[] | undefined;
1381
+ }
1320
1382
  export interface S3CatalogDeltaSource {
1321
1383
  Name: string | undefined;
1322
1384
  Database: string | undefined;
@@ -1331,6 +1393,13 @@ export interface S3CatalogHudiSource {
1331
1393
  AdditionalHudiOptions?: Record<string, string> | undefined;
1332
1394
  OutputSchemas?: GlueSchema[] | undefined;
1333
1395
  }
1396
+ export interface S3CatalogIcebergSource {
1397
+ Name: string | undefined;
1398
+ Database: string | undefined;
1399
+ Table: string | undefined;
1400
+ AdditionalIcebergOptions?: Record<string, string> | undefined;
1401
+ OutputSchemas?: GlueSchema[] | undefined;
1402
+ }
1334
1403
  export interface S3CatalogSource {
1335
1404
  Name: string | undefined;
1336
1405
  Database: string | undefined;
@@ -1345,6 +1414,7 @@ export interface S3CatalogTarget {
1345
1414
  Table: string | undefined;
1346
1415
  Database: string | undefined;
1347
1416
  SchemaChangePolicy?: CatalogSchemaChangePolicy | undefined;
1417
+ AutoDataQuality?: AutoDataQuality | undefined;
1348
1418
  }
1349
1419
  export interface S3DirectSourceAdditionalOptions {
1350
1420
  BoundedSize?: number | undefined;
@@ -1402,6 +1472,8 @@ export interface S3DeltaCatalogTarget {
1402
1472
  Database: string | undefined;
1403
1473
  AdditionalOptions?: Record<string, string> | undefined;
1404
1474
  SchemaChangePolicy?: CatalogSchemaChangePolicy | undefined;
1475
+ AutoDataQuality?: AutoDataQuality | undefined;
1476
+ OutputSchemas?: GlueSchema[] | undefined;
1405
1477
  }
1406
1478
  export declare const DeltaTargetCompressionType: {
1407
1479
  readonly SNAPPY: "snappy";
@@ -1438,6 +1510,7 @@ export interface S3DeltaDirectTarget {
1438
1510
  Format: TargetFormat | undefined;
1439
1511
  AdditionalOptions?: Record<string, string> | undefined;
1440
1512
  SchemaChangePolicy?: DirectSchemaChangePolicy | undefined;
1513
+ AutoDataQuality?: AutoDataQuality | undefined;
1441
1514
  }
1442
1515
  export interface S3DeltaSource {
1443
1516
  Name: string | undefined;
@@ -1455,6 +1528,8 @@ export interface S3DirectTarget {
1455
1528
  NumberTargetPartitions?: string | undefined;
1456
1529
  Format: TargetFormat | undefined;
1457
1530
  SchemaChangePolicy?: DirectSchemaChangePolicy | undefined;
1531
+ AutoDataQuality?: AutoDataQuality | undefined;
1532
+ OutputSchemas?: GlueSchema[] | undefined;
1458
1533
  }
1459
1534
  export declare const ParquetCompressionType: {
1460
1535
  readonly BROTLI: "brotli";
@@ -1490,6 +1565,7 @@ export interface S3GlueParquetTarget {
1490
1565
  Compression?: ParquetCompressionType | undefined;
1491
1566
  NumberTargetPartitions?: string | undefined;
1492
1567
  SchemaChangePolicy?: DirectSchemaChangePolicy | undefined;
1568
+ AutoDataQuality?: AutoDataQuality | undefined;
1493
1569
  }
1494
1570
  export interface S3HudiCatalogTarget {
1495
1571
  Name: string | undefined;
@@ -1499,6 +1575,8 @@ export interface S3HudiCatalogTarget {
1499
1575
  Database: string | undefined;
1500
1576
  AdditionalOptions: Record<string, string> | undefined;
1501
1577
  SchemaChangePolicy?: CatalogSchemaChangePolicy | undefined;
1578
+ AutoDataQuality?: AutoDataQuality | undefined;
1579
+ OutputSchemas?: GlueSchema[] | undefined;
1502
1580
  }
1503
1581
  export declare const HudiTargetCompressionType: {
1504
1582
  readonly GZIP: "gzip";
@@ -1518,6 +1596,7 @@ export interface S3HudiDirectTarget {
1518
1596
  Format: TargetFormat | undefined;
1519
1597
  AdditionalOptions: Record<string, string> | undefined;
1520
1598
  SchemaChangePolicy?: DirectSchemaChangePolicy | undefined;
1599
+ AutoDataQuality?: AutoDataQuality | undefined;
1521
1600
  }
1522
1601
  export interface S3HudiSource {
1523
1602
  Name: string | undefined;
@@ -1534,10 +1613,23 @@ export type HyperTargetCompressionType =
1534
1613
  export interface S3HyperDirectTarget {
1535
1614
  Name: string | undefined;
1536
1615
  Inputs: string[] | undefined;
1616
+ Format?: TargetFormat | undefined;
1537
1617
  PartitionKeys?: string[][] | undefined;
1538
1618
  Path: string | undefined;
1539
1619
  Compression?: HyperTargetCompressionType | undefined;
1540
1620
  SchemaChangePolicy?: DirectSchemaChangePolicy | undefined;
1621
+ AutoDataQuality?: AutoDataQuality | undefined;
1622
+ OutputSchemas?: GlueSchema[] | undefined;
1623
+ }
1624
+ export interface S3IcebergCatalogTarget {
1625
+ Name: string | undefined;
1626
+ Inputs: string[] | undefined;
1627
+ PartitionKeys?: string[][] | undefined;
1628
+ Table: string | undefined;
1629
+ Database: string | undefined;
1630
+ AdditionalOptions?: Record<string, string> | undefined;
1631
+ SchemaChangePolicy?: CatalogSchemaChangePolicy | undefined;
1632
+ AutoDataQuality?: AutoDataQuality | undefined;
1541
1633
  }
1542
1634
  export declare const IcebergTargetCompressionType: {
1543
1635
  readonly GZIP: "gzip";
@@ -1555,8 +1647,10 @@ export interface S3IcebergDirectTarget {
1555
1647
  Format: TargetFormat | undefined;
1556
1648
  AdditionalOptions?: Record<string, string> | undefined;
1557
1649
  SchemaChangePolicy?: DirectSchemaChangePolicy | undefined;
1650
+ AutoDataQuality?: AutoDataQuality | undefined;
1558
1651
  Compression: IcebergTargetCompressionType | undefined;
1559
1652
  NumberTargetPartitions?: string | undefined;
1653
+ OutputSchemas?: GlueSchema[] | undefined;
1560
1654
  }
1561
1655
  export interface S3JsonSource {
1562
1656
  Name: string | undefined;
@@ -2044,81 +2138,6 @@ export interface Edge {
2044
2138
  SourceId?: string | undefined;
2045
2139
  DestinationId?: string | undefined;
2046
2140
  }
2047
- export interface Crawl {
2048
- State?: CrawlState | undefined;
2049
- StartedOn?: Date | undefined;
2050
- CompletedOn?: Date | undefined;
2051
- ErrorMessage?: string | undefined;
2052
- LogGroup?: string | undefined;
2053
- LogStream?: string | undefined;
2054
- }
2055
- export interface CrawlerNodeDetails {
2056
- Crawls?: Crawl[] | undefined;
2057
- }
2058
- export interface Predecessor {
2059
- JobName?: string | undefined;
2060
- RunId?: string | undefined;
2061
- }
2062
- export interface JobRun {
2063
- Id?: string | undefined;
2064
- Attempt?: number | undefined;
2065
- PreviousRunId?: string | undefined;
2066
- TriggerName?: string | undefined;
2067
- JobName?: string | undefined;
2068
- JobMode?: JobMode | undefined;
2069
- JobRunQueuingEnabled?: boolean | undefined;
2070
- StartedOn?: Date | undefined;
2071
- LastModifiedOn?: Date | undefined;
2072
- CompletedOn?: Date | undefined;
2073
- JobRunState?: JobRunState | undefined;
2074
- Arguments?: Record<string, string> | undefined;
2075
- ErrorMessage?: string | undefined;
2076
- PredecessorRuns?: Predecessor[] | undefined;
2077
- AllocatedCapacity?: number | undefined;
2078
- ExecutionTime?: number | undefined;
2079
- Timeout?: number | undefined;
2080
- MaxCapacity?: number | undefined;
2081
- WorkerType?: WorkerType | undefined;
2082
- NumberOfWorkers?: number | undefined;
2083
- SecurityConfiguration?: string | undefined;
2084
- LogGroupName?: string | undefined;
2085
- NotificationProperty?: NotificationProperty | undefined;
2086
- GlueVersion?: string | undefined;
2087
- DPUSeconds?: number | undefined;
2088
- ExecutionClass?: ExecutionClass | undefined;
2089
- MaintenanceWindow?: string | undefined;
2090
- ProfileName?: string | undefined;
2091
- StateDetail?: string | undefined;
2092
- ExecutionRoleSessionPolicy?: string | undefined;
2093
- }
2094
- export interface JobNodeDetails {
2095
- JobRuns?: JobRun[] | undefined;
2096
- }
2097
- export interface TriggerNodeDetails {
2098
- Trigger?: Trigger | undefined;
2099
- }
2100
- export declare const NodeType: {
2101
- readonly CRAWLER: "CRAWLER";
2102
- readonly JOB: "JOB";
2103
- readonly TRIGGER: "TRIGGER";
2104
- };
2105
- export type NodeType = (typeof NodeType)[keyof typeof NodeType];
2106
- export interface Node {
2107
- Type?: NodeType | undefined;
2108
- Name?: string | undefined;
2109
- UniqueId?: string | undefined;
2110
- TriggerDetails?: TriggerNodeDetails | undefined;
2111
- JobDetails?: JobNodeDetails | undefined;
2112
- CrawlerDetails?: CrawlerNodeDetails | undefined;
2113
- }
2114
- export interface WorkflowGraph {
2115
- Nodes?: Node[] | undefined;
2116
- Edges?: Edge[] | undefined;
2117
- }
2118
- export interface StartingEventBatchCondition {
2119
- BatchSize?: number | undefined;
2120
- BatchWindow?: number | undefined;
2121
- }
2122
2141
  export declare const BasicAuthenticationCredentialsFilterSensitiveLog: (
2123
2142
  obj: BasicAuthenticationCredentials
2124
2143
  ) => any;
@@ -13,27 +13,107 @@ import {
13
13
  Column,
14
14
  ConnectionsList,
15
15
  CrawlerTargets,
16
+ CrawlState,
16
17
  DataOperation,
18
+ Edge,
17
19
  ErrorDetail,
18
20
  EventBatchingCondition,
21
+ ExecutionClass,
19
22
  GlueTable,
20
23
  InclusionAnnotationValue,
24
+ JobMode,
25
+ JobRunState,
21
26
  LakeFormationConfiguration,
22
27
  LineageConfiguration,
28
+ NotificationProperty,
23
29
  PartitionInput,
24
30
  Predicate,
25
31
  Property,
26
32
  RecrawlPolicy,
27
33
  SchemaChangePolicy,
28
34
  SchemaId,
29
- StartingEventBatchCondition,
30
35
  StorageDescriptor,
31
36
  TableOptimizerConfiguration,
32
37
  TableOptimizerType,
38
+ Trigger,
33
39
  TriggerType,
34
40
  WorkerType,
35
- WorkflowGraph,
36
41
  } from "./models_0";
42
+ export interface Crawl {
43
+ State?: CrawlState | undefined;
44
+ StartedOn?: Date | undefined;
45
+ CompletedOn?: Date | undefined;
46
+ ErrorMessage?: string | undefined;
47
+ LogGroup?: string | undefined;
48
+ LogStream?: string | undefined;
49
+ }
50
+ export interface CrawlerNodeDetails {
51
+ Crawls?: Crawl[] | undefined;
52
+ }
53
+ export interface Predecessor {
54
+ JobName?: string | undefined;
55
+ RunId?: string | undefined;
56
+ }
57
+ export interface JobRun {
58
+ Id?: string | undefined;
59
+ Attempt?: number | undefined;
60
+ PreviousRunId?: string | undefined;
61
+ TriggerName?: string | undefined;
62
+ JobName?: string | undefined;
63
+ JobMode?: JobMode | undefined;
64
+ JobRunQueuingEnabled?: boolean | undefined;
65
+ StartedOn?: Date | undefined;
66
+ LastModifiedOn?: Date | undefined;
67
+ CompletedOn?: Date | undefined;
68
+ JobRunState?: JobRunState | undefined;
69
+ Arguments?: Record<string, string> | undefined;
70
+ ErrorMessage?: string | undefined;
71
+ PredecessorRuns?: Predecessor[] | undefined;
72
+ AllocatedCapacity?: number | undefined;
73
+ ExecutionTime?: number | undefined;
74
+ Timeout?: number | undefined;
75
+ MaxCapacity?: number | undefined;
76
+ WorkerType?: WorkerType | undefined;
77
+ NumberOfWorkers?: number | undefined;
78
+ SecurityConfiguration?: string | undefined;
79
+ LogGroupName?: string | undefined;
80
+ NotificationProperty?: NotificationProperty | undefined;
81
+ GlueVersion?: string | undefined;
82
+ DPUSeconds?: number | undefined;
83
+ ExecutionClass?: ExecutionClass | undefined;
84
+ MaintenanceWindow?: string | undefined;
85
+ ProfileName?: string | undefined;
86
+ StateDetail?: string | undefined;
87
+ ExecutionRoleSessionPolicy?: string | undefined;
88
+ }
89
+ export interface JobNodeDetails {
90
+ JobRuns?: JobRun[] | undefined;
91
+ }
92
+ export interface TriggerNodeDetails {
93
+ Trigger?: Trigger | undefined;
94
+ }
95
+ export declare const NodeType: {
96
+ readonly CRAWLER: "CRAWLER";
97
+ readonly JOB: "JOB";
98
+ readonly TRIGGER: "TRIGGER";
99
+ };
100
+ export type NodeType = (typeof NodeType)[keyof typeof NodeType];
101
+ export interface Node {
102
+ Type?: NodeType | undefined;
103
+ Name?: string | undefined;
104
+ UniqueId?: string | undefined;
105
+ TriggerDetails?: TriggerNodeDetails | undefined;
106
+ JobDetails?: JobNodeDetails | undefined;
107
+ CrawlerDetails?: CrawlerNodeDetails | undefined;
108
+ }
109
+ export interface WorkflowGraph {
110
+ Nodes?: Node[] | undefined;
111
+ Edges?: Edge[] | undefined;
112
+ }
113
+ export interface StartingEventBatchCondition {
114
+ BatchSize?: number | undefined;
115
+ BatchWindow?: number | undefined;
116
+ }
37
117
  export interface WorkflowRunStatistics {
38
118
  TotalActions?: number | undefined;
39
119
  TimeoutActions?: number | undefined;
@@ -1763,58 +1843,6 @@ export interface JsonClassifier {
1763
1843
  Version?: number | undefined;
1764
1844
  JsonPath: string | undefined;
1765
1845
  }
1766
- export interface XMLClassifier {
1767
- Name: string | undefined;
1768
- Classification: string | undefined;
1769
- CreationTime?: Date | undefined;
1770
- LastUpdated?: Date | undefined;
1771
- Version?: number | undefined;
1772
- RowTag?: string | undefined;
1773
- }
1774
- export interface Classifier {
1775
- GrokClassifier?: GrokClassifier | undefined;
1776
- XMLClassifier?: XMLClassifier | undefined;
1777
- JsonClassifier?: JsonClassifier | undefined;
1778
- CsvClassifier?: CsvClassifier | undefined;
1779
- }
1780
- export interface GetClassifierResponse {
1781
- Classifier?: Classifier | undefined;
1782
- }
1783
- export interface GetClassifiersRequest {
1784
- MaxResults?: number | undefined;
1785
- NextToken?: string | undefined;
1786
- }
1787
- export interface GetClassifiersResponse {
1788
- Classifiers?: Classifier[] | undefined;
1789
- NextToken?: string | undefined;
1790
- }
1791
- export interface GetColumnStatisticsForPartitionRequest {
1792
- CatalogId?: string | undefined;
1793
- DatabaseName: string | undefined;
1794
- TableName: string | undefined;
1795
- PartitionValues: string[] | undefined;
1796
- ColumnNames: string[] | undefined;
1797
- }
1798
- export interface BinaryColumnStatisticsData {
1799
- MaximumLength: number | undefined;
1800
- AverageLength: number | undefined;
1801
- NumberOfNulls: number | undefined;
1802
- }
1803
- export interface BooleanColumnStatisticsData {
1804
- NumberOfTrues: number | undefined;
1805
- NumberOfFalses: number | undefined;
1806
- NumberOfNulls: number | undefined;
1807
- }
1808
- export interface DateColumnStatisticsData {
1809
- MinimumValue?: Date | undefined;
1810
- MaximumValue?: Date | undefined;
1811
- NumberOfNulls: number | undefined;
1812
- NumberOfDistinctValues: number | undefined;
1813
- }
1814
- export interface DecimalNumber {
1815
- UnscaledValue: Uint8Array | undefined;
1816
- Scale: number | undefined;
1817
- }
1818
1846
  export declare const ConnectionInputFilterSensitiveLog: (
1819
1847
  obj: ConnectionInput
1820
1848
  ) => any;
@@ -15,7 +15,6 @@ import {
15
15
  ErrorDetail,
16
16
  GlueTable,
17
17
  InclusionAnnotationValue,
18
- JobRun,
19
18
  Partition,
20
19
  PartitionValueList,
21
20
  Schedule,
@@ -29,8 +28,6 @@ import {
29
28
  WorkerType,
30
29
  } from "./models_0";
31
30
  import {
32
- BinaryColumnStatisticsData,
33
- BooleanColumnStatisticsData,
34
31
  Capabilities,
35
32
  CodeGenEdge,
36
33
  CodeGenNode,
@@ -40,15 +37,15 @@ import {
40
37
  ConnectionPropertyKey,
41
38
  ConnectionStatus,
42
39
  ConnectionType,
40
+ CsvClassifier,
43
41
  DatabaseIdentifier,
44
42
  DataFormat,
45
43
  DataQualityTargetTable,
46
- DateColumnStatisticsData,
47
- DecimalNumber,
48
44
  EncryptionConfiguration,
49
45
  FederatedDatabase,
50
- IntegrationError,
51
- IntegrationStatus,
46
+ GrokClassifier,
47
+ JobRun,
48
+ JsonClassifier,
52
49
  Language,
53
50
  Permission,
54
51
  PhysicalConnectionRequirements,
@@ -63,7 +60,6 @@ import {
63
60
  Session,
64
61
  SourceProcessingProperties,
65
62
  SourceTableConfig,
66
- Tag,
67
63
  TargetProcessingProperties,
68
64
  TargetTableConfig,
69
65
  TaskStatusType,
@@ -74,6 +70,58 @@ import {
74
70
  Workflow,
75
71
  WorkflowRun,
76
72
  } from "./models_1";
73
+ export interface XMLClassifier {
74
+ Name: string | undefined;
75
+ Classification: string | undefined;
76
+ CreationTime?: Date | undefined;
77
+ LastUpdated?: Date | undefined;
78
+ Version?: number | undefined;
79
+ RowTag?: string | undefined;
80
+ }
81
+ export interface Classifier {
82
+ GrokClassifier?: GrokClassifier | undefined;
83
+ XMLClassifier?: XMLClassifier | undefined;
84
+ JsonClassifier?: JsonClassifier | undefined;
85
+ CsvClassifier?: CsvClassifier | undefined;
86
+ }
87
+ export interface GetClassifierResponse {
88
+ Classifier?: Classifier | undefined;
89
+ }
90
+ export interface GetClassifiersRequest {
91
+ MaxResults?: number | undefined;
92
+ NextToken?: string | undefined;
93
+ }
94
+ export interface GetClassifiersResponse {
95
+ Classifiers?: Classifier[] | undefined;
96
+ NextToken?: string | undefined;
97
+ }
98
+ export interface GetColumnStatisticsForPartitionRequest {
99
+ CatalogId?: string | undefined;
100
+ DatabaseName: string | undefined;
101
+ TableName: string | undefined;
102
+ PartitionValues: string[] | undefined;
103
+ ColumnNames: string[] | undefined;
104
+ }
105
+ export interface BinaryColumnStatisticsData {
106
+ MaximumLength: number | undefined;
107
+ AverageLength: number | undefined;
108
+ NumberOfNulls: number | undefined;
109
+ }
110
+ export interface BooleanColumnStatisticsData {
111
+ NumberOfTrues: number | undefined;
112
+ NumberOfFalses: number | undefined;
113
+ NumberOfNulls: number | undefined;
114
+ }
115
+ export interface DateColumnStatisticsData {
116
+ MinimumValue?: Date | undefined;
117
+ MaximumValue?: Date | undefined;
118
+ NumberOfNulls: number | undefined;
119
+ NumberOfDistinctValues: number | undefined;
120
+ }
121
+ export interface DecimalNumber {
122
+ UnscaledValue: Uint8Array | undefined;
123
+ Scale: number | undefined;
124
+ }
77
125
  export interface DecimalColumnStatisticsData {
78
126
  MinimumValue?: DecimalNumber | undefined;
79
127
  MaximumValue?: DecimalNumber | undefined;
@@ -1773,57 +1821,6 @@ export interface ModifyIntegrationRequest {
1773
1821
  DataFilter?: string | undefined;
1774
1822
  IntegrationName?: string | undefined;
1775
1823
  }
1776
- export interface ModifyIntegrationResponse {
1777
- SourceArn: string | undefined;
1778
- TargetArn: string | undefined;
1779
- IntegrationName: string | undefined;
1780
- Description?: string | undefined;
1781
- IntegrationArn: string | undefined;
1782
- KmsKeyId?: string | undefined;
1783
- AdditionalEncryptionContext?: Record<string, string> | undefined;
1784
- Tags?: Tag[] | undefined;
1785
- Status: IntegrationStatus | undefined;
1786
- CreateTime: Date | undefined;
1787
- Errors?: IntegrationError[] | undefined;
1788
- DataFilter?: string | undefined;
1789
- }
1790
- export interface PutDataCatalogEncryptionSettingsRequest {
1791
- CatalogId?: string | undefined;
1792
- DataCatalogEncryptionSettings: DataCatalogEncryptionSettings | undefined;
1793
- }
1794
- export interface PutDataCatalogEncryptionSettingsResponse {}
1795
- export interface PutDataQualityProfileAnnotationRequest {
1796
- ProfileId: string | undefined;
1797
- InclusionAnnotation: InclusionAnnotationValue | undefined;
1798
- }
1799
- export interface PutDataQualityProfileAnnotationResponse {}
1800
- export declare const EnableHybridValues: {
1801
- readonly FALSE: "FALSE";
1802
- readonly TRUE: "TRUE";
1803
- };
1804
- export type EnableHybridValues =
1805
- (typeof EnableHybridValues)[keyof typeof EnableHybridValues];
1806
- export declare const ExistCondition: {
1807
- readonly MUST_EXIST: "MUST_EXIST";
1808
- readonly NONE: "NONE";
1809
- readonly NOT_EXIST: "NOT_EXIST";
1810
- };
1811
- export type ExistCondition =
1812
- (typeof ExistCondition)[keyof typeof ExistCondition];
1813
- export interface PutResourcePolicyRequest {
1814
- PolicyInJson: string | undefined;
1815
- ResourceArn?: string | undefined;
1816
- PolicyHashCondition?: string | undefined;
1817
- PolicyExistsCondition?: ExistCondition | undefined;
1818
- EnableHybrid?: EnableHybridValues | undefined;
1819
- }
1820
- export interface PutResourcePolicyResponse {
1821
- PolicyHash?: string | undefined;
1822
- }
1823
- export interface MetadataKeyValuePair {
1824
- MetadataKey?: string | undefined;
1825
- MetadataValue?: string | undefined;
1826
- }
1827
1824
  export declare const GetDataQualityResultResponseFilterSensitiveLog: (
1828
1825
  obj: GetDataQualityResultResponse
1829
1826
  ) => any;