@aws-sdk/client-glue 3.810.0 → 3.814.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 (36) hide show
  1. package/dist-cjs/index.js +52 -28
  2. package/dist-es/models/models_0.js +14 -0
  3. package/dist-es/models/models_2.js +0 -28
  4. package/dist-es/models/models_3.js +28 -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/ListConnectionTypesCommand.d.ts +14 -0
  17. package/dist-types/commands/ResumeWorkflowRunCommand.d.ts +1 -1
  18. package/dist-types/commands/RunStatementCommand.d.ts +1 -1
  19. package/dist-types/commands/UpdateJobCommand.d.ts +70 -27
  20. package/dist-types/models/models_0.d.ts +208 -77
  21. package/dist-types/models/models_1.d.ts +78 -167
  22. package/dist-types/models/models_2.d.ts +222 -100
  23. package/dist-types/models/models_3.d.ts +115 -1
  24. package/dist-types/ts3.4/commands/BatchGetWorkflowsCommand.d.ts +2 -4
  25. package/dist-types/ts3.4/commands/BatchPutDataQualityStatisticAnnotationCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/commands/BatchStopJobRunCommand.d.ts +4 -2
  27. package/dist-types/ts3.4/commands/GetColumnStatisticsTaskRunCommand.d.ts +2 -4
  28. package/dist-types/ts3.4/commands/GetColumnStatisticsTaskRunsCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +4 -2
  30. package/dist-types/ts3.4/commands/ResumeWorkflowRunCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/RunStatementCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +56 -20
  33. package/dist-types/ts3.4/models/models_1.d.ts +23 -38
  34. package/dist-types/ts3.4/models/models_2.d.ts +51 -36
  35. package/dist-types/ts3.4/models/models_3.d.ts +42 -0
  36. package/package.json +5 -5
@@ -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
@@ -5207,6 +5373,34 @@ export interface ListConnectionTypesRequest {
5207
5373
  */
5208
5374
  NextToken?: string | undefined;
5209
5375
  }
5376
+ /**
5377
+ * <p>Represents a variant of a connection type in Glue Data Catalog. Connection type variants provide specific configurations and behaviors
5378
+ * for different implementations of the same general connection type.</p>
5379
+ * @public
5380
+ */
5381
+ export interface ConnectionTypeVariant {
5382
+ /**
5383
+ * <p>The unique identifier for the connection type variant. This name is used internally to identify the specific variant of a connection type.
5384
+ * </p>
5385
+ * @public
5386
+ */
5387
+ ConnectionTypeVariantName?: string | undefined;
5388
+ /**
5389
+ * <p>The human-readable name for the connection type variant that is displayed in the Glue console.</p>
5390
+ * @public
5391
+ */
5392
+ DisplayName?: string | undefined;
5393
+ /**
5394
+ * <p>A detailed description of the connection type variant, including its purpose, use cases, and any specific configuration requirements.</p>
5395
+ * @public
5396
+ */
5397
+ Description?: string | undefined;
5398
+ /**
5399
+ * <p>The URL of the logo associated with a connection type variant.</p>
5400
+ * @public
5401
+ */
5402
+ LogoUrl?: string | undefined;
5403
+ }
5210
5404
  /**
5211
5405
  * <p>Brief information about a supported connection type returned by the <code>ListConnectionTypes</code> API.</p>
5212
5406
  * @public
@@ -5217,16 +5411,43 @@ export interface ConnectionTypeBrief {
5217
5411
  * @public
5218
5412
  */
5219
5413
  ConnectionType?: ConnectionType | undefined;
5414
+ /**
5415
+ * <p>The human-readable name for the connection type that is displayed in the Glue console.</p>
5416
+ * @public
5417
+ */
5418
+ DisplayName?: string | undefined;
5419
+ /**
5420
+ * <p>The name of the vendor or provider that created or maintains this connection type.</p>
5421
+ * @public
5422
+ */
5423
+ Vendor?: string | undefined;
5220
5424
  /**
5221
5425
  * <p>A description of the connection type.</p>
5222
5426
  * @public
5223
5427
  */
5224
5428
  Description?: string | undefined;
5429
+ /**
5430
+ * <p>A list of categories that this connection type belongs to. Categories help users filter and find appropriate connection types based on their
5431
+ * use cases.</p>
5432
+ * @public
5433
+ */
5434
+ Categories?: string[] | undefined;
5225
5435
  /**
5226
5436
  * <p>The supported authentication types, data interface types (compute environments), and data operations of the connector.</p>
5227
5437
  * @public
5228
5438
  */
5229
5439
  Capabilities?: Capabilities | undefined;
5440
+ /**
5441
+ * <p>The URL of the logo associated with a connection type.</p>
5442
+ * @public
5443
+ */
5444
+ LogoUrl?: string | undefined;
5445
+ /**
5446
+ * <p>A list of variants available for this connection type. Different variants may provide specialized configurations for specific use cases or
5447
+ * implementations of the same general connection type.</p>
5448
+ * @public
5449
+ */
5450
+ ConnectionTypeVariants?: ConnectionTypeVariant[] | undefined;
5230
5451
  }
5231
5452
  /**
5232
5453
  * @public
@@ -7371,105 +7592,6 @@ export interface ResetJobBookmarkResponse {
7371
7592
  */
7372
7593
  JobBookmarkEntry?: JobBookmarkEntry | undefined;
7373
7594
  }
7374
- /**
7375
- * <p>Too many jobs are being run concurrently.</p>
7376
- * @public
7377
- */
7378
- export declare class ConcurrentRunsExceededException extends __BaseException {
7379
- readonly name: "ConcurrentRunsExceededException";
7380
- readonly $fault: "client";
7381
- /**
7382
- * <p>A message describing the problem.</p>
7383
- * @public
7384
- */
7385
- Message?: string | undefined;
7386
- /**
7387
- * @internal
7388
- */
7389
- constructor(opts: __ExceptionOptionType<ConcurrentRunsExceededException, __BaseException>);
7390
- }
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
7595
  /**
7474
7596
  * @internal
7475
7597
  */