@aws-sdk/client-glue 3.808.0 → 3.812.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 (35) hide show
  1. package/dist-cjs/index.js +50 -26
  2. package/dist-es/models/models_0.js +14 -0
  3. package/dist-es/models/models_2.js +0 -14
  4. package/dist-es/models/models_3.js +14 -0
  5. package/dist-es/protocols/Aws_json1_1.js +8 -2
  6. package/dist-types/commands/BatchGetJobsCommand.d.ts +70 -27
  7. package/dist-types/commands/BatchGetWorkflowsCommand.d.ts +2 -1
  8. package/dist-types/commands/BatchPutDataQualityStatisticAnnotationCommand.d.ts +1 -1
  9. package/dist-types/commands/BatchStopJobRunCommand.d.ts +1 -2
  10. package/dist-types/commands/CreateJobCommand.d.ts +70 -27
  11. package/dist-types/commands/GetColumnStatisticsTaskRunCommand.d.ts +2 -1
  12. package/dist-types/commands/GetColumnStatisticsTaskRunsCommand.d.ts +1 -1
  13. package/dist-types/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +1 -2
  14. package/dist-types/commands/GetJobCommand.d.ts +70 -27
  15. package/dist-types/commands/GetJobsCommand.d.ts +70 -27
  16. package/dist-types/commands/ResumeWorkflowRunCommand.d.ts +1 -1
  17. package/dist-types/commands/RunStatementCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateJobCommand.d.ts +70 -27
  19. package/dist-types/models/models_0.d.ts +208 -77
  20. package/dist-types/models/models_1.d.ts +78 -167
  21. package/dist-types/models/models_2.d.ts +167 -83
  22. package/dist-types/models/models_3.d.ts +98 -1
  23. package/dist-types/ts3.4/commands/BatchGetWorkflowsCommand.d.ts +2 -4
  24. package/dist-types/ts3.4/commands/BatchPutDataQualityStatisticAnnotationCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/BatchStopJobRunCommand.d.ts +4 -2
  26. package/dist-types/ts3.4/commands/GetColumnStatisticsTaskRunCommand.d.ts +2 -4
  27. package/dist-types/ts3.4/commands/GetColumnStatisticsTaskRunsCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +4 -2
  29. package/dist-types/ts3.4/commands/ResumeWorkflowRunCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/RunStatementCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +56 -20
  32. package/dist-types/ts3.4/models/models_1.d.ts +23 -38
  33. package/dist-types/ts3.4/models/models_2.d.ts +40 -25
  34. package/dist-types/ts3.4/models/models_3.d.ts +31 -0
  35. package/package.json +12 -12
@@ -1,6 +1,83 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
3
- import { Action, AllowFullTableExternalDataAccessEnum, AuthConfiguration, AuthenticationConfigurationInput, AuthenticationType, Blueprint, Column, ConnectionsList, CrawlerTargets, DataOperation, ErrorDetail, EventBatchingCondition, GlueTable, LakeFormationConfiguration, LineageConfiguration, PartitionInput, Predicate, Property, RecrawlPolicy, SchemaChangePolicy, SchemaId, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, TriggerType, WorkerType } from "./models_0";
3
+ import { Action, AllowFullTableExternalDataAccessEnum, AnnotationError, AuthConfiguration, AuthenticationConfigurationInput, AuthenticationType, Blueprint, Column, ConnectionsList, CrawlerTargets, DataOperation, ErrorDetail, EventBatchingCondition, GlueTable, InclusionAnnotationValue, LakeFormationConfiguration, LineageConfiguration, PartitionInput, Predicate, Property, RecrawlPolicy, SchemaChangePolicy, SchemaId, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, TriggerType, WorkerType, Workflow } from "./models_0";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface BatchGetWorkflowsResponse {
8
+ /**
9
+ * <p>A list of workflow resource metadata.</p>
10
+ * @public
11
+ */
12
+ Workflows?: Workflow[] | undefined;
13
+ /**
14
+ * <p>A list of names of workflows not found.</p>
15
+ * @public
16
+ */
17
+ MissingWorkflows?: string[] | undefined;
18
+ }
19
+ /**
20
+ * <p>An Inclusion Annotation.</p>
21
+ * @public
22
+ */
23
+ export interface DatapointInclusionAnnotation {
24
+ /**
25
+ * <p>The ID of the data quality profile the statistic belongs to.</p>
26
+ * @public
27
+ */
28
+ ProfileId?: string | undefined;
29
+ /**
30
+ * <p>The Statistic ID.</p>
31
+ * @public
32
+ */
33
+ StatisticId?: string | undefined;
34
+ /**
35
+ * <p>The inclusion annotation value to apply to the statistic.</p>
36
+ * @public
37
+ */
38
+ InclusionAnnotation?: InclusionAnnotationValue | undefined;
39
+ }
40
+ /**
41
+ * @public
42
+ */
43
+ export interface BatchPutDataQualityStatisticAnnotationRequest {
44
+ /**
45
+ * <p>A list of <code>DatapointInclusionAnnotation</code>'s.</p>
46
+ * @public
47
+ */
48
+ InclusionAnnotations: DatapointInclusionAnnotation[] | undefined;
49
+ /**
50
+ * <p>Client Token.</p>
51
+ * @public
52
+ */
53
+ ClientToken?: string | undefined;
54
+ }
55
+ /**
56
+ * @public
57
+ */
58
+ export interface BatchPutDataQualityStatisticAnnotationResponse {
59
+ /**
60
+ * <p>A list of <code>AnnotationError</code>'s.</p>
61
+ * @public
62
+ */
63
+ FailedInclusionAnnotations?: AnnotationError[] | undefined;
64
+ }
65
+ /**
66
+ * @public
67
+ */
68
+ export interface BatchStopJobRunRequest {
69
+ /**
70
+ * <p>The name of the job definition for which to stop job runs.</p>
71
+ * @public
72
+ */
73
+ JobName: string | undefined;
74
+ /**
75
+ * <p>A list of the <code>JobRunIds</code> that should be stopped for that job
76
+ * definition.</p>
77
+ * @public
78
+ */
79
+ JobRunIds: string[] | undefined;
80
+ }
4
81
  /**
5
82
  * <p>Records an error that occurred when attempting to stop a
6
83
  * specified job run.</p>
@@ -6717,172 +6794,6 @@ export declare const ColumnStatisticsState: {
6717
6794
  * @public
6718
6795
  */
6719
6796
  export type ColumnStatisticsState = (typeof ColumnStatisticsState)[keyof typeof ColumnStatisticsState];
6720
- /**
6721
- * <p>The object that shows the details of the column stats run.</p>
6722
- * @public
6723
- */
6724
- export interface ColumnStatisticsTaskRun {
6725
- /**
6726
- * <p>The Amazon Web Services account ID.</p>
6727
- * @public
6728
- */
6729
- CustomerId?: string | undefined;
6730
- /**
6731
- * <p>The identifier for the particular column statistics task run.</p>
6732
- * @public
6733
- */
6734
- ColumnStatisticsTaskRunId?: string | undefined;
6735
- /**
6736
- * <p>The database where the table resides.</p>
6737
- * @public
6738
- */
6739
- DatabaseName?: string | undefined;
6740
- /**
6741
- * <p>The name of the table for which column statistics is generated.</p>
6742
- * @public
6743
- */
6744
- TableName?: string | undefined;
6745
- /**
6746
- * <p>A list of the column names. If none is supplied, all column names for the table will be used by default.</p>
6747
- * @public
6748
- */
6749
- ColumnNameList?: string[] | undefined;
6750
- /**
6751
- * <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>
6752
- * @public
6753
- */
6754
- CatalogID?: string | undefined;
6755
- /**
6756
- * <p>The IAM role that the service assumes to generate statistics.</p>
6757
- * @public
6758
- */
6759
- Role?: string | undefined;
6760
- /**
6761
- * <p>The percentage of rows used to generate statistics. If none is supplied, the entire table will be used to generate stats.</p>
6762
- * @public
6763
- */
6764
- SampleSize?: number | undefined;
6765
- /**
6766
- * <p>Name of the security configuration that is used to encrypt CloudWatch logs for the column stats task run.</p>
6767
- * @public
6768
- */
6769
- SecurityConfiguration?: string | undefined;
6770
- /**
6771
- * <p>The number of workers used to generate column statistics. The job is preconfigured to autoscale up to 25 instances.</p>
6772
- * @public
6773
- */
6774
- NumberOfWorkers?: number | undefined;
6775
- /**
6776
- * <p>The type of workers being used for generating stats. The default is <code>g.1x</code>.</p>
6777
- * @public
6778
- */
6779
- WorkerType?: string | undefined;
6780
- /**
6781
- * <p>The type of column statistics computation.</p>
6782
- * @public
6783
- */
6784
- ComputationType?: ComputationType | undefined;
6785
- /**
6786
- * <p>The status of the task run.</p>
6787
- * @public
6788
- */
6789
- Status?: ColumnStatisticsState | undefined;
6790
- /**
6791
- * <p>The time that this task was created.</p>
6792
- * @public
6793
- */
6794
- CreationTime?: Date | undefined;
6795
- /**
6796
- * <p>The last point in time when this task was modified.</p>
6797
- * @public
6798
- */
6799
- LastUpdated?: Date | undefined;
6800
- /**
6801
- * <p>The start time of the task.</p>
6802
- * @public
6803
- */
6804
- StartTime?: Date | undefined;
6805
- /**
6806
- * <p>The end time of the task.</p>
6807
- * @public
6808
- */
6809
- EndTime?: Date | undefined;
6810
- /**
6811
- * <p>The error message for the job.</p>
6812
- * @public
6813
- */
6814
- ErrorMessage?: string | undefined;
6815
- /**
6816
- * <p>The calculated DPU usage in seconds for all autoscaled workers.</p>
6817
- * @public
6818
- */
6819
- DPUSeconds?: number | undefined;
6820
- }
6821
- /**
6822
- * @public
6823
- */
6824
- export interface GetColumnStatisticsTaskRunResponse {
6825
- /**
6826
- * <p>A <code>ColumnStatisticsTaskRun</code> object representing the details of the column stats run.</p>
6827
- * @public
6828
- */
6829
- ColumnStatisticsTaskRun?: ColumnStatisticsTaskRun | undefined;
6830
- }
6831
- /**
6832
- * @public
6833
- */
6834
- export interface GetColumnStatisticsTaskRunsRequest {
6835
- /**
6836
- * <p>The name of the database where the table resides.</p>
6837
- * @public
6838
- */
6839
- DatabaseName: string | undefined;
6840
- /**
6841
- * <p>The name of the table.</p>
6842
- * @public
6843
- */
6844
- TableName: string | undefined;
6845
- /**
6846
- * <p>The maximum size of the response.</p>
6847
- * @public
6848
- */
6849
- MaxResults?: number | undefined;
6850
- /**
6851
- * <p>A continuation token, if this is a continuation call.</p>
6852
- * @public
6853
- */
6854
- NextToken?: string | undefined;
6855
- }
6856
- /**
6857
- * @public
6858
- */
6859
- export interface GetColumnStatisticsTaskRunsResponse {
6860
- /**
6861
- * <p>A list of column statistics task runs.</p>
6862
- * @public
6863
- */
6864
- ColumnStatisticsTaskRuns?: ColumnStatisticsTaskRun[] | undefined;
6865
- /**
6866
- * <p>A continuation token, if not all task runs have yet been returned.</p>
6867
- * @public
6868
- */
6869
- NextToken?: string | undefined;
6870
- }
6871
- /**
6872
- * @public
6873
- */
6874
- export interface GetColumnStatisticsTaskSettingsRequest {
6875
- /**
6876
- * <p>The name of the database where the table resides.</p>
6877
- * @public
6878
- */
6879
- DatabaseName: string | undefined;
6880
- /**
6881
- * <p>The name of the table for which to retrieve column statistics.</p>
6882
- * @public
6883
- */
6884
- TableName: string | undefined;
6885
- }
6886
6797
  /**
6887
6798
  * @internal
6888
6799
  */
@@ -2,7 +2,173 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { DocumentType as __DocumentType } from "@smithy/types";
3
3
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
4
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, 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 } from "./models_1";
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";
6
+ /**
7
+ * <p>The object that shows the details of the column stats run.</p>
8
+ * @public
9
+ */
10
+ export interface ColumnStatisticsTaskRun {
11
+ /**
12
+ * <p>The Amazon Web Services account ID.</p>
13
+ * @public
14
+ */
15
+ CustomerId?: string | undefined;
16
+ /**
17
+ * <p>The identifier for the particular column statistics task run.</p>
18
+ * @public
19
+ */
20
+ ColumnStatisticsTaskRunId?: string | undefined;
21
+ /**
22
+ * <p>The database where the table resides.</p>
23
+ * @public
24
+ */
25
+ DatabaseName?: string | undefined;
26
+ /**
27
+ * <p>The name of the table for which column statistics is generated.</p>
28
+ * @public
29
+ */
30
+ TableName?: string | undefined;
31
+ /**
32
+ * <p>A list of the column names. If none is supplied, all column names for the table will be used by default.</p>
33
+ * @public
34
+ */
35
+ ColumnNameList?: string[] | undefined;
36
+ /**
37
+ * <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>
38
+ * @public
39
+ */
40
+ CatalogID?: string | undefined;
41
+ /**
42
+ * <p>The IAM role that the service assumes to generate statistics.</p>
43
+ * @public
44
+ */
45
+ Role?: string | undefined;
46
+ /**
47
+ * <p>The percentage of rows used to generate statistics. If none is supplied, the entire table will be used to generate stats.</p>
48
+ * @public
49
+ */
50
+ SampleSize?: number | undefined;
51
+ /**
52
+ * <p>Name of the security configuration that is used to encrypt CloudWatch logs for the column stats task run.</p>
53
+ * @public
54
+ */
55
+ SecurityConfiguration?: string | undefined;
56
+ /**
57
+ * <p>The number of workers used to generate column statistics. The job is preconfigured to autoscale up to 25 instances.</p>
58
+ * @public
59
+ */
60
+ NumberOfWorkers?: number | undefined;
61
+ /**
62
+ * <p>The type of workers being used for generating stats. The default is <code>g.1x</code>.</p>
63
+ * @public
64
+ */
65
+ WorkerType?: string | undefined;
66
+ /**
67
+ * <p>The type of column statistics computation.</p>
68
+ * @public
69
+ */
70
+ ComputationType?: ComputationType | undefined;
71
+ /**
72
+ * <p>The status of the task run.</p>
73
+ * @public
74
+ */
75
+ Status?: ColumnStatisticsState | undefined;
76
+ /**
77
+ * <p>The time that this task was created.</p>
78
+ * @public
79
+ */
80
+ CreationTime?: Date | undefined;
81
+ /**
82
+ * <p>The last point in time when this task was modified.</p>
83
+ * @public
84
+ */
85
+ LastUpdated?: Date | undefined;
86
+ /**
87
+ * <p>The start time of the task.</p>
88
+ * @public
89
+ */
90
+ StartTime?: Date | undefined;
91
+ /**
92
+ * <p>The end time of the task.</p>
93
+ * @public
94
+ */
95
+ EndTime?: Date | undefined;
96
+ /**
97
+ * <p>The error message for the job.</p>
98
+ * @public
99
+ */
100
+ ErrorMessage?: string | undefined;
101
+ /**
102
+ * <p>The calculated DPU usage in seconds for all autoscaled workers.</p>
103
+ * @public
104
+ */
105
+ DPUSeconds?: number | undefined;
106
+ }
107
+ /**
108
+ * @public
109
+ */
110
+ export interface GetColumnStatisticsTaskRunResponse {
111
+ /**
112
+ * <p>A <code>ColumnStatisticsTaskRun</code> object representing the details of the column stats run.</p>
113
+ * @public
114
+ */
115
+ ColumnStatisticsTaskRun?: ColumnStatisticsTaskRun | undefined;
116
+ }
117
+ /**
118
+ * @public
119
+ */
120
+ export interface GetColumnStatisticsTaskRunsRequest {
121
+ /**
122
+ * <p>The name of the database where the table resides.</p>
123
+ * @public
124
+ */
125
+ DatabaseName: string | undefined;
126
+ /**
127
+ * <p>The name of the table.</p>
128
+ * @public
129
+ */
130
+ TableName: string | undefined;
131
+ /**
132
+ * <p>The maximum size of the response.</p>
133
+ * @public
134
+ */
135
+ MaxResults?: number | undefined;
136
+ /**
137
+ * <p>A continuation token, if this is a continuation call.</p>
138
+ * @public
139
+ */
140
+ NextToken?: string | undefined;
141
+ }
142
+ /**
143
+ * @public
144
+ */
145
+ export interface GetColumnStatisticsTaskRunsResponse {
146
+ /**
147
+ * <p>A list of column statistics task runs.</p>
148
+ * @public
149
+ */
150
+ ColumnStatisticsTaskRuns?: ColumnStatisticsTaskRun[] | undefined;
151
+ /**
152
+ * <p>A continuation token, if not all task runs have yet been returned.</p>
153
+ * @public
154
+ */
155
+ NextToken?: string | undefined;
156
+ }
157
+ /**
158
+ * @public
159
+ */
160
+ export interface GetColumnStatisticsTaskSettingsRequest {
161
+ /**
162
+ * <p>The name of the database where the table resides.</p>
163
+ * @public
164
+ */
165
+ DatabaseName: string | undefined;
166
+ /**
167
+ * <p>The name of the table for which to retrieve column statistics.</p>
168
+ * @public
169
+ */
170
+ TableName: string | undefined;
171
+ }
6
172
  /**
7
173
  * @public
8
174
  * @enum
@@ -7388,88 +7554,6 @@ export declare class ConcurrentRunsExceededException extends __BaseException {
7388
7554
  */
7389
7555
  constructor(opts: __ExceptionOptionType<ConcurrentRunsExceededException, __BaseException>);
7390
7556
  }
7391
- /**
7392
- * <p>The workflow is in an invalid state to perform a requested operation.</p>
7393
- * @public
7394
- */
7395
- export declare class IllegalWorkflowStateException extends __BaseException {
7396
- readonly name: "IllegalWorkflowStateException";
7397
- readonly $fault: "client";
7398
- /**
7399
- * <p>A message describing the problem.</p>
7400
- * @public
7401
- */
7402
- Message?: string | undefined;
7403
- /**
7404
- * @internal
7405
- */
7406
- constructor(opts: __ExceptionOptionType<IllegalWorkflowStateException, __BaseException>);
7407
- }
7408
- /**
7409
- * @public
7410
- */
7411
- export interface ResumeWorkflowRunRequest {
7412
- /**
7413
- * <p>The name of the workflow to resume.</p>
7414
- * @public
7415
- */
7416
- Name: string | undefined;
7417
- /**
7418
- * <p>The ID of the workflow run to resume.</p>
7419
- * @public
7420
- */
7421
- RunId: string | undefined;
7422
- /**
7423
- * <p>A list of the node IDs for the nodes you want to restart. The nodes that are to be restarted must have a run attempt in the original run.</p>
7424
- * @public
7425
- */
7426
- NodeIds: string[] | undefined;
7427
- }
7428
- /**
7429
- * @public
7430
- */
7431
- export interface ResumeWorkflowRunResponse {
7432
- /**
7433
- * <p>The new ID assigned to the resumed workflow run. Each resume of a workflow run will have a new run ID.</p>
7434
- * @public
7435
- */
7436
- RunId?: string | undefined;
7437
- /**
7438
- * <p>A list of the node IDs for the nodes that were actually restarted.</p>
7439
- * @public
7440
- */
7441
- NodeIds?: string[] | undefined;
7442
- }
7443
- /**
7444
- * @public
7445
- */
7446
- export interface RunStatementRequest {
7447
- /**
7448
- * <p>The Session Id of the statement to be run.</p>
7449
- * @public
7450
- */
7451
- SessionId: string | undefined;
7452
- /**
7453
- * <p>The statement code to be run.</p>
7454
- * @public
7455
- */
7456
- Code: string | undefined;
7457
- /**
7458
- * <p>The origin of the request.</p>
7459
- * @public
7460
- */
7461
- RequestOrigin?: string | undefined;
7462
- }
7463
- /**
7464
- * @public
7465
- */
7466
- export interface RunStatementResponse {
7467
- /**
7468
- * <p>Returns the Id of the statement that was run.</p>
7469
- * @public
7470
- */
7471
- Id?: number | undefined;
7472
- }
7473
7557
  /**
7474
7558
  * @internal
7475
7559
  */
@@ -1,8 +1,90 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
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, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, 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";
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
5
  import { ColumnRowFilter, DataQualityEvaluationRunAdditionalRunOptions, FederatedTable, ResourceAction, ResourceShareType, ResourceState, SchemaVersionNumber, ViewDefinition, ViewValidation } from "./models_2";
6
+ /**
7
+ * <p>The workflow is in an invalid state to perform a requested operation.</p>
8
+ * @public
9
+ */
10
+ export declare class IllegalWorkflowStateException extends __BaseException {
11
+ readonly name: "IllegalWorkflowStateException";
12
+ readonly $fault: "client";
13
+ /**
14
+ * <p>A message describing the problem.</p>
15
+ * @public
16
+ */
17
+ Message?: string | undefined;
18
+ /**
19
+ * @internal
20
+ */
21
+ constructor(opts: __ExceptionOptionType<IllegalWorkflowStateException, __BaseException>);
22
+ }
23
+ /**
24
+ * @public
25
+ */
26
+ export interface ResumeWorkflowRunRequest {
27
+ /**
28
+ * <p>The name of the workflow to resume.</p>
29
+ * @public
30
+ */
31
+ Name: string | undefined;
32
+ /**
33
+ * <p>The ID of the workflow run to resume.</p>
34
+ * @public
35
+ */
36
+ RunId: string | undefined;
37
+ /**
38
+ * <p>A list of the node IDs for the nodes you want to restart. The nodes that are to be restarted must have a run attempt in the original run.</p>
39
+ * @public
40
+ */
41
+ NodeIds: string[] | undefined;
42
+ }
43
+ /**
44
+ * @public
45
+ */
46
+ export interface ResumeWorkflowRunResponse {
47
+ /**
48
+ * <p>The new ID assigned to the resumed workflow run. Each resume of a workflow run will have a new run ID.</p>
49
+ * @public
50
+ */
51
+ RunId?: string | undefined;
52
+ /**
53
+ * <p>A list of the node IDs for the nodes that were actually restarted.</p>
54
+ * @public
55
+ */
56
+ NodeIds?: string[] | undefined;
57
+ }
58
+ /**
59
+ * @public
60
+ */
61
+ export interface RunStatementRequest {
62
+ /**
63
+ * <p>The Session Id of the statement to be run.</p>
64
+ * @public
65
+ */
66
+ SessionId: string | undefined;
67
+ /**
68
+ * <p>The statement code to be run.</p>
69
+ * @public
70
+ */
71
+ Code: string | undefined;
72
+ /**
73
+ * <p>The origin of the request.</p>
74
+ * @public
75
+ */
76
+ RequestOrigin?: string | undefined;
77
+ }
78
+ /**
79
+ * @public
80
+ */
81
+ export interface RunStatementResponse {
82
+ /**
83
+ * <p>Returns the Id of the statement that was run.</p>
84
+ * @public
85
+ */
86
+ Id?: number | undefined;
87
+ }
6
88
  /**
7
89
  * @public
8
90
  * @enum
@@ -2734,6 +2816,11 @@ export interface CodeGenConfigurationNode {
2734
2816
  * @public
2735
2817
  */
2736
2818
  S3CsvSource?: S3CsvSource | undefined;
2819
+ /**
2820
+ * <p>Defines configuration parameters for reading Excel files from Amazon S3.</p>
2821
+ * @public
2822
+ */
2823
+ S3ExcelSource?: S3ExcelSource | undefined;
2737
2824
  /**
2738
2825
  * <p>Specifies a JSON data store stored in Amazon S3.</p>
2739
2826
  * @public
@@ -2784,11 +2871,21 @@ export interface CodeGenConfigurationNode {
2784
2871
  * @public
2785
2872
  */
2786
2873
  S3GlueParquetTarget?: S3GlueParquetTarget | undefined;
2874
+ /**
2875
+ * <p>Defines configuration parameters for writing data to Amazon S3 using HyperDirect optimization.</p>
2876
+ * @public
2877
+ */
2878
+ S3HyperDirectTarget?: S3HyperDirectTarget | undefined;
2787
2879
  /**
2788
2880
  * <p>Specifies a data target that writes to Amazon S3.</p>
2789
2881
  * @public
2790
2882
  */
2791
2883
  S3DirectTarget?: S3DirectTarget | undefined;
2884
+ /**
2885
+ * <p>Defines configuration parameters for writing data to Amazon S3 as an Apache Iceberg table.</p>
2886
+ * @public
2887
+ */
2888
+ S3IcebergDirectTarget?: S3IcebergDirectTarget | undefined;
2792
2889
  /**
2793
2890
  * <p>Specifies a transform that maps data property keys in the data source to data property keys in the data target. You can rename keys, modify the data types for keys, and choose which keys to drop from the dataset.</p>
2794
2891
  * @public
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../GlueClient";
8
- import {
9
- BatchGetWorkflowsRequest,
10
- BatchGetWorkflowsResponse,
11
- } from "../models/models_0";
8
+ import { BatchGetWorkflowsRequest } from "../models/models_0";
9
+ import { BatchGetWorkflowsResponse } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface BatchGetWorkflowsCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  BatchPutDataQualityStatisticAnnotationRequest,
10
10
  BatchPutDataQualityStatisticAnnotationResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface BatchPutDataQualityStatisticAnnotationCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../GlueClient";
8
- import { BatchStopJobRunRequest } from "../models/models_0";
9
- import { BatchStopJobRunResponse } from "../models/models_1";
8
+ import {
9
+ BatchStopJobRunRequest,
10
+ BatchStopJobRunResponse,
11
+ } from "../models/models_1";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface BatchStopJobRunCommandInput extends BatchStopJobRunRequest {}