@aws-sdk/client-glue 3.650.0 → 3.651.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.
- package/dist-cjs/index.js +125 -49
- package/dist-es/models/models_0.js +15 -27
- package/dist-es/models/models_1.js +27 -12
- package/dist-es/models/models_2.js +12 -0
- package/dist-es/protocols/Aws_json1_1.js +56 -2
- package/dist-types/commands/BatchGetTableOptimizerCommand.d.ts +52 -3
- package/dist-types/commands/CancelDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/commands/CancelMLTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/CancelStatementCommand.d.ts +1 -1
- package/dist-types/commands/CheckSchemaVersionValidityCommand.d.ts +1 -1
- package/dist-types/commands/CreateTableOptimizerCommand.d.ts +20 -1
- package/dist-types/commands/DeleteTableOptimizerCommand.d.ts +4 -1
- package/dist-types/commands/GetMLTransformCommand.d.ts +1 -1
- package/dist-types/commands/GetTableOptimizerCommand.d.ts +42 -2
- package/dist-types/commands/ListTableOptimizerRunsCommand.d.ts +31 -1
- package/dist-types/commands/UpdateTableCommand.d.ts +2 -1
- package/dist-types/commands/UpdateTableOptimizerCommand.d.ts +24 -2
- package/dist-types/commands/UpdateTriggerCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUsageProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserDefinedFunctionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +235 -155
- package/dist-types/models/models_1.d.ts +153 -358
- package/dist-types/models/models_2.d.ts +359 -196
- package/dist-types/models/models_3.d.ts +196 -2
- package/dist-types/ts3.4/commands/CancelDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CancelMLTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CancelStatementCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CheckSchemaVersionValidityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetMLTransformCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateTableOptimizerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUsageProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserDefinedFunctionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkflowCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +57 -52
- package/dist-types/ts3.4/models/models_1.d.ts +52 -83
- package/dist-types/ts3.4/models/models_2.d.ts +85 -57
- package/dist-types/ts3.4/models/models_3.d.ts +57 -1
- package/package.json +1 -1
|
@@ -1,7 +1,364 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
-
import {
|
|
4
|
-
import { CatalogEntry, ColumnStatistics, Compatibility, ConnectionInput, CsvHeaderOption, CsvSerdeOption, DatabaseInput, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, DataQualityTargetTable, EncryptionConfiguration,
|
|
3
|
+
import { AuditContext, CrawlerTargets, CustomEntityType, DataSource, ErrorDetail, ExecutionClass, GlueTable, InclusionAnnotationValue, LakeFormationConfiguration, LineageConfiguration, NotificationProperty, Partition, PartitionInput, PartitionValueList, RecrawlPolicy, SchemaChangePolicy, SchemaId, SourceControlAuthStrategy, SourceControlProvider, StatisticAnnotation, TableOptimizer, TableOptimizerRun, TableOptimizerType, TimestampedInclusionAnnotation, Trigger, WorkerType, Workflow, WorkflowRun } from "./models_0";
|
|
4
|
+
import { CatalogEntry, ColumnStatistics, Compatibility, ConnectionInput, CsvHeaderOption, CsvSerdeOption, DatabaseInput, DataCatalogEncryptionSettings, DataFormat, DataQualityEvaluationRunAdditionalRunOptions, DataQualityTargetTable, EncryptionConfiguration, JobBookmarkEntry, Language, Location, MappingEntry, Permission, PrincipalType, ProfileConfiguration, RegistryId, RegistryStatus, ResourceShareType, ResourceUri, SchemaStatus, SchemaVersionStatus, Session, SortDirectionType, TableInput, TaskStatusType, TransformEncryption, TransformParameters, TransformType, ViewDialect } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface GetMLTransformRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The unique identifier of the transform, generated at the time that the transform was
|
|
11
|
+
* created.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
TransformId: string | undefined;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>A structure containing the column name and column importance score for a column. </p>
|
|
18
|
+
* <p>Column importance helps you understand how columns contribute to your model, by identifying which columns in your records are more important than others.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export interface ColumnImportance {
|
|
22
|
+
/**
|
|
23
|
+
* <p>The name of a column.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
ColumnName?: string;
|
|
27
|
+
/**
|
|
28
|
+
* <p>The column importance score for the column, as a decimal.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
Importance?: number;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* <p>The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.</p>
|
|
35
|
+
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Confusion_matrix">Confusion matrix</a> in Wikipedia.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export interface ConfusionMatrix {
|
|
39
|
+
/**
|
|
40
|
+
* <p>The number of matches in the data that the transform correctly found, in the confusion matrix for your transform.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
NumTruePositives?: number;
|
|
44
|
+
/**
|
|
45
|
+
* <p>The number of nonmatches in the data that the transform incorrectly classified as a match,
|
|
46
|
+
* in the confusion matrix for your transform.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
NumFalsePositives?: number;
|
|
50
|
+
/**
|
|
51
|
+
* <p>The number of nonmatches in the data that the transform correctly rejected, in the
|
|
52
|
+
* confusion matrix for your transform.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
NumTrueNegatives?: number;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The number of matches in the data that the transform didn't find, in the confusion matrix for your transform.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
NumFalseNegatives?: number;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* <p>The evaluation metrics for the find matches algorithm. The quality of your machine
|
|
64
|
+
* learning transform is measured by getting your transform to predict some matches and comparing
|
|
65
|
+
* the results to known matches from the same dataset. The quality metrics are based on a subset
|
|
66
|
+
* of your data, so they are not precise.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
export interface FindMatchesMetrics {
|
|
70
|
+
/**
|
|
71
|
+
* <p>The area under the precision/recall curve (AUPRC) is a single number measuring the overall
|
|
72
|
+
* quality of the transform, that is independent of the choice made for precision vs. recall.
|
|
73
|
+
* Higher values indicate that you have a more attractive precision vs. recall tradeoff.</p>
|
|
74
|
+
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Precision_and_recall">Precision and recall</a> in Wikipedia.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
AreaUnderPRCurve?: number;
|
|
78
|
+
/**
|
|
79
|
+
* <p>The precision metric indicates when often your transform is correct when it predicts a match. Specifically, it measures how well the transform finds true positives from the total true positives possible.</p>
|
|
80
|
+
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Precision_and_recall">Precision and recall</a> in Wikipedia.</p>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
Precision?: number;
|
|
84
|
+
/**
|
|
85
|
+
* <p>The recall metric indicates that for an actual match, how often your transform predicts
|
|
86
|
+
* the match. Specifically, it measures how well the transform finds true positives from the
|
|
87
|
+
* total records in the source data.</p>
|
|
88
|
+
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Precision_and_recall">Precision and recall</a> in Wikipedia.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
Recall?: number;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The maximum F1 metric indicates the transform's accuracy between 0 and 1, where 1 is the best accuracy.</p>
|
|
94
|
+
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/F1_score">F1 score</a> in Wikipedia.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
F1?: number;
|
|
98
|
+
/**
|
|
99
|
+
* <p>The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.</p>
|
|
100
|
+
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Confusion_matrix">Confusion matrix</a> in Wikipedia.</p>
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
ConfusionMatrix?: ConfusionMatrix;
|
|
104
|
+
/**
|
|
105
|
+
* <p>A list of <code>ColumnImportance</code> structures containing column importance metrics, sorted in order of descending importance.</p>
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
ColumnImportances?: ColumnImportance[];
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* <p>Evaluation metrics provide an estimate of the quality of your machine learning transform.</p>
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
export interface EvaluationMetrics {
|
|
115
|
+
/**
|
|
116
|
+
* <p>The type of machine learning transform.</p>
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
TransformType: TransformType | undefined;
|
|
120
|
+
/**
|
|
121
|
+
* <p>The evaluation metrics for the find matches algorithm.</p>
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
FindMatchesMetrics?: FindMatchesMetrics;
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* <p>A key-value pair representing a column and data type that this transform can
|
|
128
|
+
* run against. The <code>Schema</code> parameter of the <code>MLTransform</code> may contain up to 100 of these structures.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export interface SchemaColumn {
|
|
132
|
+
/**
|
|
133
|
+
* <p>The name of the column.</p>
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
Name?: string;
|
|
137
|
+
/**
|
|
138
|
+
* <p>The type of data in the column.</p>
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
DataType?: string;
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
* @enum
|
|
146
|
+
*/
|
|
147
|
+
export declare const TransformStatusType: {
|
|
148
|
+
readonly DELETING: "DELETING";
|
|
149
|
+
readonly NOT_READY: "NOT_READY";
|
|
150
|
+
readonly READY: "READY";
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
export type TransformStatusType = (typeof TransformStatusType)[keyof typeof TransformStatusType];
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
export interface GetMLTransformResponse {
|
|
160
|
+
/**
|
|
161
|
+
* <p>The unique identifier of the transform, generated at the time that the transform was
|
|
162
|
+
* created.</p>
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
TransformId?: string;
|
|
166
|
+
/**
|
|
167
|
+
* <p>The unique name given to the transform when it was created.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
Name?: string;
|
|
171
|
+
/**
|
|
172
|
+
* <p>A description of the transform.</p>
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
Description?: string;
|
|
176
|
+
/**
|
|
177
|
+
* <p>The last known status of the transform (to indicate whether it can be used or not). One of "NOT_READY", "READY", or "DELETING".</p>
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
Status?: TransformStatusType;
|
|
181
|
+
/**
|
|
182
|
+
* <p>The date and time when the transform was created.</p>
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
CreatedOn?: Date;
|
|
186
|
+
/**
|
|
187
|
+
* <p>The date and time when the transform was last modified.</p>
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
LastModifiedOn?: Date;
|
|
191
|
+
/**
|
|
192
|
+
* <p>A list of Glue table definitions used by the transform.</p>
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
195
|
+
InputRecordTables?: GlueTable[];
|
|
196
|
+
/**
|
|
197
|
+
* <p>The configuration parameters that are specific to the algorithm used.</p>
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
Parameters?: TransformParameters;
|
|
201
|
+
/**
|
|
202
|
+
* <p>The latest evaluation metrics.</p>
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
EvaluationMetrics?: EvaluationMetrics;
|
|
206
|
+
/**
|
|
207
|
+
* <p>The number of labels available for this transform.</p>
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
LabelCount?: number;
|
|
211
|
+
/**
|
|
212
|
+
* <p>The <code>Map<Column, Type></code> object that represents the schema that this
|
|
213
|
+
* transform accepts. Has an upper bound of 100 columns.</p>
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
Schema?: SchemaColumn[];
|
|
217
|
+
/**
|
|
218
|
+
* <p>The name or Amazon Resource Name (ARN) of the IAM role with the required
|
|
219
|
+
* permissions.</p>
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
222
|
+
Role?: string;
|
|
223
|
+
/**
|
|
224
|
+
* <p>This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see <a href="https://docs.aws.amazon.com/glue/latest/dg/release-notes.html#release-notes-versions">Glue Versions</a> in the developer guide.</p>
|
|
225
|
+
* @public
|
|
226
|
+
*/
|
|
227
|
+
GlueVersion?: string;
|
|
228
|
+
/**
|
|
229
|
+
* <p>The number of Glue data processing units (DPUs) that are allocated to task runs for this transform. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of
|
|
230
|
+
* processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more
|
|
231
|
+
* information, see the <a href="https://aws.amazon.com/glue/pricing/">Glue pricing
|
|
232
|
+
* page</a>. </p>
|
|
233
|
+
* <p>When the <code>WorkerType</code> field is set to a value other than <code>Standard</code>, the <code>MaxCapacity</code> field is set automatically and becomes read-only.</p>
|
|
234
|
+
* @public
|
|
235
|
+
*/
|
|
236
|
+
MaxCapacity?: number;
|
|
237
|
+
/**
|
|
238
|
+
* <p>The type of predefined worker that is allocated when this task runs. Accepts a value of Standard, G.1X, or G.2X.</p>
|
|
239
|
+
* <ul>
|
|
240
|
+
* <li>
|
|
241
|
+
* <p>For the <code>Standard</code> worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.</p>
|
|
242
|
+
* </li>
|
|
243
|
+
* <li>
|
|
244
|
+
* <p>For the <code>G.1X</code> worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.</p>
|
|
245
|
+
* </li>
|
|
246
|
+
* <li>
|
|
247
|
+
* <p>For the <code>G.2X</code> worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.</p>
|
|
248
|
+
* </li>
|
|
249
|
+
* </ul>
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
WorkerType?: WorkerType;
|
|
253
|
+
/**
|
|
254
|
+
* <p>The number of workers of a defined <code>workerType</code> that are allocated when this task runs.</p>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
NumberOfWorkers?: number;
|
|
258
|
+
/**
|
|
259
|
+
* <p>The timeout for a task run for this transform in minutes. This is the maximum time that a task run for this transform can consume resources before it is terminated and enters <code>TIMEOUT</code> status. The default is 2,880 minutes (48 hours).</p>
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
262
|
+
Timeout?: number;
|
|
263
|
+
/**
|
|
264
|
+
* <p>The maximum number of times to retry a task for this transform after a task run fails.</p>
|
|
265
|
+
* @public
|
|
266
|
+
*/
|
|
267
|
+
MaxRetries?: number;
|
|
268
|
+
/**
|
|
269
|
+
* <p>The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.</p>
|
|
270
|
+
* @public
|
|
271
|
+
*/
|
|
272
|
+
TransformEncryption?: TransformEncryption;
|
|
273
|
+
}
|
|
274
|
+
/**
|
|
275
|
+
* <p>The criteria used to filter the machine learning transforms.</p>
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
export interface TransformFilterCriteria {
|
|
279
|
+
/**
|
|
280
|
+
* <p>A unique transform name that is used to filter the machine learning transforms.</p>
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
283
|
+
Name?: string;
|
|
284
|
+
/**
|
|
285
|
+
* <p>The type of machine learning transform that is used to filter the machine learning
|
|
286
|
+
* transforms.</p>
|
|
287
|
+
* @public
|
|
288
|
+
*/
|
|
289
|
+
TransformType?: TransformType;
|
|
290
|
+
/**
|
|
291
|
+
* <p>Filters the list of machine learning transforms by the last known status of the transforms (to indicate whether a transform can be used or not). One of "NOT_READY", "READY", or "DELETING".</p>
|
|
292
|
+
* @public
|
|
293
|
+
*/
|
|
294
|
+
Status?: TransformStatusType;
|
|
295
|
+
/**
|
|
296
|
+
* <p>This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see <a href="https://docs.aws.amazon.com/glue/latest/dg/release-notes.html#release-notes-versions">Glue Versions</a> in the developer guide.</p>
|
|
297
|
+
* @public
|
|
298
|
+
*/
|
|
299
|
+
GlueVersion?: string;
|
|
300
|
+
/**
|
|
301
|
+
* <p>The time and date before which the transforms were created.</p>
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
CreatedBefore?: Date;
|
|
305
|
+
/**
|
|
306
|
+
* <p>The time and date after which the transforms were created.</p>
|
|
307
|
+
* @public
|
|
308
|
+
*/
|
|
309
|
+
CreatedAfter?: Date;
|
|
310
|
+
/**
|
|
311
|
+
* <p>Filter on transforms last modified before this date.</p>
|
|
312
|
+
* @public
|
|
313
|
+
*/
|
|
314
|
+
LastModifiedBefore?: Date;
|
|
315
|
+
/**
|
|
316
|
+
* <p>Filter on transforms last modified after this date.</p>
|
|
317
|
+
* @public
|
|
318
|
+
*/
|
|
319
|
+
LastModifiedAfter?: Date;
|
|
320
|
+
/**
|
|
321
|
+
* <p>Filters on datasets with a specific schema. The <code>Map<Column, Type></code>
|
|
322
|
+
* object is an array of key-value pairs representing the schema this transform accepts, where
|
|
323
|
+
* <code>Column</code> is the name of a column, and <code>Type</code> is the type of the data
|
|
324
|
+
* such as an integer or string. Has an upper bound of 100 columns.</p>
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
Schema?: SchemaColumn[];
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* @public
|
|
331
|
+
* @enum
|
|
332
|
+
*/
|
|
333
|
+
export declare const TransformSortColumnType: {
|
|
334
|
+
readonly CREATED: "CREATED";
|
|
335
|
+
readonly LAST_MODIFIED: "LAST_MODIFIED";
|
|
336
|
+
readonly NAME: "NAME";
|
|
337
|
+
readonly STATUS: "STATUS";
|
|
338
|
+
readonly TRANSFORM_TYPE: "TRANSFORM_TYPE";
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* @public
|
|
342
|
+
*/
|
|
343
|
+
export type TransformSortColumnType = (typeof TransformSortColumnType)[keyof typeof TransformSortColumnType];
|
|
344
|
+
/**
|
|
345
|
+
* <p>The sorting criteria that are associated with the machine learning transform.</p>
|
|
346
|
+
* @public
|
|
347
|
+
*/
|
|
348
|
+
export interface TransformSortCriteria {
|
|
349
|
+
/**
|
|
350
|
+
* <p>The column to be used in the sorting criteria that are associated with the machine
|
|
351
|
+
* learning transform.</p>
|
|
352
|
+
* @public
|
|
353
|
+
*/
|
|
354
|
+
Column: TransformSortColumnType | undefined;
|
|
355
|
+
/**
|
|
356
|
+
* <p>The sort direction to be used in the sorting criteria that are associated with the machine
|
|
357
|
+
* learning transform.</p>
|
|
358
|
+
* @public
|
|
359
|
+
*/
|
|
360
|
+
SortDirection: SortDirectionType | undefined;
|
|
361
|
+
}
|
|
5
362
|
/**
|
|
6
363
|
* @public
|
|
7
364
|
*/
|
|
@@ -6557,200 +6914,6 @@ export interface UpdateTableRequest {
|
|
|
6557
6914
|
*/
|
|
6558
6915
|
Force?: boolean;
|
|
6559
6916
|
}
|
|
6560
|
-
/**
|
|
6561
|
-
* @public
|
|
6562
|
-
*/
|
|
6563
|
-
export interface UpdateTableResponse {
|
|
6564
|
-
}
|
|
6565
|
-
/**
|
|
6566
|
-
* @public
|
|
6567
|
-
*/
|
|
6568
|
-
export interface UpdateTableOptimizerRequest {
|
|
6569
|
-
/**
|
|
6570
|
-
* <p>The Catalog ID of the table.</p>
|
|
6571
|
-
* @public
|
|
6572
|
-
*/
|
|
6573
|
-
CatalogId: string | undefined;
|
|
6574
|
-
/**
|
|
6575
|
-
* <p>The name of the database in the catalog in which the table resides.</p>
|
|
6576
|
-
* @public
|
|
6577
|
-
*/
|
|
6578
|
-
DatabaseName: string | undefined;
|
|
6579
|
-
/**
|
|
6580
|
-
* <p>The name of the table.</p>
|
|
6581
|
-
* @public
|
|
6582
|
-
*/
|
|
6583
|
-
TableName: string | undefined;
|
|
6584
|
-
/**
|
|
6585
|
-
* <p>The type of table optimizer. Currently, the only valid value is <code>compaction</code>.</p>
|
|
6586
|
-
* @public
|
|
6587
|
-
*/
|
|
6588
|
-
Type: TableOptimizerType | undefined;
|
|
6589
|
-
/**
|
|
6590
|
-
* <p>A <code>TableOptimizerConfiguration</code> object representing the configuration of a table optimizer.</p>
|
|
6591
|
-
* @public
|
|
6592
|
-
*/
|
|
6593
|
-
TableOptimizerConfiguration: TableOptimizerConfiguration | undefined;
|
|
6594
|
-
}
|
|
6595
|
-
/**
|
|
6596
|
-
* @public
|
|
6597
|
-
*/
|
|
6598
|
-
export interface UpdateTableOptimizerResponse {
|
|
6599
|
-
}
|
|
6600
|
-
/**
|
|
6601
|
-
* <p>A structure used to provide information used to update a trigger. This object updates the
|
|
6602
|
-
* previous trigger definition by overwriting it completely.</p>
|
|
6603
|
-
* @public
|
|
6604
|
-
*/
|
|
6605
|
-
export interface TriggerUpdate {
|
|
6606
|
-
/**
|
|
6607
|
-
* <p>Reserved for future use.</p>
|
|
6608
|
-
* @public
|
|
6609
|
-
*/
|
|
6610
|
-
Name?: string;
|
|
6611
|
-
/**
|
|
6612
|
-
* <p>A description of this trigger.</p>
|
|
6613
|
-
* @public
|
|
6614
|
-
*/
|
|
6615
|
-
Description?: string;
|
|
6616
|
-
/**
|
|
6617
|
-
* <p>A <code>cron</code> expression used to specify the schedule (see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based
|
|
6618
|
-
* Schedules for Jobs and Crawlers</a>. For example, to run
|
|
6619
|
-
* something every day at 12:15 UTC, you would specify:
|
|
6620
|
-
* <code>cron(15 12 * * ? *)</code>.</p>
|
|
6621
|
-
* @public
|
|
6622
|
-
*/
|
|
6623
|
-
Schedule?: string;
|
|
6624
|
-
/**
|
|
6625
|
-
* <p>The actions initiated by this trigger.</p>
|
|
6626
|
-
* @public
|
|
6627
|
-
*/
|
|
6628
|
-
Actions?: Action[];
|
|
6629
|
-
/**
|
|
6630
|
-
* <p>The predicate of this trigger, which defines when it will fire.</p>
|
|
6631
|
-
* @public
|
|
6632
|
-
*/
|
|
6633
|
-
Predicate?: Predicate;
|
|
6634
|
-
/**
|
|
6635
|
-
* <p>Batch condition that must be met (specified number of events received or batch time window expired)
|
|
6636
|
-
* before EventBridge event trigger fires.</p>
|
|
6637
|
-
* @public
|
|
6638
|
-
*/
|
|
6639
|
-
EventBatchingCondition?: EventBatchingCondition;
|
|
6640
|
-
}
|
|
6641
|
-
/**
|
|
6642
|
-
* @public
|
|
6643
|
-
*/
|
|
6644
|
-
export interface UpdateTriggerRequest {
|
|
6645
|
-
/**
|
|
6646
|
-
* <p>The name of the trigger to update.</p>
|
|
6647
|
-
* @public
|
|
6648
|
-
*/
|
|
6649
|
-
Name: string | undefined;
|
|
6650
|
-
/**
|
|
6651
|
-
* <p>The new values with which to update the trigger.</p>
|
|
6652
|
-
* @public
|
|
6653
|
-
*/
|
|
6654
|
-
TriggerUpdate: TriggerUpdate | undefined;
|
|
6655
|
-
}
|
|
6656
|
-
/**
|
|
6657
|
-
* @public
|
|
6658
|
-
*/
|
|
6659
|
-
export interface UpdateTriggerResponse {
|
|
6660
|
-
/**
|
|
6661
|
-
* <p>The resulting trigger definition.</p>
|
|
6662
|
-
* @public
|
|
6663
|
-
*/
|
|
6664
|
-
Trigger?: Trigger;
|
|
6665
|
-
}
|
|
6666
|
-
/**
|
|
6667
|
-
* @public
|
|
6668
|
-
*/
|
|
6669
|
-
export interface UpdateUsageProfileRequest {
|
|
6670
|
-
/**
|
|
6671
|
-
* <p>The name of the usage profile.</p>
|
|
6672
|
-
* @public
|
|
6673
|
-
*/
|
|
6674
|
-
Name: string | undefined;
|
|
6675
|
-
/**
|
|
6676
|
-
* <p>A description of the usage profile.</p>
|
|
6677
|
-
* @public
|
|
6678
|
-
*/
|
|
6679
|
-
Description?: string;
|
|
6680
|
-
/**
|
|
6681
|
-
* <p>A <code>ProfileConfiguration</code> object specifying the job and session values for the profile.</p>
|
|
6682
|
-
* @public
|
|
6683
|
-
*/
|
|
6684
|
-
Configuration: ProfileConfiguration | undefined;
|
|
6685
|
-
}
|
|
6686
|
-
/**
|
|
6687
|
-
* @public
|
|
6688
|
-
*/
|
|
6689
|
-
export interface UpdateUsageProfileResponse {
|
|
6690
|
-
/**
|
|
6691
|
-
* <p>The name of the usage profile that was updated.</p>
|
|
6692
|
-
* @public
|
|
6693
|
-
*/
|
|
6694
|
-
Name?: string;
|
|
6695
|
-
}
|
|
6696
|
-
/**
|
|
6697
|
-
* @public
|
|
6698
|
-
*/
|
|
6699
|
-
export interface UpdateUserDefinedFunctionRequest {
|
|
6700
|
-
/**
|
|
6701
|
-
* <p>The ID of the Data Catalog where the function to be updated is located. If none is
|
|
6702
|
-
* provided, the Amazon Web Services account ID is used by default.</p>
|
|
6703
|
-
* @public
|
|
6704
|
-
*/
|
|
6705
|
-
CatalogId?: string;
|
|
6706
|
-
/**
|
|
6707
|
-
* <p>The name of the catalog database where the function to be updated is
|
|
6708
|
-
* located.</p>
|
|
6709
|
-
* @public
|
|
6710
|
-
*/
|
|
6711
|
-
DatabaseName: string | undefined;
|
|
6712
|
-
/**
|
|
6713
|
-
* <p>The name of the function.</p>
|
|
6714
|
-
* @public
|
|
6715
|
-
*/
|
|
6716
|
-
FunctionName: string | undefined;
|
|
6717
|
-
/**
|
|
6718
|
-
* <p>A <code>FunctionInput</code> object that redefines the function in the Data
|
|
6719
|
-
* Catalog.</p>
|
|
6720
|
-
* @public
|
|
6721
|
-
*/
|
|
6722
|
-
FunctionInput: UserDefinedFunctionInput | undefined;
|
|
6723
|
-
}
|
|
6724
|
-
/**
|
|
6725
|
-
* @public
|
|
6726
|
-
*/
|
|
6727
|
-
export interface UpdateUserDefinedFunctionResponse {
|
|
6728
|
-
}
|
|
6729
|
-
/**
|
|
6730
|
-
* @public
|
|
6731
|
-
*/
|
|
6732
|
-
export interface UpdateWorkflowRequest {
|
|
6733
|
-
/**
|
|
6734
|
-
* <p>Name of the workflow to be updated.</p>
|
|
6735
|
-
* @public
|
|
6736
|
-
*/
|
|
6737
|
-
Name: string | undefined;
|
|
6738
|
-
/**
|
|
6739
|
-
* <p>The description of the workflow.</p>
|
|
6740
|
-
* @public
|
|
6741
|
-
*/
|
|
6742
|
-
Description?: string;
|
|
6743
|
-
/**
|
|
6744
|
-
* <p>A collection of properties to be used as part of each execution of the workflow.</p>
|
|
6745
|
-
* @public
|
|
6746
|
-
*/
|
|
6747
|
-
DefaultRunProperties?: Record<string, string>;
|
|
6748
|
-
/**
|
|
6749
|
-
* <p>You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.</p>
|
|
6750
|
-
* @public
|
|
6751
|
-
*/
|
|
6752
|
-
MaxConcurrentRuns?: number;
|
|
6753
|
-
}
|
|
6754
6917
|
/**
|
|
6755
6918
|
* @internal
|
|
6756
6919
|
*/
|