@aws-sdk/client-glue 3.830.0 → 3.835.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 (31) hide show
  1. package/dist-cjs/index.js +54 -23
  2. package/dist-es/models/models_0.js +6 -7
  3. package/dist-es/models/models_1.js +7 -11
  4. package/dist-es/models/models_2.js +11 -0
  5. package/dist-es/protocols/Aws_json1_1.js +23 -0
  6. package/dist-types/commands/BatchGetDataQualityResultCommand.d.ts +11 -0
  7. package/dist-types/commands/BatchGetTableOptimizerCommand.d.ts +6 -0
  8. package/dist-types/commands/CreateTableOptimizerCommand.d.ts +5 -0
  9. package/dist-types/commands/GetColumnStatisticsForTableCommand.d.ts +2 -1
  10. package/dist-types/commands/GetColumnStatisticsTaskRunCommand.d.ts +1 -2
  11. package/dist-types/commands/GetDataQualityResultCommand.d.ts +11 -0
  12. package/dist-types/commands/GetTableOptimizerCommand.d.ts +6 -0
  13. package/dist-types/commands/ListTableOptimizerRunsCommand.d.ts +1 -0
  14. package/dist-types/commands/RemoveSchemaVersionMetadataCommand.d.ts +1 -1
  15. package/dist-types/commands/ResetJobBookmarkCommand.d.ts +1 -1
  16. package/dist-types/commands/UpdateTableOptimizerCommand.d.ts +5 -0
  17. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  18. package/dist-types/models/models_0.d.ts +139 -179
  19. package/dist-types/models/models_1.d.ts +181 -53
  20. package/dist-types/models/models_2.d.ts +62 -97
  21. package/dist-types/models/models_3.d.ts +97 -1
  22. package/dist-types/ts3.4/commands/GetColumnStatisticsForTableCommand.d.ts +2 -4
  23. package/dist-types/ts3.4/commands/GetColumnStatisticsTaskRunCommand.d.ts +4 -2
  24. package/dist-types/ts3.4/commands/RemoveSchemaVersionMetadataCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/ResetJobBookmarkCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +4 -1
  27. package/dist-types/ts3.4/models/models_0.d.ts +25 -43
  28. package/dist-types/ts3.4/models/models_1.d.ts +46 -23
  29. package/dist-types/ts3.4/models/models_2.d.ts +28 -27
  30. package/dist-types/ts3.4/models/models_3.d.ts +25 -0
  31. package/package.json +11 -11
@@ -1,8 +1,60 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { DocumentType as __DocumentType } from "@smithy/types";
3
3
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
4
- import { AuditContext, AuthenticationConfiguration, Crawler, CustomEntityType, DataQualityAnalyzerResult, DataQualityObservation, DataQualityRuleResult, DataSource, DevEndpoint, ErrorDetail, GlueTable, InclusionAnnotationValue, JobRun, Partition, PartitionValueList, Schedule, SchemaId, StatisticAnnotation, TableOptimizer, TableOptimizerRun, TableOptimizerType, TimestampedInclusionAnnotation, Trigger, WorkerType, Workflow, WorkflowRun } from "./models_0";
5
- import { Capabilities, CodeGenEdge, CodeGenNode, CodeGenNodeArg, ColumnStatisticsState, Compatibility, ComputationType, ComputeEnvironment, ConnectionPropertyKey, ConnectionStatus, ConnectionType, DatabaseIdentifier, DataFormat, DataQualityTargetTable, EncryptionConfiguration, FederatedDatabase, IntegrationError, IntegrationStatus, Language, Permission, PhysicalConnectionRequirements, PrincipalPermissions, PrincipalType, ProfileConfiguration, RegistryId, RegistryStatus, ResourceUri, SchemaStatus, SchemaVersionStatus, Session, SourceProcessingProperties, SourceTableConfig, Tag, TargetProcessingProperties, TargetTableConfig, TaskStatusType, TransformEncryption, TransformParameters, TransformType, ViewDialect } from "./models_1";
4
+ import { AuditContext, AuthenticationConfiguration, Crawler, CustomEntityType, DataQualityAggregatedMetrics, DataQualityAnalyzerResult, DataQualityObservation, DataQualityRuleResult, DataSource, DevEndpoint, ErrorDetail, GlueTable, InclusionAnnotationValue, JobRun, Partition, PartitionValueList, Schedule, SchemaId, StatisticAnnotation, TableOptimizer, TableOptimizerRun, TableOptimizerType, TimestampedInclusionAnnotation, Trigger, WorkerType } from "./models_0";
5
+ import { Capabilities, CodeGenEdge, CodeGenNode, CodeGenNodeArg, ColumnError, ColumnStatistics, Compatibility, ComputeEnvironment, ConnectionPropertyKey, ConnectionStatus, ConnectionType, DatabaseIdentifier, DataFormat, DataQualityTargetTable, EncryptionConfiguration, FederatedDatabase, IntegrationError, IntegrationStatus, Language, Permission, PhysicalConnectionRequirements, PrincipalPermissions, PrincipalType, ProfileConfiguration, RegistryId, RegistryStatus, ResourceUri, SchemaStatus, SchemaVersionStatus, Session, SourceProcessingProperties, SourceTableConfig, Tag, TargetProcessingProperties, TargetTableConfig, TaskStatusType, TransformEncryption, TransformParameters, TransformType, ViewDialect, Workflow, WorkflowRun } from "./models_1";
6
+ /**
7
+ * @public
8
+ */
9
+ export interface GetColumnStatisticsForTableResponse {
10
+ /**
11
+ * <p>List of ColumnStatistics.</p>
12
+ * @public
13
+ */
14
+ ColumnStatisticsList?: ColumnStatistics[] | undefined;
15
+ /**
16
+ * <p>List of ColumnStatistics that failed to be retrieved.</p>
17
+ * @public
18
+ */
19
+ Errors?: ColumnError[] | undefined;
20
+ }
21
+ /**
22
+ * @public
23
+ */
24
+ export interface GetColumnStatisticsTaskRunRequest {
25
+ /**
26
+ * <p>The identifier for the particular column statistics task run.</p>
27
+ * @public
28
+ */
29
+ ColumnStatisticsTaskRunId: string | undefined;
30
+ }
31
+ /**
32
+ * @public
33
+ * @enum
34
+ */
35
+ export declare const ComputationType: {
36
+ readonly FULL: "FULL";
37
+ readonly INCREMENTAL: "INCREMENTAL";
38
+ };
39
+ /**
40
+ * @public
41
+ */
42
+ export type ComputationType = (typeof ComputationType)[keyof typeof ComputationType];
43
+ /**
44
+ * @public
45
+ * @enum
46
+ */
47
+ export declare const ColumnStatisticsState: {
48
+ readonly FAILED: "FAILED";
49
+ readonly RUNNING: "RUNNING";
50
+ readonly STARTING: "STARTING";
51
+ readonly STOPPED: "STOPPED";
52
+ readonly SUCCEEDED: "SUCCEEDED";
53
+ };
54
+ /**
55
+ * @public
56
+ */
57
+ export type ColumnStatisticsState = (typeof ColumnStatisticsState)[keyof typeof ColumnStatisticsState];
6
58
  /**
7
59
  * <p>The object that shows the details of the column stats run.</p>
8
60
  * @public
@@ -1297,6 +1349,7 @@ export interface GetDataQualityResultRequest {
1297
1349
  ResultId: string | undefined;
1298
1350
  }
1299
1351
  /**
1352
+ * <p>The response for the data quality result.</p>
1300
1353
  * @public
1301
1354
  */
1302
1355
  export interface GetDataQualityResultResponse {
@@ -1370,6 +1423,11 @@ export interface GetDataQualityResultResponse {
1370
1423
  * @public
1371
1424
  */
1372
1425
  Observations?: DataQualityObservation[] | undefined;
1426
+ /**
1427
+ * <p> A summary of <code>DataQualityAggregatedMetrics</code> objects showing the total counts of processed rows and rules, including their pass/fail statistics based on row-level results. </p>
1428
+ * @public
1429
+ */
1430
+ AggregatedMetrics?: DataQualityAggregatedMetrics | undefined;
1373
1431
  }
1374
1432
  /**
1375
1433
  * @public
@@ -1382,6 +1440,7 @@ export interface GetDataQualityRuleRecommendationRunRequest {
1382
1440
  RunId: string | undefined;
1383
1441
  }
1384
1442
  /**
1443
+ * <p>The response for the Data Quality rule recommendation run.</p>
1385
1444
  * @public
1386
1445
  */
1387
1446
  export interface GetDataQualityRuleRecommendationRunResponse {
@@ -1467,6 +1526,7 @@ export interface GetDataQualityRulesetRequest {
1467
1526
  Name: string | undefined;
1468
1527
  }
1469
1528
  /**
1529
+ * <p>Returns the data quality ruleset response.</p>
1470
1530
  * @public
1471
1531
  */
1472
1532
  export interface GetDataQualityRulesetResponse {
@@ -7503,101 +7563,6 @@ export interface RegisterSchemaVersionResponse {
7503
7563
  */
7504
7564
  Status?: SchemaVersionStatus | undefined;
7505
7565
  }
7506
- /**
7507
- * @public
7508
- */
7509
- export interface RemoveSchemaVersionMetadataInput {
7510
- /**
7511
- * <p>A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).</p>
7512
- * @public
7513
- */
7514
- SchemaId?: SchemaId | undefined;
7515
- /**
7516
- * <p>The version number of the schema.</p>
7517
- * @public
7518
- */
7519
- SchemaVersionNumber?: SchemaVersionNumber | undefined;
7520
- /**
7521
- * <p>The unique version ID of the schema version.</p>
7522
- * @public
7523
- */
7524
- SchemaVersionId?: string | undefined;
7525
- /**
7526
- * <p>The value of the metadata key.</p>
7527
- * @public
7528
- */
7529
- MetadataKeyValue: MetadataKeyValuePair | undefined;
7530
- }
7531
- /**
7532
- * @public
7533
- */
7534
- export interface RemoveSchemaVersionMetadataResponse {
7535
- /**
7536
- * <p>The Amazon Resource Name (ARN) of the schema.</p>
7537
- * @public
7538
- */
7539
- SchemaArn?: string | undefined;
7540
- /**
7541
- * <p>The name of the schema.</p>
7542
- * @public
7543
- */
7544
- SchemaName?: string | undefined;
7545
- /**
7546
- * <p>The name of the registry.</p>
7547
- * @public
7548
- */
7549
- RegistryName?: string | undefined;
7550
- /**
7551
- * <p>The latest version of the schema.</p>
7552
- * @public
7553
- */
7554
- LatestVersion?: boolean | undefined;
7555
- /**
7556
- * <p>The version number of the schema.</p>
7557
- * @public
7558
- */
7559
- VersionNumber?: number | undefined;
7560
- /**
7561
- * <p>The version ID for the schema version.</p>
7562
- * @public
7563
- */
7564
- SchemaVersionId?: string | undefined;
7565
- /**
7566
- * <p>The metadata key.</p>
7567
- * @public
7568
- */
7569
- MetadataKey?: string | undefined;
7570
- /**
7571
- * <p>The value of the metadata key.</p>
7572
- * @public
7573
- */
7574
- MetadataValue?: string | undefined;
7575
- }
7576
- /**
7577
- * @public
7578
- */
7579
- export interface ResetJobBookmarkRequest {
7580
- /**
7581
- * <p>The name of the job in question.</p>
7582
- * @public
7583
- */
7584
- JobName: string | undefined;
7585
- /**
7586
- * <p>The unique run identifier associated with this job run.</p>
7587
- * @public
7588
- */
7589
- RunId?: string | undefined;
7590
- }
7591
- /**
7592
- * @public
7593
- */
7594
- export interface ResetJobBookmarkResponse {
7595
- /**
7596
- * <p>The reset bookmark entry.</p>
7597
- * @public
7598
- */
7599
- JobBookmarkEntry?: JobBookmarkEntry | undefined;
7600
- }
7601
7566
  /**
7602
7567
  * @internal
7603
7568
  */
@@ -2,7 +2,102 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
3
3
  import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuthenticationConfigurationInput, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CustomCode, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, JobMode, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RecrawlPolicy, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3ExcelSource, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3HyperDirectTarget, S3IcebergDirectTarget, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlAuthStrategy, SourceControlDetails, SourceControlProvider, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, Trigger, Union, WorkerType } from "./models_0";
4
4
  import { CatalogInput, ColumnStatistics, Compatibility, ConnectionInput, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseInput, Permission, ProfileConfiguration, RegistryId, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
5
- import { ColumnRowFilter, DataQualityEvaluationRunAdditionalRunOptions, FederatedTable, ResourceAction, ResourceShareType, ResourceState, SchemaVersionNumber, ViewDefinition, ViewValidation } from "./models_2";
5
+ import { ColumnRowFilter, DataQualityEvaluationRunAdditionalRunOptions, FederatedTable, JobBookmarkEntry, MetadataKeyValuePair, ResourceAction, ResourceShareType, ResourceState, SchemaVersionNumber, ViewDefinition, ViewValidation } from "./models_2";
6
+ /**
7
+ * @public
8
+ */
9
+ export interface RemoveSchemaVersionMetadataInput {
10
+ /**
11
+ * <p>A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).</p>
12
+ * @public
13
+ */
14
+ SchemaId?: SchemaId | undefined;
15
+ /**
16
+ * <p>The version number of the schema.</p>
17
+ * @public
18
+ */
19
+ SchemaVersionNumber?: SchemaVersionNumber | undefined;
20
+ /**
21
+ * <p>The unique version ID of the schema version.</p>
22
+ * @public
23
+ */
24
+ SchemaVersionId?: string | undefined;
25
+ /**
26
+ * <p>The value of the metadata key.</p>
27
+ * @public
28
+ */
29
+ MetadataKeyValue: MetadataKeyValuePair | undefined;
30
+ }
31
+ /**
32
+ * @public
33
+ */
34
+ export interface RemoveSchemaVersionMetadataResponse {
35
+ /**
36
+ * <p>The Amazon Resource Name (ARN) of the schema.</p>
37
+ * @public
38
+ */
39
+ SchemaArn?: string | undefined;
40
+ /**
41
+ * <p>The name of the schema.</p>
42
+ * @public
43
+ */
44
+ SchemaName?: string | undefined;
45
+ /**
46
+ * <p>The name of the registry.</p>
47
+ * @public
48
+ */
49
+ RegistryName?: string | undefined;
50
+ /**
51
+ * <p>The latest version of the schema.</p>
52
+ * @public
53
+ */
54
+ LatestVersion?: boolean | undefined;
55
+ /**
56
+ * <p>The version number of the schema.</p>
57
+ * @public
58
+ */
59
+ VersionNumber?: number | undefined;
60
+ /**
61
+ * <p>The version ID for the schema version.</p>
62
+ * @public
63
+ */
64
+ SchemaVersionId?: string | undefined;
65
+ /**
66
+ * <p>The metadata key.</p>
67
+ * @public
68
+ */
69
+ MetadataKey?: string | undefined;
70
+ /**
71
+ * <p>The value of the metadata key.</p>
72
+ * @public
73
+ */
74
+ MetadataValue?: string | undefined;
75
+ }
76
+ /**
77
+ * @public
78
+ */
79
+ export interface ResetJobBookmarkRequest {
80
+ /**
81
+ * <p>The name of the job in question.</p>
82
+ * @public
83
+ */
84
+ JobName: string | undefined;
85
+ /**
86
+ * <p>The unique run identifier associated with this job run.</p>
87
+ * @public
88
+ */
89
+ RunId?: string | undefined;
90
+ }
91
+ /**
92
+ * @public
93
+ */
94
+ export interface ResetJobBookmarkResponse {
95
+ /**
96
+ * <p>The reset bookmark entry.</p>
97
+ * @public
98
+ */
99
+ JobBookmarkEntry?: JobBookmarkEntry | undefined;
100
+ }
6
101
  /**
7
102
  * <p>Too many jobs are being run concurrently.</p>
8
103
  * @public
@@ -405,6 +500,7 @@ export interface StartCrawlerScheduleRequest {
405
500
  export interface StartCrawlerScheduleResponse {
406
501
  }
407
502
  /**
503
+ * <p>The request of the Data Quality rule recommendation request.</p>
408
504
  * @public
409
505
  */
410
506
  export interface StartDataQualityRuleRecommendationRunRequest {
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../GlueClient";
8
- import {
9
- GetColumnStatisticsForTableRequest,
10
- GetColumnStatisticsForTableResponse,
11
- } from "../models/models_1";
8
+ import { GetColumnStatisticsForTableRequest } from "../models/models_1";
9
+ import { GetColumnStatisticsForTableResponse } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface GetColumnStatisticsForTableCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../GlueClient";
8
- import { GetColumnStatisticsTaskRunRequest } from "../models/models_1";
9
- import { GetColumnStatisticsTaskRunResponse } from "../models/models_2";
8
+ import {
9
+ GetColumnStatisticsTaskRunRequest,
10
+ GetColumnStatisticsTaskRunResponse,
11
+ } from "../models/models_2";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface GetColumnStatisticsTaskRunCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  RemoveSchemaVersionMetadataInput,
10
10
  RemoveSchemaVersionMetadataResponse,
11
- } from "../models/models_2";
11
+ } from "../models/models_3";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface RemoveSchemaVersionMetadataCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ResetJobBookmarkRequest,
10
10
  ResetJobBookmarkResponse,
11
- } from "../models/models_2";
11
+ } from "../models/models_3";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ResetJobBookmarkCommandInput extends ResetJobBookmarkRequest {}
@@ -16,7 +16,10 @@ export interface ClientInputEndpointParameters {
16
16
  | EndpointV2
17
17
  | Provider<EndpointV2>;
18
18
  }
19
- export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
19
+ export type ClientResolvedEndpointParameters = Pick<
20
+ ClientInputEndpointParameters,
21
+ Exclude<keyof ClientInputEndpointParameters, "endpoint">
22
+ > & {
20
23
  defaultSigningName: string;
21
24
  };
22
25
  export declare const resolveClientEndpointParameters: <T>(
@@ -642,6 +642,14 @@ export interface BatchGetCustomEntityTypesResponse {
642
642
  export interface BatchGetDataQualityResultRequest {
643
643
  ResultIds: string[] | undefined;
644
644
  }
645
+ export interface DataQualityAggregatedMetrics {
646
+ TotalRowsProcessed?: number | undefined;
647
+ TotalRowsPassed?: number | undefined;
648
+ TotalRowsFailed?: number | undefined;
649
+ TotalRulesProcessed?: number | undefined;
650
+ TotalRulesPassed?: number | undefined;
651
+ TotalRulesFailed?: number | undefined;
652
+ }
645
653
  export interface DataQualityAnalyzerResult {
646
654
  Name?: string | undefined;
647
655
  Description?: string | undefined;
@@ -688,6 +696,7 @@ export interface DataQualityRuleResult {
688
696
  Result?: DataQualityRuleResultStatus | undefined;
689
697
  EvaluatedMetrics?: Record<string, number> | undefined;
690
698
  EvaluatedRule?: string | undefined;
699
+ RuleMetrics?: Record<string, number> | undefined;
691
700
  }
692
701
  export interface DataQualityResult {
693
702
  ResultId?: string | undefined;
@@ -704,6 +713,7 @@ export interface DataQualityResult {
704
713
  RuleResults?: DataQualityRuleResult[] | undefined;
705
714
  AnalyzerResults?: DataQualityAnalyzerResult[] | undefined;
706
715
  Observations?: DataQualityObservation[] | undefined;
716
+ AggregatedMetrics?: DataQualityAggregatedMetrics | undefined;
707
717
  }
708
718
  export interface BatchGetDataQualityResultResponse {
709
719
  Results: DataQualityResult[] | undefined;
@@ -1803,6 +1813,19 @@ export interface BatchGetTableOptimizerError {
1803
1813
  tableName?: string | undefined;
1804
1814
  type?: TableOptimizerType | undefined;
1805
1815
  }
1816
+ export declare const CompactionStrategy: {
1817
+ readonly BINPACK: "binpack";
1818
+ readonly SORT: "sort";
1819
+ readonly ZORDER: "z-order";
1820
+ };
1821
+ export type CompactionStrategy =
1822
+ (typeof CompactionStrategy)[keyof typeof CompactionStrategy];
1823
+ export interface IcebergCompactionConfiguration {
1824
+ strategy?: CompactionStrategy | undefined;
1825
+ }
1826
+ export interface CompactionConfiguration {
1827
+ icebergConfiguration?: IcebergCompactionConfiguration | undefined;
1828
+ }
1806
1829
  export interface IcebergOrphanFileDeletionConfiguration {
1807
1830
  orphanFileRetentionPeriodInDays?: number | undefined;
1808
1831
  location?: string | undefined;
@@ -1843,6 +1866,7 @@ export interface TableOptimizerConfiguration {
1843
1866
  roleArn?: string | undefined;
1844
1867
  enabled?: boolean | undefined;
1845
1868
  vpcConfiguration?: TableOptimizerVpcConfiguration | undefined;
1869
+ compactionConfiguration?: CompactionConfiguration | undefined;
1846
1870
  retentionConfiguration?: RetentionConfiguration | undefined;
1847
1871
  orphanFileDeletionConfiguration?: OrphanFileDeletionConfiguration | undefined;
1848
1872
  }
@@ -1897,6 +1921,7 @@ export interface TableOptimizerRun {
1897
1921
  metrics?: RunMetrics | undefined;
1898
1922
  error?: string | undefined;
1899
1923
  compactionMetrics?: CompactionMetrics | undefined;
1924
+ compactionStrategy?: CompactionStrategy | undefined;
1900
1925
  retentionMetrics?: RetentionMetrics | undefined;
1901
1926
  orphanFileDeletionMetrics?: OrphanFileDeletionMetrics | undefined;
1902
1927
  }
@@ -2093,49 +2118,6 @@ export interface StartingEventBatchCondition {
2093
2118
  BatchSize?: number | undefined;
2094
2119
  BatchWindow?: number | undefined;
2095
2120
  }
2096
- export interface WorkflowRunStatistics {
2097
- TotalActions?: number | undefined;
2098
- TimeoutActions?: number | undefined;
2099
- FailedActions?: number | undefined;
2100
- StoppedActions?: number | undefined;
2101
- SucceededActions?: number | undefined;
2102
- RunningActions?: number | undefined;
2103
- ErroredActions?: number | undefined;
2104
- WaitingActions?: number | undefined;
2105
- }
2106
- export declare const WorkflowRunStatus: {
2107
- readonly COMPLETED: "COMPLETED";
2108
- readonly ERROR: "ERROR";
2109
- readonly RUNNING: "RUNNING";
2110
- readonly STOPPED: "STOPPED";
2111
- readonly STOPPING: "STOPPING";
2112
- };
2113
- export type WorkflowRunStatus =
2114
- (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
2115
- export interface WorkflowRun {
2116
- Name?: string | undefined;
2117
- WorkflowRunId?: string | undefined;
2118
- PreviousRunId?: string | undefined;
2119
- WorkflowRunProperties?: Record<string, string> | undefined;
2120
- StartedOn?: Date | undefined;
2121
- CompletedOn?: Date | undefined;
2122
- Status?: WorkflowRunStatus | undefined;
2123
- ErrorMessage?: string | undefined;
2124
- Statistics?: WorkflowRunStatistics | undefined;
2125
- Graph?: WorkflowGraph | undefined;
2126
- StartingEventBatchCondition?: StartingEventBatchCondition | undefined;
2127
- }
2128
- export interface Workflow {
2129
- Name?: string | undefined;
2130
- Description?: string | undefined;
2131
- DefaultRunProperties?: Record<string, string> | undefined;
2132
- CreatedOn?: Date | undefined;
2133
- LastModifiedOn?: Date | undefined;
2134
- LastRun?: WorkflowRun | undefined;
2135
- Graph?: WorkflowGraph | undefined;
2136
- MaxConcurrentRuns?: number | undefined;
2137
- BlueprintDetails?: BlueprintDetails | undefined;
2138
- }
2139
2121
  export declare const BasicAuthenticationCredentialsFilterSensitiveLog: (
2140
2122
  obj: BasicAuthenticationCredentials
2141
2123
  ) => any;
@@ -8,6 +8,7 @@ import {
8
8
  AuthenticationConfigurationInput,
9
9
  AuthenticationType,
10
10
  Blueprint,
11
+ BlueprintDetails,
11
12
  Column,
12
13
  ConnectionsList,
13
14
  CrawlerTargets,
@@ -24,13 +25,57 @@ import {
24
25
  RecrawlPolicy,
25
26
  SchemaChangePolicy,
26
27
  SchemaId,
28
+ StartingEventBatchCondition,
27
29
  StorageDescriptor,
28
30
  TableOptimizerConfiguration,
29
31
  TableOptimizerType,
30
32
  TriggerType,
31
33
  WorkerType,
32
- Workflow,
34
+ WorkflowGraph,
33
35
  } from "./models_0";
36
+ export interface WorkflowRunStatistics {
37
+ TotalActions?: number | undefined;
38
+ TimeoutActions?: number | undefined;
39
+ FailedActions?: number | undefined;
40
+ StoppedActions?: number | undefined;
41
+ SucceededActions?: number | undefined;
42
+ RunningActions?: number | undefined;
43
+ ErroredActions?: number | undefined;
44
+ WaitingActions?: number | undefined;
45
+ }
46
+ export declare const WorkflowRunStatus: {
47
+ readonly COMPLETED: "COMPLETED";
48
+ readonly ERROR: "ERROR";
49
+ readonly RUNNING: "RUNNING";
50
+ readonly STOPPED: "STOPPED";
51
+ readonly STOPPING: "STOPPING";
52
+ };
53
+ export type WorkflowRunStatus =
54
+ (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
55
+ export interface WorkflowRun {
56
+ Name?: string | undefined;
57
+ WorkflowRunId?: string | undefined;
58
+ PreviousRunId?: string | undefined;
59
+ WorkflowRunProperties?: Record<string, string> | undefined;
60
+ StartedOn?: Date | undefined;
61
+ CompletedOn?: Date | undefined;
62
+ Status?: WorkflowRunStatus | undefined;
63
+ ErrorMessage?: string | undefined;
64
+ Statistics?: WorkflowRunStatistics | undefined;
65
+ Graph?: WorkflowGraph | undefined;
66
+ StartingEventBatchCondition?: StartingEventBatchCondition | undefined;
67
+ }
68
+ export interface Workflow {
69
+ Name?: string | undefined;
70
+ Description?: string | undefined;
71
+ DefaultRunProperties?: Record<string, string> | undefined;
72
+ CreatedOn?: Date | undefined;
73
+ LastModifiedOn?: Date | undefined;
74
+ LastRun?: WorkflowRun | undefined;
75
+ Graph?: WorkflowGraph | undefined;
76
+ MaxConcurrentRuns?: number | undefined;
77
+ BlueprintDetails?: BlueprintDetails | undefined;
78
+ }
34
79
  export interface BatchGetWorkflowsResponse {
35
80
  Workflows?: Workflow[] | undefined;
36
81
  MissingWorkflows?: string[] | undefined;
@@ -1772,28 +1817,6 @@ export interface GetColumnStatisticsForTableRequest {
1772
1817
  TableName: string | undefined;
1773
1818
  ColumnNames: string[] | undefined;
1774
1819
  }
1775
- export interface GetColumnStatisticsForTableResponse {
1776
- ColumnStatisticsList?: ColumnStatistics[] | undefined;
1777
- Errors?: ColumnError[] | undefined;
1778
- }
1779
- export interface GetColumnStatisticsTaskRunRequest {
1780
- ColumnStatisticsTaskRunId: string | undefined;
1781
- }
1782
- export declare const ComputationType: {
1783
- readonly FULL: "FULL";
1784
- readonly INCREMENTAL: "INCREMENTAL";
1785
- };
1786
- export type ComputationType =
1787
- (typeof ComputationType)[keyof typeof ComputationType];
1788
- export declare const ColumnStatisticsState: {
1789
- readonly FAILED: "FAILED";
1790
- readonly RUNNING: "RUNNING";
1791
- readonly STARTING: "STARTING";
1792
- readonly STOPPED: "STOPPED";
1793
- readonly SUCCEEDED: "SUCCEEDED";
1794
- };
1795
- export type ColumnStatisticsState =
1796
- (typeof ColumnStatisticsState)[keyof typeof ColumnStatisticsState];
1797
1820
  export declare const ConnectionInputFilterSensitiveLog: (
1798
1821
  obj: ConnectionInput
1799
1822
  ) => any;
@@ -6,6 +6,7 @@ import {
6
6
  AuthenticationConfiguration,
7
7
  Crawler,
8
8
  CustomEntityType,
9
+ DataQualityAggregatedMetrics,
9
10
  DataQualityAnalyzerResult,
10
11
  DataQualityObservation,
11
12
  DataQualityRuleResult,
@@ -26,17 +27,15 @@ import {
26
27
  TimestampedInclusionAnnotation,
27
28
  Trigger,
28
29
  WorkerType,
29
- Workflow,
30
- WorkflowRun,
31
30
  } from "./models_0";
32
31
  import {
33
32
  Capabilities,
34
33
  CodeGenEdge,
35
34
  CodeGenNode,
36
35
  CodeGenNodeArg,
37
- ColumnStatisticsState,
36
+ ColumnError,
37
+ ColumnStatistics,
38
38
  Compatibility,
39
- ComputationType,
40
39
  ComputeEnvironment,
41
40
  ConnectionPropertyKey,
42
41
  ConnectionStatus,
@@ -70,7 +69,31 @@ import {
70
69
  TransformParameters,
71
70
  TransformType,
72
71
  ViewDialect,
72
+ Workflow,
73
+ WorkflowRun,
73
74
  } from "./models_1";
75
+ export interface GetColumnStatisticsForTableResponse {
76
+ ColumnStatisticsList?: ColumnStatistics[] | undefined;
77
+ Errors?: ColumnError[] | undefined;
78
+ }
79
+ export interface GetColumnStatisticsTaskRunRequest {
80
+ ColumnStatisticsTaskRunId: string | undefined;
81
+ }
82
+ export declare const ComputationType: {
83
+ readonly FULL: "FULL";
84
+ readonly INCREMENTAL: "INCREMENTAL";
85
+ };
86
+ export type ComputationType =
87
+ (typeof ComputationType)[keyof typeof ComputationType];
88
+ export declare const ColumnStatisticsState: {
89
+ readonly FAILED: "FAILED";
90
+ readonly RUNNING: "RUNNING";
91
+ readonly STARTING: "STARTING";
92
+ readonly STOPPED: "STOPPED";
93
+ readonly SUCCEEDED: "SUCCEEDED";
94
+ };
95
+ export type ColumnStatisticsState =
96
+ (typeof ColumnStatisticsState)[keyof typeof ColumnStatisticsState];
74
97
  export interface ColumnStatisticsTaskRun {
75
98
  CustomerId?: string | undefined;
76
99
  ColumnStatisticsTaskRunId?: string | undefined;
@@ -360,6 +383,7 @@ export interface GetDataQualityResultResponse {
360
383
  RuleResults?: DataQualityRuleResult[] | undefined;
361
384
  AnalyzerResults?: DataQualityAnalyzerResult[] | undefined;
362
385
  Observations?: DataQualityObservation[] | undefined;
386
+ AggregatedMetrics?: DataQualityAggregatedMetrics | undefined;
363
387
  }
364
388
  export interface GetDataQualityRuleRecommendationRunRequest {
365
389
  RunId: string | undefined;
@@ -1785,29 +1809,6 @@ export interface RegisterSchemaVersionResponse {
1785
1809
  VersionNumber?: number | undefined;
1786
1810
  Status?: SchemaVersionStatus | undefined;
1787
1811
  }
1788
- export interface RemoveSchemaVersionMetadataInput {
1789
- SchemaId?: SchemaId | undefined;
1790
- SchemaVersionNumber?: SchemaVersionNumber | undefined;
1791
- SchemaVersionId?: string | undefined;
1792
- MetadataKeyValue: MetadataKeyValuePair | undefined;
1793
- }
1794
- export interface RemoveSchemaVersionMetadataResponse {
1795
- SchemaArn?: string | undefined;
1796
- SchemaName?: string | undefined;
1797
- RegistryName?: string | undefined;
1798
- LatestVersion?: boolean | undefined;
1799
- VersionNumber?: number | undefined;
1800
- SchemaVersionId?: string | undefined;
1801
- MetadataKey?: string | undefined;
1802
- MetadataValue?: string | undefined;
1803
- }
1804
- export interface ResetJobBookmarkRequest {
1805
- JobName: string | undefined;
1806
- RunId?: string | undefined;
1807
- }
1808
- export interface ResetJobBookmarkResponse {
1809
- JobBookmarkEntry?: JobBookmarkEntry | undefined;
1810
- }
1811
1812
  export declare const GetDataQualityResultResponseFilterSensitiveLog: (
1812
1813
  obj: GetDataQualityResultResponse
1813
1814
  ) => any;