@aws-sdk/client-glue 3.687.0 → 3.691.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-types/models/models_0.d.ts +751 -751
- package/dist-types/models/models_1.d.ts +610 -610
- package/dist-types/models/models_2.d.ts +701 -701
- package/dist-types/models/models_3.d.ts +275 -275
- package/dist-types/ts3.4/models/models_0.d.ts +751 -751
- package/dist-types/ts3.4/models/models_1.d.ts +614 -610
- package/dist-types/ts3.4/models/models_2.d.ts +705 -701
- package/dist-types/ts3.4/models/models_3.d.ts +281 -275
- package/package.json +7 -7
|
@@ -11,27 +11,27 @@ export interface TaskRunProperties {
|
|
|
11
11
|
* <p>The type of task run.</p>
|
|
12
12
|
* @public
|
|
13
13
|
*/
|
|
14
|
-
TaskType?: TaskType;
|
|
14
|
+
TaskType?: TaskType | undefined;
|
|
15
15
|
/**
|
|
16
16
|
* <p>The configuration properties for an importing labels task run.</p>
|
|
17
17
|
* @public
|
|
18
18
|
*/
|
|
19
|
-
ImportLabelsTaskRunProperties?: ImportLabelsTaskRunProperties;
|
|
19
|
+
ImportLabelsTaskRunProperties?: ImportLabelsTaskRunProperties | undefined;
|
|
20
20
|
/**
|
|
21
21
|
* <p>The configuration properties for an exporting labels task run.</p>
|
|
22
22
|
* @public
|
|
23
23
|
*/
|
|
24
|
-
ExportLabelsTaskRunProperties?: ExportLabelsTaskRunProperties;
|
|
24
|
+
ExportLabelsTaskRunProperties?: ExportLabelsTaskRunProperties | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* <p>The configuration properties for a labeling set generation task run.</p>
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
29
|
-
LabelingSetGenerationTaskRunProperties?: LabelingSetGenerationTaskRunProperties;
|
|
29
|
+
LabelingSetGenerationTaskRunProperties?: LabelingSetGenerationTaskRunProperties | undefined;
|
|
30
30
|
/**
|
|
31
31
|
* <p>The configuration properties for a find matches task run.</p>
|
|
32
32
|
* @public
|
|
33
33
|
*/
|
|
34
|
-
FindMatchesTaskRunProperties?: FindMatchesTaskRunProperties;
|
|
34
|
+
FindMatchesTaskRunProperties?: FindMatchesTaskRunProperties | undefined;
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
37
|
* @public
|
|
@@ -41,52 +41,52 @@ export interface GetMLTaskRunResponse {
|
|
|
41
41
|
* <p>The unique identifier of the task run.</p>
|
|
42
42
|
* @public
|
|
43
43
|
*/
|
|
44
|
-
TransformId?: string;
|
|
44
|
+
TransformId?: string | undefined;
|
|
45
45
|
/**
|
|
46
46
|
* <p>The unique run identifier associated with this run.</p>
|
|
47
47
|
* @public
|
|
48
48
|
*/
|
|
49
|
-
TaskRunId?: string;
|
|
49
|
+
TaskRunId?: string | undefined;
|
|
50
50
|
/**
|
|
51
51
|
* <p>The status for this task run.</p>
|
|
52
52
|
* @public
|
|
53
53
|
*/
|
|
54
|
-
Status?: TaskStatusType;
|
|
54
|
+
Status?: TaskStatusType | undefined;
|
|
55
55
|
/**
|
|
56
56
|
* <p>The names of the log groups that are associated with the task run.</p>
|
|
57
57
|
* @public
|
|
58
58
|
*/
|
|
59
|
-
LogGroupName?: string;
|
|
59
|
+
LogGroupName?: string | undefined;
|
|
60
60
|
/**
|
|
61
61
|
* <p>The list of properties that are associated with the task run.</p>
|
|
62
62
|
* @public
|
|
63
63
|
*/
|
|
64
|
-
Properties?: TaskRunProperties;
|
|
64
|
+
Properties?: TaskRunProperties | undefined;
|
|
65
65
|
/**
|
|
66
66
|
* <p>The error strings that are associated with the task run.</p>
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
|
-
ErrorString?: string;
|
|
69
|
+
ErrorString?: string | undefined;
|
|
70
70
|
/**
|
|
71
71
|
* <p>The date and time when this task run started.</p>
|
|
72
72
|
* @public
|
|
73
73
|
*/
|
|
74
|
-
StartedOn?: Date;
|
|
74
|
+
StartedOn?: Date | undefined;
|
|
75
75
|
/**
|
|
76
76
|
* <p>The date and time when this task run was last modified.</p>
|
|
77
77
|
* @public
|
|
78
78
|
*/
|
|
79
|
-
LastModifiedOn?: Date;
|
|
79
|
+
LastModifiedOn?: Date | undefined;
|
|
80
80
|
/**
|
|
81
81
|
* <p>The date and time when this task run was completed.</p>
|
|
82
82
|
* @public
|
|
83
83
|
*/
|
|
84
|
-
CompletedOn?: Date;
|
|
84
|
+
CompletedOn?: Date | undefined;
|
|
85
85
|
/**
|
|
86
86
|
* <p>The amount of time (in seconds) that the task run consumed resources.</p>
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
ExecutionTime?: number;
|
|
89
|
+
ExecutionTime?: number | undefined;
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
92
|
* <p>The criteria that are used to filter the task runs for the machine learning
|
|
@@ -98,22 +98,22 @@ export interface TaskRunFilterCriteria {
|
|
|
98
98
|
* <p>The type of task run.</p>
|
|
99
99
|
* @public
|
|
100
100
|
*/
|
|
101
|
-
TaskRunType?: TaskType;
|
|
101
|
+
TaskRunType?: TaskType | undefined;
|
|
102
102
|
/**
|
|
103
103
|
* <p>The current status of the task run.</p>
|
|
104
104
|
* @public
|
|
105
105
|
*/
|
|
106
|
-
Status?: TaskStatusType;
|
|
106
|
+
Status?: TaskStatusType | undefined;
|
|
107
107
|
/**
|
|
108
108
|
* <p>Filter on task runs started before this date.</p>
|
|
109
109
|
* @public
|
|
110
110
|
*/
|
|
111
|
-
StartedBefore?: Date;
|
|
111
|
+
StartedBefore?: Date | undefined;
|
|
112
112
|
/**
|
|
113
113
|
* <p>Filter on task runs started after this date.</p>
|
|
114
114
|
* @public
|
|
115
115
|
*/
|
|
116
|
-
StartedAfter?: Date;
|
|
116
|
+
StartedAfter?: Date | undefined;
|
|
117
117
|
}
|
|
118
118
|
/**
|
|
119
119
|
* @public
|
|
@@ -172,22 +172,22 @@ export interface GetMLTaskRunsRequest {
|
|
|
172
172
|
* <p>A token for pagination of the results. The default is empty.</p>
|
|
173
173
|
* @public
|
|
174
174
|
*/
|
|
175
|
-
NextToken?: string;
|
|
175
|
+
NextToken?: string | undefined;
|
|
176
176
|
/**
|
|
177
177
|
* <p>The maximum number of results to return. </p>
|
|
178
178
|
* @public
|
|
179
179
|
*/
|
|
180
|
-
MaxResults?: number;
|
|
180
|
+
MaxResults?: number | undefined;
|
|
181
181
|
/**
|
|
182
182
|
* <p>The filter criteria, in the <code>TaskRunFilterCriteria</code> structure, for the task run.</p>
|
|
183
183
|
* @public
|
|
184
184
|
*/
|
|
185
|
-
Filter?: TaskRunFilterCriteria;
|
|
185
|
+
Filter?: TaskRunFilterCriteria | undefined;
|
|
186
186
|
/**
|
|
187
187
|
* <p>The sorting criteria, in the <code>TaskRunSortCriteria</code> structure, for the task run.</p>
|
|
188
188
|
* @public
|
|
189
189
|
*/
|
|
190
|
-
Sort?: TaskRunSortCriteria;
|
|
190
|
+
Sort?: TaskRunSortCriteria | undefined;
|
|
191
191
|
}
|
|
192
192
|
/**
|
|
193
193
|
* <p>The sampling parameters that are associated with the machine learning transform.</p>
|
|
@@ -198,52 +198,52 @@ export interface TaskRun {
|
|
|
198
198
|
* <p>The unique identifier for the transform.</p>
|
|
199
199
|
* @public
|
|
200
200
|
*/
|
|
201
|
-
TransformId?: string;
|
|
201
|
+
TransformId?: string | undefined;
|
|
202
202
|
/**
|
|
203
203
|
* <p>The unique identifier for this task run.</p>
|
|
204
204
|
* @public
|
|
205
205
|
*/
|
|
206
|
-
TaskRunId?: string;
|
|
206
|
+
TaskRunId?: string | undefined;
|
|
207
207
|
/**
|
|
208
208
|
* <p>The current status of the requested task run.</p>
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
|
-
Status?: TaskStatusType;
|
|
211
|
+
Status?: TaskStatusType | undefined;
|
|
212
212
|
/**
|
|
213
213
|
* <p>The names of the log group for secure logging, associated with this task run.</p>
|
|
214
214
|
* @public
|
|
215
215
|
*/
|
|
216
|
-
LogGroupName?: string;
|
|
216
|
+
LogGroupName?: string | undefined;
|
|
217
217
|
/**
|
|
218
218
|
* <p>Specifies configuration properties associated with this task run.</p>
|
|
219
219
|
* @public
|
|
220
220
|
*/
|
|
221
|
-
Properties?: TaskRunProperties;
|
|
221
|
+
Properties?: TaskRunProperties | undefined;
|
|
222
222
|
/**
|
|
223
223
|
* <p>The list of error strings associated with this task run.</p>
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
226
|
-
ErrorString?: string;
|
|
226
|
+
ErrorString?: string | undefined;
|
|
227
227
|
/**
|
|
228
228
|
* <p>The date and time that this task run started.</p>
|
|
229
229
|
* @public
|
|
230
230
|
*/
|
|
231
|
-
StartedOn?: Date;
|
|
231
|
+
StartedOn?: Date | undefined;
|
|
232
232
|
/**
|
|
233
233
|
* <p>The last point in time that the requested task run was updated.</p>
|
|
234
234
|
* @public
|
|
235
235
|
*/
|
|
236
|
-
LastModifiedOn?: Date;
|
|
236
|
+
LastModifiedOn?: Date | undefined;
|
|
237
237
|
/**
|
|
238
238
|
* <p>The last point in time that the requested task run was completed.</p>
|
|
239
239
|
* @public
|
|
240
240
|
*/
|
|
241
|
-
CompletedOn?: Date;
|
|
241
|
+
CompletedOn?: Date | undefined;
|
|
242
242
|
/**
|
|
243
243
|
* <p>The amount of time (in seconds) that the task run consumed resources.</p>
|
|
244
244
|
* @public
|
|
245
245
|
*/
|
|
246
|
-
ExecutionTime?: number;
|
|
246
|
+
ExecutionTime?: number | undefined;
|
|
247
247
|
}
|
|
248
248
|
/**
|
|
249
249
|
* @public
|
|
@@ -253,12 +253,12 @@ export interface GetMLTaskRunsResponse {
|
|
|
253
253
|
* <p>A list of task runs that are associated with the transform.</p>
|
|
254
254
|
* @public
|
|
255
255
|
*/
|
|
256
|
-
TaskRuns?: TaskRun[];
|
|
256
|
+
TaskRuns?: TaskRun[] | undefined;
|
|
257
257
|
/**
|
|
258
258
|
* <p>A pagination token, if more results are available.</p>
|
|
259
259
|
* @public
|
|
260
260
|
*/
|
|
261
|
-
NextToken?: string;
|
|
261
|
+
NextToken?: string | undefined;
|
|
262
262
|
}
|
|
263
263
|
/**
|
|
264
264
|
* @public
|
|
@@ -281,12 +281,12 @@ export interface ColumnImportance {
|
|
|
281
281
|
* <p>The name of a column.</p>
|
|
282
282
|
* @public
|
|
283
283
|
*/
|
|
284
|
-
ColumnName?: string;
|
|
284
|
+
ColumnName?: string | undefined;
|
|
285
285
|
/**
|
|
286
286
|
* <p>The column importance score for the column, as a decimal.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
Importance?: number;
|
|
289
|
+
Importance?: number | undefined;
|
|
290
290
|
}
|
|
291
291
|
/**
|
|
292
292
|
* <p>The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.</p>
|
|
@@ -298,24 +298,24 @@ export interface ConfusionMatrix {
|
|
|
298
298
|
* <p>The number of matches in the data that the transform correctly found, in the confusion matrix for your transform.</p>
|
|
299
299
|
* @public
|
|
300
300
|
*/
|
|
301
|
-
NumTruePositives?: number;
|
|
301
|
+
NumTruePositives?: number | undefined;
|
|
302
302
|
/**
|
|
303
303
|
* <p>The number of nonmatches in the data that the transform incorrectly classified as a match,
|
|
304
304
|
* in the confusion matrix for your transform.</p>
|
|
305
305
|
* @public
|
|
306
306
|
*/
|
|
307
|
-
NumFalsePositives?: number;
|
|
307
|
+
NumFalsePositives?: number | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* <p>The number of nonmatches in the data that the transform correctly rejected, in the
|
|
310
310
|
* confusion matrix for your transform.</p>
|
|
311
311
|
* @public
|
|
312
312
|
*/
|
|
313
|
-
NumTrueNegatives?: number;
|
|
313
|
+
NumTrueNegatives?: number | undefined;
|
|
314
314
|
/**
|
|
315
315
|
* <p>The number of matches in the data that the transform didn't find, in the confusion matrix for your transform.</p>
|
|
316
316
|
* @public
|
|
317
317
|
*/
|
|
318
|
-
NumFalseNegatives?: number;
|
|
318
|
+
NumFalseNegatives?: number | undefined;
|
|
319
319
|
}
|
|
320
320
|
/**
|
|
321
321
|
* <p>The evaluation metrics for the find matches algorithm. The quality of your machine
|
|
@@ -332,13 +332,13 @@ export interface FindMatchesMetrics {
|
|
|
332
332
|
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Precision_and_recall">Precision and recall</a> in Wikipedia.</p>
|
|
333
333
|
* @public
|
|
334
334
|
*/
|
|
335
|
-
AreaUnderPRCurve?: number;
|
|
335
|
+
AreaUnderPRCurve?: number | undefined;
|
|
336
336
|
/**
|
|
337
337
|
* <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>
|
|
338
338
|
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Precision_and_recall">Precision and recall</a> in Wikipedia.</p>
|
|
339
339
|
* @public
|
|
340
340
|
*/
|
|
341
|
-
Precision?: number;
|
|
341
|
+
Precision?: number | undefined;
|
|
342
342
|
/**
|
|
343
343
|
* <p>The recall metric indicates that for an actual match, how often your transform predicts
|
|
344
344
|
* the match. Specifically, it measures how well the transform finds true positives from the
|
|
@@ -346,24 +346,24 @@ export interface FindMatchesMetrics {
|
|
|
346
346
|
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Precision_and_recall">Precision and recall</a> in Wikipedia.</p>
|
|
347
347
|
* @public
|
|
348
348
|
*/
|
|
349
|
-
Recall?: number;
|
|
349
|
+
Recall?: number | undefined;
|
|
350
350
|
/**
|
|
351
351
|
* <p>The maximum F1 metric indicates the transform's accuracy between 0 and 1, where 1 is the best accuracy.</p>
|
|
352
352
|
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/F1_score">F1 score</a> in Wikipedia.</p>
|
|
353
353
|
* @public
|
|
354
354
|
*/
|
|
355
|
-
F1?: number;
|
|
355
|
+
F1?: number | undefined;
|
|
356
356
|
/**
|
|
357
357
|
* <p>The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.</p>
|
|
358
358
|
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Confusion_matrix">Confusion matrix</a> in Wikipedia.</p>
|
|
359
359
|
* @public
|
|
360
360
|
*/
|
|
361
|
-
ConfusionMatrix?: ConfusionMatrix;
|
|
361
|
+
ConfusionMatrix?: ConfusionMatrix | undefined;
|
|
362
362
|
/**
|
|
363
363
|
* <p>A list of <code>ColumnImportance</code> structures containing column importance metrics, sorted in order of descending importance.</p>
|
|
364
364
|
* @public
|
|
365
365
|
*/
|
|
366
|
-
ColumnImportances?: ColumnImportance[];
|
|
366
|
+
ColumnImportances?: ColumnImportance[] | undefined;
|
|
367
367
|
}
|
|
368
368
|
/**
|
|
369
369
|
* <p>Evaluation metrics provide an estimate of the quality of your machine learning transform.</p>
|
|
@@ -379,7 +379,7 @@ export interface EvaluationMetrics {
|
|
|
379
379
|
* <p>The evaluation metrics for the find matches algorithm.</p>
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
FindMatchesMetrics?: FindMatchesMetrics;
|
|
382
|
+
FindMatchesMetrics?: FindMatchesMetrics | undefined;
|
|
383
383
|
}
|
|
384
384
|
/**
|
|
385
385
|
* <p>A key-value pair representing a column and data type that this transform can
|
|
@@ -391,12 +391,12 @@ export interface SchemaColumn {
|
|
|
391
391
|
* <p>The name of the column.</p>
|
|
392
392
|
* @public
|
|
393
393
|
*/
|
|
394
|
-
Name?: string;
|
|
394
|
+
Name?: string | undefined;
|
|
395
395
|
/**
|
|
396
396
|
* <p>The type of data in the column.</p>
|
|
397
397
|
* @public
|
|
398
398
|
*/
|
|
399
|
-
DataType?: string;
|
|
399
|
+
DataType?: string | undefined;
|
|
400
400
|
}
|
|
401
401
|
/**
|
|
402
402
|
* @public
|
|
@@ -420,69 +420,69 @@ export interface GetMLTransformResponse {
|
|
|
420
420
|
* created.</p>
|
|
421
421
|
* @public
|
|
422
422
|
*/
|
|
423
|
-
TransformId?: string;
|
|
423
|
+
TransformId?: string | undefined;
|
|
424
424
|
/**
|
|
425
425
|
* <p>The unique name given to the transform when it was created.</p>
|
|
426
426
|
* @public
|
|
427
427
|
*/
|
|
428
|
-
Name?: string;
|
|
428
|
+
Name?: string | undefined;
|
|
429
429
|
/**
|
|
430
430
|
* <p>A description of the transform.</p>
|
|
431
431
|
* @public
|
|
432
432
|
*/
|
|
433
|
-
Description?: string;
|
|
433
|
+
Description?: string | undefined;
|
|
434
434
|
/**
|
|
435
435
|
* <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>
|
|
436
436
|
* @public
|
|
437
437
|
*/
|
|
438
|
-
Status?: TransformStatusType;
|
|
438
|
+
Status?: TransformStatusType | undefined;
|
|
439
439
|
/**
|
|
440
440
|
* <p>The date and time when the transform was created.</p>
|
|
441
441
|
* @public
|
|
442
442
|
*/
|
|
443
|
-
CreatedOn?: Date;
|
|
443
|
+
CreatedOn?: Date | undefined;
|
|
444
444
|
/**
|
|
445
445
|
* <p>The date and time when the transform was last modified.</p>
|
|
446
446
|
* @public
|
|
447
447
|
*/
|
|
448
|
-
LastModifiedOn?: Date;
|
|
448
|
+
LastModifiedOn?: Date | undefined;
|
|
449
449
|
/**
|
|
450
450
|
* <p>A list of Glue table definitions used by the transform.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
InputRecordTables?: GlueTable[];
|
|
453
|
+
InputRecordTables?: GlueTable[] | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>The configuration parameters that are specific to the algorithm used.</p>
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
Parameters?: TransformParameters;
|
|
458
|
+
Parameters?: TransformParameters | undefined;
|
|
459
459
|
/**
|
|
460
460
|
* <p>The latest evaluation metrics.</p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
EvaluationMetrics?: EvaluationMetrics;
|
|
463
|
+
EvaluationMetrics?: EvaluationMetrics | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* <p>The number of labels available for this transform.</p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
468
|
-
LabelCount?: number;
|
|
468
|
+
LabelCount?: number | undefined;
|
|
469
469
|
/**
|
|
470
470
|
* <p>The <code>Map<Column, Type></code> object that represents the schema that this
|
|
471
471
|
* transform accepts. Has an upper bound of 100 columns.</p>
|
|
472
472
|
* @public
|
|
473
473
|
*/
|
|
474
|
-
Schema?: SchemaColumn[];
|
|
474
|
+
Schema?: SchemaColumn[] | undefined;
|
|
475
475
|
/**
|
|
476
476
|
* <p>The name or Amazon Resource Name (ARN) of the IAM role with the required
|
|
477
477
|
* permissions.</p>
|
|
478
478
|
* @public
|
|
479
479
|
*/
|
|
480
|
-
Role?: string;
|
|
480
|
+
Role?: string | undefined;
|
|
481
481
|
/**
|
|
482
482
|
* <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>
|
|
483
483
|
* @public
|
|
484
484
|
*/
|
|
485
|
-
GlueVersion?: string;
|
|
485
|
+
GlueVersion?: string | undefined;
|
|
486
486
|
/**
|
|
487
487
|
* <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
|
|
488
488
|
* processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more
|
|
@@ -491,7 +491,7 @@ export interface GetMLTransformResponse {
|
|
|
491
491
|
* <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>
|
|
492
492
|
* @public
|
|
493
493
|
*/
|
|
494
|
-
MaxCapacity?: number;
|
|
494
|
+
MaxCapacity?: number | undefined;
|
|
495
495
|
/**
|
|
496
496
|
* <p>The type of predefined worker that is allocated when this task runs. Accepts a value of Standard, G.1X, or G.2X.</p>
|
|
497
497
|
* <ul>
|
|
@@ -507,27 +507,27 @@ export interface GetMLTransformResponse {
|
|
|
507
507
|
* </ul>
|
|
508
508
|
* @public
|
|
509
509
|
*/
|
|
510
|
-
WorkerType?: WorkerType;
|
|
510
|
+
WorkerType?: WorkerType | undefined;
|
|
511
511
|
/**
|
|
512
512
|
* <p>The number of workers of a defined <code>workerType</code> that are allocated when this task runs.</p>
|
|
513
513
|
* @public
|
|
514
514
|
*/
|
|
515
|
-
NumberOfWorkers?: number;
|
|
515
|
+
NumberOfWorkers?: number | undefined;
|
|
516
516
|
/**
|
|
517
517
|
* <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>
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
|
-
Timeout?: number;
|
|
520
|
+
Timeout?: number | undefined;
|
|
521
521
|
/**
|
|
522
522
|
* <p>The maximum number of times to retry a task for this transform after a task run fails.</p>
|
|
523
523
|
* @public
|
|
524
524
|
*/
|
|
525
|
-
MaxRetries?: number;
|
|
525
|
+
MaxRetries?: number | undefined;
|
|
526
526
|
/**
|
|
527
527
|
* <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>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
TransformEncryption?: TransformEncryption;
|
|
530
|
+
TransformEncryption?: TransformEncryption | undefined;
|
|
531
531
|
}
|
|
532
532
|
/**
|
|
533
533
|
* <p>The criteria used to filter the machine learning transforms.</p>
|
|
@@ -538,43 +538,43 @@ export interface TransformFilterCriteria {
|
|
|
538
538
|
* <p>A unique transform name that is used to filter the machine learning transforms.</p>
|
|
539
539
|
* @public
|
|
540
540
|
*/
|
|
541
|
-
Name?: string;
|
|
541
|
+
Name?: string | undefined;
|
|
542
542
|
/**
|
|
543
543
|
* <p>The type of machine learning transform that is used to filter the machine learning
|
|
544
544
|
* transforms.</p>
|
|
545
545
|
* @public
|
|
546
546
|
*/
|
|
547
|
-
TransformType?: TransformType;
|
|
547
|
+
TransformType?: TransformType | undefined;
|
|
548
548
|
/**
|
|
549
549
|
* <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>
|
|
550
550
|
* @public
|
|
551
551
|
*/
|
|
552
|
-
Status?: TransformStatusType;
|
|
552
|
+
Status?: TransformStatusType | undefined;
|
|
553
553
|
/**
|
|
554
554
|
* <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>
|
|
555
555
|
* @public
|
|
556
556
|
*/
|
|
557
|
-
GlueVersion?: string;
|
|
557
|
+
GlueVersion?: string | undefined;
|
|
558
558
|
/**
|
|
559
559
|
* <p>The time and date before which the transforms were created.</p>
|
|
560
560
|
* @public
|
|
561
561
|
*/
|
|
562
|
-
CreatedBefore?: Date;
|
|
562
|
+
CreatedBefore?: Date | undefined;
|
|
563
563
|
/**
|
|
564
564
|
* <p>The time and date after which the transforms were created.</p>
|
|
565
565
|
* @public
|
|
566
566
|
*/
|
|
567
|
-
CreatedAfter?: Date;
|
|
567
|
+
CreatedAfter?: Date | undefined;
|
|
568
568
|
/**
|
|
569
569
|
* <p>Filter on transforms last modified before this date.</p>
|
|
570
570
|
* @public
|
|
571
571
|
*/
|
|
572
|
-
LastModifiedBefore?: Date;
|
|
572
|
+
LastModifiedBefore?: Date | undefined;
|
|
573
573
|
/**
|
|
574
574
|
* <p>Filter on transforms last modified after this date.</p>
|
|
575
575
|
* @public
|
|
576
576
|
*/
|
|
577
|
-
LastModifiedAfter?: Date;
|
|
577
|
+
LastModifiedAfter?: Date | undefined;
|
|
578
578
|
/**
|
|
579
579
|
* <p>Filters on datasets with a specific schema. The <code>Map<Column, Type></code>
|
|
580
580
|
* object is an array of key-value pairs representing the schema this transform accepts, where
|
|
@@ -582,7 +582,7 @@ export interface TransformFilterCriteria {
|
|
|
582
582
|
* such as an integer or string. Has an upper bound of 100 columns.</p>
|
|
583
583
|
* @public
|
|
584
584
|
*/
|
|
585
|
-
Schema?: SchemaColumn[];
|
|
585
|
+
Schema?: SchemaColumn[] | undefined;
|
|
586
586
|
}
|
|
587
587
|
/**
|
|
588
588
|
* @public
|
|
@@ -625,22 +625,22 @@ export interface GetMLTransformsRequest {
|
|
|
625
625
|
* <p>A paginated token to offset the results.</p>
|
|
626
626
|
* @public
|
|
627
627
|
*/
|
|
628
|
-
NextToken?: string;
|
|
628
|
+
NextToken?: string | undefined;
|
|
629
629
|
/**
|
|
630
630
|
* <p>The maximum number of results to return.</p>
|
|
631
631
|
* @public
|
|
632
632
|
*/
|
|
633
|
-
MaxResults?: number;
|
|
633
|
+
MaxResults?: number | undefined;
|
|
634
634
|
/**
|
|
635
635
|
* <p>The filter transformation criteria.</p>
|
|
636
636
|
* @public
|
|
637
637
|
*/
|
|
638
|
-
Filter?: TransformFilterCriteria;
|
|
638
|
+
Filter?: TransformFilterCriteria | undefined;
|
|
639
639
|
/**
|
|
640
640
|
* <p>The sorting criteria.</p>
|
|
641
641
|
* @public
|
|
642
642
|
*/
|
|
643
|
-
Sort?: TransformSortCriteria;
|
|
643
|
+
Sort?: TransformSortCriteria | undefined;
|
|
644
644
|
}
|
|
645
645
|
/**
|
|
646
646
|
* <p>A structure for a machine learning transform.</p>
|
|
@@ -652,62 +652,62 @@ export interface MLTransform {
|
|
|
652
652
|
* guaranteed to be unique and does not change.</p>
|
|
653
653
|
* @public
|
|
654
654
|
*/
|
|
655
|
-
TransformId?: string;
|
|
655
|
+
TransformId?: string | undefined;
|
|
656
656
|
/**
|
|
657
657
|
* <p>A user-defined name for the machine learning transform. Names are not guaranteed unique
|
|
658
658
|
* and can be changed at any time.</p>
|
|
659
659
|
* @public
|
|
660
660
|
*/
|
|
661
|
-
Name?: string;
|
|
661
|
+
Name?: string | undefined;
|
|
662
662
|
/**
|
|
663
663
|
* <p>A user-defined, long-form description text for the machine learning transform.
|
|
664
664
|
* Descriptions are not guaranteed to be unique and can be changed at any time.</p>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
Description?: string;
|
|
667
|
+
Description?: string | undefined;
|
|
668
668
|
/**
|
|
669
669
|
* <p>The current status of the machine learning transform.</p>
|
|
670
670
|
* @public
|
|
671
671
|
*/
|
|
672
|
-
Status?: TransformStatusType;
|
|
672
|
+
Status?: TransformStatusType | undefined;
|
|
673
673
|
/**
|
|
674
674
|
* <p>A timestamp. The time and date that this machine learning transform was created.</p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
CreatedOn?: Date;
|
|
677
|
+
CreatedOn?: Date | undefined;
|
|
678
678
|
/**
|
|
679
679
|
* <p>A timestamp. The last point in time when this machine learning transform was modified.</p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
LastModifiedOn?: Date;
|
|
682
|
+
LastModifiedOn?: Date | undefined;
|
|
683
683
|
/**
|
|
684
684
|
* <p>A list of Glue table definitions used by the transform.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
InputRecordTables?: GlueTable[];
|
|
687
|
+
InputRecordTables?: GlueTable[] | undefined;
|
|
688
688
|
/**
|
|
689
689
|
* <p>A <code>TransformParameters</code> object. You can use parameters to tune (customize) the
|
|
690
690
|
* behavior of the machine learning transform by specifying what data it learns from and your
|
|
691
691
|
* preference on various tradeoffs (such as precious vs. recall, or accuracy vs. cost).</p>
|
|
692
692
|
* @public
|
|
693
693
|
*/
|
|
694
|
-
Parameters?: TransformParameters;
|
|
694
|
+
Parameters?: TransformParameters | undefined;
|
|
695
695
|
/**
|
|
696
696
|
* <p>An <code>EvaluationMetrics</code> object. Evaluation metrics provide an estimate of the quality of your machine learning transform.</p>
|
|
697
697
|
* @public
|
|
698
698
|
*/
|
|
699
|
-
EvaluationMetrics?: EvaluationMetrics;
|
|
699
|
+
EvaluationMetrics?: EvaluationMetrics | undefined;
|
|
700
700
|
/**
|
|
701
701
|
* <p>A count identifier for the labeling files generated by Glue for this transform. As you create a better transform, you can iteratively download, label, and upload the labeling file.</p>
|
|
702
702
|
* @public
|
|
703
703
|
*/
|
|
704
|
-
LabelCount?: number;
|
|
704
|
+
LabelCount?: number | undefined;
|
|
705
705
|
/**
|
|
706
706
|
* <p>A map of key-value pairs representing the columns and data types that this transform can
|
|
707
707
|
* run against. Has an upper bound of 100 columns.</p>
|
|
708
708
|
* @public
|
|
709
709
|
*/
|
|
710
|
-
Schema?: SchemaColumn[];
|
|
710
|
+
Schema?: SchemaColumn[] | undefined;
|
|
711
711
|
/**
|
|
712
712
|
* <p>The name or Amazon Resource Name (ARN) of the IAM role with the required permissions. The required permissions include both Glue service role permissions to Glue resources, and Amazon S3 permissions required by the transform. </p>
|
|
713
713
|
* <ul>
|
|
@@ -720,12 +720,12 @@ export interface MLTransform {
|
|
|
720
720
|
* </ul>
|
|
721
721
|
* @public
|
|
722
722
|
*/
|
|
723
|
-
Role?: string;
|
|
723
|
+
Role?: string | undefined;
|
|
724
724
|
/**
|
|
725
725
|
* <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>
|
|
726
726
|
* @public
|
|
727
727
|
*/
|
|
728
|
-
GlueVersion?: string;
|
|
728
|
+
GlueVersion?: string | undefined;
|
|
729
729
|
/**
|
|
730
730
|
* <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
|
|
731
731
|
* processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more
|
|
@@ -751,7 +751,7 @@ export interface MLTransform {
|
|
|
751
751
|
* <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>
|
|
752
752
|
* @public
|
|
753
753
|
*/
|
|
754
|
-
MaxCapacity?: number;
|
|
754
|
+
MaxCapacity?: number | undefined;
|
|
755
755
|
/**
|
|
756
756
|
* <p>The type of predefined worker that is allocated when a task of this transform runs. Accepts a value of Standard, G.1X, or G.2X.</p>
|
|
757
757
|
* <ul>
|
|
@@ -784,29 +784,29 @@ export interface MLTransform {
|
|
|
784
784
|
* </ul>
|
|
785
785
|
* @public
|
|
786
786
|
*/
|
|
787
|
-
WorkerType?: WorkerType;
|
|
787
|
+
WorkerType?: WorkerType | undefined;
|
|
788
788
|
/**
|
|
789
789
|
* <p>The number of workers of a defined <code>workerType</code> that are allocated when a task of the transform runs.</p>
|
|
790
790
|
* <p>If <code>WorkerType</code> is set, then <code>NumberOfWorkers</code> is required (and vice versa).</p>
|
|
791
791
|
* @public
|
|
792
792
|
*/
|
|
793
|
-
NumberOfWorkers?: number;
|
|
793
|
+
NumberOfWorkers?: number | undefined;
|
|
794
794
|
/**
|
|
795
795
|
* <p>The timeout in minutes of the machine learning transform.</p>
|
|
796
796
|
* @public
|
|
797
797
|
*/
|
|
798
|
-
Timeout?: number;
|
|
798
|
+
Timeout?: number | undefined;
|
|
799
799
|
/**
|
|
800
800
|
* <p>The maximum number of times to retry after an <code>MLTaskRun</code> of the machine
|
|
801
801
|
* learning transform fails.</p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
MaxRetries?: number;
|
|
804
|
+
MaxRetries?: number | undefined;
|
|
805
805
|
/**
|
|
806
806
|
* <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>
|
|
807
807
|
* @public
|
|
808
808
|
*/
|
|
809
|
-
TransformEncryption?: TransformEncryption;
|
|
809
|
+
TransformEncryption?: TransformEncryption | undefined;
|
|
810
810
|
}
|
|
811
811
|
/**
|
|
812
812
|
* @public
|
|
@@ -821,7 +821,7 @@ export interface GetMLTransformsResponse {
|
|
|
821
821
|
* <p>A pagination token, if more results are available.</p>
|
|
822
822
|
* @public
|
|
823
823
|
*/
|
|
824
|
-
NextToken?: string;
|
|
824
|
+
NextToken?: string | undefined;
|
|
825
825
|
}
|
|
826
826
|
/**
|
|
827
827
|
* @public
|
|
@@ -832,7 +832,7 @@ export interface GetPartitionRequest {
|
|
|
832
832
|
* the Amazon Web Services account ID is used by default.</p>
|
|
833
833
|
* @public
|
|
834
834
|
*/
|
|
835
|
-
CatalogId?: string;
|
|
835
|
+
CatalogId?: string | undefined;
|
|
836
836
|
/**
|
|
837
837
|
* <p>The name of the catalog database where the partition resides.</p>
|
|
838
838
|
* @public
|
|
@@ -858,7 +858,7 @@ export interface GetPartitionResponse {
|
|
|
858
858
|
* object.</p>
|
|
859
859
|
* @public
|
|
860
860
|
*/
|
|
861
|
-
Partition?: Partition;
|
|
861
|
+
Partition?: Partition | undefined;
|
|
862
862
|
}
|
|
863
863
|
/**
|
|
864
864
|
* @public
|
|
@@ -868,7 +868,7 @@ export interface GetPartitionIndexesRequest {
|
|
|
868
868
|
* <p>The catalog ID where the table resides.</p>
|
|
869
869
|
* @public
|
|
870
870
|
*/
|
|
871
|
-
CatalogId?: string;
|
|
871
|
+
CatalogId?: string | undefined;
|
|
872
872
|
/**
|
|
873
873
|
* <p>Specifies the name of a database from which you want to retrieve partition indexes.</p>
|
|
874
874
|
* @public
|
|
@@ -883,7 +883,7 @@ export interface GetPartitionIndexesRequest {
|
|
|
883
883
|
* <p>A continuation token, included if this is a continuation call.</p>
|
|
884
884
|
* @public
|
|
885
885
|
*/
|
|
886
|
-
NextToken?: string;
|
|
886
|
+
NextToken?: string | undefined;
|
|
887
887
|
}
|
|
888
888
|
/**
|
|
889
889
|
* @public
|
|
@@ -927,12 +927,12 @@ export interface BackfillError {
|
|
|
927
927
|
* <p>The error code for an error that occurred when registering partition indexes for an existing table.</p>
|
|
928
928
|
* @public
|
|
929
929
|
*/
|
|
930
|
-
Code?: BackfillErrorCode;
|
|
930
|
+
Code?: BackfillErrorCode | undefined;
|
|
931
931
|
/**
|
|
932
932
|
* <p>A list of a limited number of partitions in the response.</p>
|
|
933
933
|
* @public
|
|
934
934
|
*/
|
|
935
|
-
Partitions?: PartitionValueList[];
|
|
935
|
+
Partitions?: PartitionValueList[] | undefined;
|
|
936
936
|
}
|
|
937
937
|
/**
|
|
938
938
|
* @public
|
|
@@ -1003,7 +1003,7 @@ export interface PartitionIndexDescriptor {
|
|
|
1003
1003
|
* <p>A list of errors that can occur when registering partition indexes for an existing table.</p>
|
|
1004
1004
|
* @public
|
|
1005
1005
|
*/
|
|
1006
|
-
BackfillErrors?: BackfillError[];
|
|
1006
|
+
BackfillErrors?: BackfillError[] | undefined;
|
|
1007
1007
|
}
|
|
1008
1008
|
/**
|
|
1009
1009
|
* @public
|
|
@@ -1013,12 +1013,12 @@ export interface GetPartitionIndexesResponse {
|
|
|
1013
1013
|
* <p>A list of index descriptors.</p>
|
|
1014
1014
|
* @public
|
|
1015
1015
|
*/
|
|
1016
|
-
PartitionIndexDescriptorList?: PartitionIndexDescriptor[];
|
|
1016
|
+
PartitionIndexDescriptorList?: PartitionIndexDescriptor[] | undefined;
|
|
1017
1017
|
/**
|
|
1018
1018
|
* <p>A continuation token, present if the current list segment is not the last.</p>
|
|
1019
1019
|
* @public
|
|
1020
1020
|
*/
|
|
1021
|
-
NextToken?: string;
|
|
1021
|
+
NextToken?: string | undefined;
|
|
1022
1022
|
}
|
|
1023
1023
|
/**
|
|
1024
1024
|
* <p>Defines a non-overlapping region of a table's partitions, allowing
|
|
@@ -1047,7 +1047,7 @@ export interface GetPartitionsRequest {
|
|
|
1047
1047
|
* the Amazon Web Services account ID is used by default.</p>
|
|
1048
1048
|
* @public
|
|
1049
1049
|
*/
|
|
1050
|
-
CatalogId?: string;
|
|
1050
|
+
CatalogId?: string | undefined;
|
|
1051
1051
|
/**
|
|
1052
1052
|
* <p>The name of the catalog database where the partitions reside.</p>
|
|
1053
1053
|
* @public
|
|
@@ -1166,38 +1166,38 @@ export interface GetPartitionsRequest {
|
|
|
1166
1166
|
* <i>Sample API Call</i>: </p>
|
|
1167
1167
|
* @public
|
|
1168
1168
|
*/
|
|
1169
|
-
Expression?: string;
|
|
1169
|
+
Expression?: string | undefined;
|
|
1170
1170
|
/**
|
|
1171
1171
|
* <p>A continuation token, if this is not the first call to retrieve
|
|
1172
1172
|
* these partitions.</p>
|
|
1173
1173
|
* @public
|
|
1174
1174
|
*/
|
|
1175
|
-
NextToken?: string;
|
|
1175
|
+
NextToken?: string | undefined;
|
|
1176
1176
|
/**
|
|
1177
1177
|
* <p>The segment of the table's partitions to scan in this request.</p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
Segment?: Segment;
|
|
1180
|
+
Segment?: Segment | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* <p>The maximum number of partitions to return in a single response.</p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
MaxResults?: number;
|
|
1185
|
+
MaxResults?: number | undefined;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* <p>When true, specifies not returning the partition column schema. Useful when you are interested only in other partition attributes such as partition values or location. This approach avoids the problem of a large response by not returning duplicate data.</p>
|
|
1188
1188
|
* @public
|
|
1189
1189
|
*/
|
|
1190
|
-
ExcludeColumnSchema?: boolean;
|
|
1190
|
+
ExcludeColumnSchema?: boolean | undefined;
|
|
1191
1191
|
/**
|
|
1192
1192
|
* <p>The transaction ID at which to read the partition contents.</p>
|
|
1193
1193
|
* @public
|
|
1194
1194
|
*/
|
|
1195
|
-
TransactionId?: string;
|
|
1195
|
+
TransactionId?: string | undefined;
|
|
1196
1196
|
/**
|
|
1197
1197
|
* <p>The time as of when to read the partition contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with <code>TransactionId</code>.</p>
|
|
1198
1198
|
* @public
|
|
1199
1199
|
*/
|
|
1200
|
-
QueryAsOfTime?: Date;
|
|
1200
|
+
QueryAsOfTime?: Date | undefined;
|
|
1201
1201
|
}
|
|
1202
1202
|
/**
|
|
1203
1203
|
* @public
|
|
@@ -1207,13 +1207,13 @@ export interface GetPartitionsResponse {
|
|
|
1207
1207
|
* <p>A list of requested partitions.</p>
|
|
1208
1208
|
* @public
|
|
1209
1209
|
*/
|
|
1210
|
-
Partitions?: Partition[];
|
|
1210
|
+
Partitions?: Partition[] | undefined;
|
|
1211
1211
|
/**
|
|
1212
1212
|
* <p>A continuation token, if the returned list of partitions does not include the last
|
|
1213
1213
|
* one.</p>
|
|
1214
1214
|
* @public
|
|
1215
1215
|
*/
|
|
1216
|
-
NextToken?: string;
|
|
1216
|
+
NextToken?: string | undefined;
|
|
1217
1217
|
}
|
|
1218
1218
|
/**
|
|
1219
1219
|
* @public
|
|
@@ -1233,17 +1233,17 @@ export interface GetPlanRequest {
|
|
|
1233
1233
|
* <p>The target tables.</p>
|
|
1234
1234
|
* @public
|
|
1235
1235
|
*/
|
|
1236
|
-
Sinks?: CatalogEntry[];
|
|
1236
|
+
Sinks?: CatalogEntry[] | undefined;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* <p>The parameters for the mapping.</p>
|
|
1239
1239
|
* @public
|
|
1240
1240
|
*/
|
|
1241
|
-
Location?: Location;
|
|
1241
|
+
Location?: Location | undefined;
|
|
1242
1242
|
/**
|
|
1243
1243
|
* <p>The programming language of the code to perform the mapping.</p>
|
|
1244
1244
|
* @public
|
|
1245
1245
|
*/
|
|
1246
|
-
Language?: Language;
|
|
1246
|
+
Language?: Language | undefined;
|
|
1247
1247
|
/**
|
|
1248
1248
|
* <p>A map to hold additional optional key-value parameters.</p>
|
|
1249
1249
|
* <p>Currently, these key-value pairs are supported:</p>
|
|
@@ -1258,7 +1258,7 @@ export interface GetPlanRequest {
|
|
|
1258
1258
|
* </ul>
|
|
1259
1259
|
* @public
|
|
1260
1260
|
*/
|
|
1261
|
-
AdditionalPlanOptionsMap?: Record<string, string
|
|
1261
|
+
AdditionalPlanOptionsMap?: Record<string, string> | undefined;
|
|
1262
1262
|
}
|
|
1263
1263
|
/**
|
|
1264
1264
|
* @public
|
|
@@ -1268,12 +1268,12 @@ export interface GetPlanResponse {
|
|
|
1268
1268
|
* <p>A Python script to perform the mapping.</p>
|
|
1269
1269
|
* @public
|
|
1270
1270
|
*/
|
|
1271
|
-
PythonScript?: string;
|
|
1271
|
+
PythonScript?: string | undefined;
|
|
1272
1272
|
/**
|
|
1273
1273
|
* <p>The Scala code to perform the mapping.</p>
|
|
1274
1274
|
* @public
|
|
1275
1275
|
*/
|
|
1276
|
-
ScalaCode?: string;
|
|
1276
|
+
ScalaCode?: string | undefined;
|
|
1277
1277
|
}
|
|
1278
1278
|
/**
|
|
1279
1279
|
* @public
|
|
@@ -1293,32 +1293,32 @@ export interface GetRegistryResponse {
|
|
|
1293
1293
|
* <p>The name of the registry.</p>
|
|
1294
1294
|
* @public
|
|
1295
1295
|
*/
|
|
1296
|
-
RegistryName?: string;
|
|
1296
|
+
RegistryName?: string | undefined;
|
|
1297
1297
|
/**
|
|
1298
1298
|
* <p>The Amazon Resource Name (ARN) of the registry.</p>
|
|
1299
1299
|
* @public
|
|
1300
1300
|
*/
|
|
1301
|
-
RegistryArn?: string;
|
|
1301
|
+
RegistryArn?: string | undefined;
|
|
1302
1302
|
/**
|
|
1303
1303
|
* <p>A description of the registry.</p>
|
|
1304
1304
|
* @public
|
|
1305
1305
|
*/
|
|
1306
|
-
Description?: string;
|
|
1306
|
+
Description?: string | undefined;
|
|
1307
1307
|
/**
|
|
1308
1308
|
* <p>The status of the registry.</p>
|
|
1309
1309
|
* @public
|
|
1310
1310
|
*/
|
|
1311
|
-
Status?: RegistryStatus;
|
|
1311
|
+
Status?: RegistryStatus | undefined;
|
|
1312
1312
|
/**
|
|
1313
1313
|
* <p>The date and time the registry was created.</p>
|
|
1314
1314
|
* @public
|
|
1315
1315
|
*/
|
|
1316
|
-
CreatedTime?: string;
|
|
1316
|
+
CreatedTime?: string | undefined;
|
|
1317
1317
|
/**
|
|
1318
1318
|
* <p>The date and time the registry was updated.</p>
|
|
1319
1319
|
* @public
|
|
1320
1320
|
*/
|
|
1321
|
-
UpdatedTime?: string;
|
|
1321
|
+
UpdatedTime?: string | undefined;
|
|
1322
1322
|
}
|
|
1323
1323
|
/**
|
|
1324
1324
|
* @public
|
|
@@ -1328,12 +1328,12 @@ export interface GetResourcePoliciesRequest {
|
|
|
1328
1328
|
* <p>A continuation token, if this is a continuation request.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
NextToken?: string;
|
|
1331
|
+
NextToken?: string | undefined;
|
|
1332
1332
|
/**
|
|
1333
1333
|
* <p>The maximum size of a list to return.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
MaxResults?: number;
|
|
1336
|
+
MaxResults?: number | undefined;
|
|
1337
1337
|
}
|
|
1338
1338
|
/**
|
|
1339
1339
|
* <p>A structure for returning a resource policy.</p>
|
|
@@ -1344,22 +1344,22 @@ export interface GluePolicy {
|
|
|
1344
1344
|
* <p>Contains the requested policy document, in JSON format.</p>
|
|
1345
1345
|
* @public
|
|
1346
1346
|
*/
|
|
1347
|
-
PolicyInJson?: string;
|
|
1347
|
+
PolicyInJson?: string | undefined;
|
|
1348
1348
|
/**
|
|
1349
1349
|
* <p>Contains the hash value associated with this policy.</p>
|
|
1350
1350
|
* @public
|
|
1351
1351
|
*/
|
|
1352
|
-
PolicyHash?: string;
|
|
1352
|
+
PolicyHash?: string | undefined;
|
|
1353
1353
|
/**
|
|
1354
1354
|
* <p>The date and time at which the policy was created.</p>
|
|
1355
1355
|
* @public
|
|
1356
1356
|
*/
|
|
1357
|
-
CreateTime?: Date;
|
|
1357
|
+
CreateTime?: Date | undefined;
|
|
1358
1358
|
/**
|
|
1359
1359
|
* <p>The date and time at which the policy was last updated.</p>
|
|
1360
1360
|
* @public
|
|
1361
1361
|
*/
|
|
1362
|
-
UpdateTime?: Date;
|
|
1362
|
+
UpdateTime?: Date | undefined;
|
|
1363
1363
|
}
|
|
1364
1364
|
/**
|
|
1365
1365
|
* @public
|
|
@@ -1369,12 +1369,12 @@ export interface GetResourcePoliciesResponse {
|
|
|
1369
1369
|
* <p>A list of the individual resource policies and the account-level resource policy.</p>
|
|
1370
1370
|
* @public
|
|
1371
1371
|
*/
|
|
1372
|
-
GetResourcePoliciesResponseList?: GluePolicy[];
|
|
1372
|
+
GetResourcePoliciesResponseList?: GluePolicy[] | undefined;
|
|
1373
1373
|
/**
|
|
1374
1374
|
* <p>A continuation token, if the returned list does not contain the last resource policy available.</p>
|
|
1375
1375
|
* @public
|
|
1376
1376
|
*/
|
|
1377
|
-
NextToken?: string;
|
|
1377
|
+
NextToken?: string | undefined;
|
|
1378
1378
|
}
|
|
1379
1379
|
/**
|
|
1380
1380
|
* @public
|
|
@@ -1387,7 +1387,7 @@ export interface GetResourcePolicyRequest {
|
|
|
1387
1387
|
* </p>
|
|
1388
1388
|
* @public
|
|
1389
1389
|
*/
|
|
1390
|
-
ResourceArn?: string;
|
|
1390
|
+
ResourceArn?: string | undefined;
|
|
1391
1391
|
}
|
|
1392
1392
|
/**
|
|
1393
1393
|
* @public
|
|
@@ -1397,22 +1397,22 @@ export interface GetResourcePolicyResponse {
|
|
|
1397
1397
|
* <p>Contains the requested policy document, in JSON format.</p>
|
|
1398
1398
|
* @public
|
|
1399
1399
|
*/
|
|
1400
|
-
PolicyInJson?: string;
|
|
1400
|
+
PolicyInJson?: string | undefined;
|
|
1401
1401
|
/**
|
|
1402
1402
|
* <p>Contains the hash value associated with this policy.</p>
|
|
1403
1403
|
* @public
|
|
1404
1404
|
*/
|
|
1405
|
-
PolicyHash?: string;
|
|
1405
|
+
PolicyHash?: string | undefined;
|
|
1406
1406
|
/**
|
|
1407
1407
|
* <p>The date and time at which the policy was created.</p>
|
|
1408
1408
|
* @public
|
|
1409
1409
|
*/
|
|
1410
|
-
CreateTime?: Date;
|
|
1410
|
+
CreateTime?: Date | undefined;
|
|
1411
1411
|
/**
|
|
1412
1412
|
* <p>The date and time at which the policy was last updated.</p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
UpdateTime?: Date;
|
|
1415
|
+
UpdateTime?: Date | undefined;
|
|
1416
1416
|
}
|
|
1417
1417
|
/**
|
|
1418
1418
|
* @public
|
|
@@ -1440,67 +1440,67 @@ export interface GetSchemaResponse {
|
|
|
1440
1440
|
* <p>The name of the registry.</p>
|
|
1441
1441
|
* @public
|
|
1442
1442
|
*/
|
|
1443
|
-
RegistryName?: string;
|
|
1443
|
+
RegistryName?: string | undefined;
|
|
1444
1444
|
/**
|
|
1445
1445
|
* <p>The Amazon Resource Name (ARN) of the registry.</p>
|
|
1446
1446
|
* @public
|
|
1447
1447
|
*/
|
|
1448
|
-
RegistryArn?: string;
|
|
1448
|
+
RegistryArn?: string | undefined;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* <p>The name of the schema.</p>
|
|
1451
1451
|
* @public
|
|
1452
1452
|
*/
|
|
1453
|
-
SchemaName?: string;
|
|
1453
|
+
SchemaName?: string | undefined;
|
|
1454
1454
|
/**
|
|
1455
1455
|
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
1456
1456
|
* @public
|
|
1457
1457
|
*/
|
|
1458
|
-
SchemaArn?: string;
|
|
1458
|
+
SchemaArn?: string | undefined;
|
|
1459
1459
|
/**
|
|
1460
1460
|
* <p>A description of schema if specified when created</p>
|
|
1461
1461
|
* @public
|
|
1462
1462
|
*/
|
|
1463
|
-
Description?: string;
|
|
1463
|
+
Description?: string | undefined;
|
|
1464
1464
|
/**
|
|
1465
1465
|
* <p>The data format of the schema definition. Currently <code>AVRO</code>, <code>JSON</code> and <code>PROTOBUF</code> are supported.</p>
|
|
1466
1466
|
* @public
|
|
1467
1467
|
*/
|
|
1468
|
-
DataFormat?: DataFormat;
|
|
1468
|
+
DataFormat?: DataFormat | undefined;
|
|
1469
1469
|
/**
|
|
1470
1470
|
* <p>The compatibility mode of the schema.</p>
|
|
1471
1471
|
* @public
|
|
1472
1472
|
*/
|
|
1473
|
-
Compatibility?: Compatibility;
|
|
1473
|
+
Compatibility?: Compatibility | undefined;
|
|
1474
1474
|
/**
|
|
1475
1475
|
* <p>The version number of the checkpoint (the last time the compatibility mode was changed).</p>
|
|
1476
1476
|
* @public
|
|
1477
1477
|
*/
|
|
1478
|
-
SchemaCheckpoint?: number;
|
|
1478
|
+
SchemaCheckpoint?: number | undefined;
|
|
1479
1479
|
/**
|
|
1480
1480
|
* <p>The latest version of the schema associated with the returned schema definition.</p>
|
|
1481
1481
|
* @public
|
|
1482
1482
|
*/
|
|
1483
|
-
LatestSchemaVersion?: number;
|
|
1483
|
+
LatestSchemaVersion?: number | undefined;
|
|
1484
1484
|
/**
|
|
1485
1485
|
* <p>The next version of the schema associated with the returned schema definition.</p>
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
NextSchemaVersion?: number;
|
|
1488
|
+
NextSchemaVersion?: number | undefined;
|
|
1489
1489
|
/**
|
|
1490
1490
|
* <p>The status of the schema.</p>
|
|
1491
1491
|
* @public
|
|
1492
1492
|
*/
|
|
1493
|
-
SchemaStatus?: SchemaStatus;
|
|
1493
|
+
SchemaStatus?: SchemaStatus | undefined;
|
|
1494
1494
|
/**
|
|
1495
1495
|
* <p>The date and time the schema was created.</p>
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
CreatedTime?: string;
|
|
1498
|
+
CreatedTime?: string | undefined;
|
|
1499
1499
|
/**
|
|
1500
1500
|
* <p>The date and time the schema was updated.</p>
|
|
1501
1501
|
* @public
|
|
1502
1502
|
*/
|
|
1503
|
-
UpdatedTime?: string;
|
|
1503
|
+
UpdatedTime?: string | undefined;
|
|
1504
1504
|
}
|
|
1505
1505
|
/**
|
|
1506
1506
|
* @public
|
|
@@ -1533,27 +1533,27 @@ export interface GetSchemaByDefinitionResponse {
|
|
|
1533
1533
|
* <p>The schema ID of the schema version.</p>
|
|
1534
1534
|
* @public
|
|
1535
1535
|
*/
|
|
1536
|
-
SchemaVersionId?: string;
|
|
1536
|
+
SchemaVersionId?: string | undefined;
|
|
1537
1537
|
/**
|
|
1538
1538
|
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
1539
1539
|
* @public
|
|
1540
1540
|
*/
|
|
1541
|
-
SchemaArn?: string;
|
|
1541
|
+
SchemaArn?: string | undefined;
|
|
1542
1542
|
/**
|
|
1543
1543
|
* <p>The data format of the schema definition. Currently <code>AVRO</code>, <code>JSON</code> and <code>PROTOBUF</code> are supported.</p>
|
|
1544
1544
|
* @public
|
|
1545
1545
|
*/
|
|
1546
|
-
DataFormat?: DataFormat;
|
|
1546
|
+
DataFormat?: DataFormat | undefined;
|
|
1547
1547
|
/**
|
|
1548
1548
|
* <p>The status of the schema version.</p>
|
|
1549
1549
|
* @public
|
|
1550
1550
|
*/
|
|
1551
|
-
Status?: SchemaVersionStatus;
|
|
1551
|
+
Status?: SchemaVersionStatus | undefined;
|
|
1552
1552
|
/**
|
|
1553
1553
|
* <p>The date and time the schema was created.</p>
|
|
1554
1554
|
* @public
|
|
1555
1555
|
*/
|
|
1556
|
-
CreatedTime?: string;
|
|
1556
|
+
CreatedTime?: string | undefined;
|
|
1557
1557
|
}
|
|
1558
1558
|
/**
|
|
1559
1559
|
* <p>A structure containing the schema version information.</p>
|
|
@@ -1564,12 +1564,12 @@ export interface SchemaVersionNumber {
|
|
|
1564
1564
|
* <p>The latest version available for the schema.</p>
|
|
1565
1565
|
* @public
|
|
1566
1566
|
*/
|
|
1567
|
-
LatestVersion?: boolean;
|
|
1567
|
+
LatestVersion?: boolean | undefined;
|
|
1568
1568
|
/**
|
|
1569
1569
|
* <p>The version number of the schema.</p>
|
|
1570
1570
|
* @public
|
|
1571
1571
|
*/
|
|
1572
|
-
VersionNumber?: number;
|
|
1572
|
+
VersionNumber?: number | undefined;
|
|
1573
1573
|
}
|
|
1574
1574
|
/**
|
|
1575
1575
|
* @public
|
|
@@ -1587,17 +1587,17 @@ export interface GetSchemaVersionInput {
|
|
|
1587
1587
|
* </ul>
|
|
1588
1588
|
* @public
|
|
1589
1589
|
*/
|
|
1590
|
-
SchemaId?: SchemaId;
|
|
1590
|
+
SchemaId?: SchemaId | undefined;
|
|
1591
1591
|
/**
|
|
1592
1592
|
* <p>The <code>SchemaVersionId</code> of the schema version. This field is required for fetching by schema ID. Either this or the <code>SchemaId</code> wrapper has to be provided.</p>
|
|
1593
1593
|
* @public
|
|
1594
1594
|
*/
|
|
1595
|
-
SchemaVersionId?: string;
|
|
1595
|
+
SchemaVersionId?: string | undefined;
|
|
1596
1596
|
/**
|
|
1597
1597
|
* <p>The version number of the schema.</p>
|
|
1598
1598
|
* @public
|
|
1599
1599
|
*/
|
|
1600
|
-
SchemaVersionNumber?: SchemaVersionNumber;
|
|
1600
|
+
SchemaVersionNumber?: SchemaVersionNumber | undefined;
|
|
1601
1601
|
}
|
|
1602
1602
|
/**
|
|
1603
1603
|
* @public
|
|
@@ -1607,37 +1607,37 @@ export interface GetSchemaVersionResponse {
|
|
|
1607
1607
|
* <p>The <code>SchemaVersionId</code> of the schema version.</p>
|
|
1608
1608
|
* @public
|
|
1609
1609
|
*/
|
|
1610
|
-
SchemaVersionId?: string;
|
|
1610
|
+
SchemaVersionId?: string | undefined;
|
|
1611
1611
|
/**
|
|
1612
1612
|
* <p>The schema definition for the schema ID.</p>
|
|
1613
1613
|
* @public
|
|
1614
1614
|
*/
|
|
1615
|
-
SchemaDefinition?: string;
|
|
1615
|
+
SchemaDefinition?: string | undefined;
|
|
1616
1616
|
/**
|
|
1617
1617
|
* <p>The data format of the schema definition. Currently <code>AVRO</code>, <code>JSON</code> and <code>PROTOBUF</code> are supported.</p>
|
|
1618
1618
|
* @public
|
|
1619
1619
|
*/
|
|
1620
|
-
DataFormat?: DataFormat;
|
|
1620
|
+
DataFormat?: DataFormat | undefined;
|
|
1621
1621
|
/**
|
|
1622
1622
|
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
1623
1623
|
* @public
|
|
1624
1624
|
*/
|
|
1625
|
-
SchemaArn?: string;
|
|
1625
|
+
SchemaArn?: string | undefined;
|
|
1626
1626
|
/**
|
|
1627
1627
|
* <p>The version number of the schema.</p>
|
|
1628
1628
|
* @public
|
|
1629
1629
|
*/
|
|
1630
|
-
VersionNumber?: number;
|
|
1630
|
+
VersionNumber?: number | undefined;
|
|
1631
1631
|
/**
|
|
1632
1632
|
* <p>The status of the schema version. </p>
|
|
1633
1633
|
* @public
|
|
1634
1634
|
*/
|
|
1635
|
-
Status?: SchemaVersionStatus;
|
|
1635
|
+
Status?: SchemaVersionStatus | undefined;
|
|
1636
1636
|
/**
|
|
1637
1637
|
* <p>The date and time the schema version was created.</p>
|
|
1638
1638
|
* @public
|
|
1639
1639
|
*/
|
|
1640
|
-
CreatedTime?: string;
|
|
1640
|
+
CreatedTime?: string | undefined;
|
|
1641
1641
|
}
|
|
1642
1642
|
/**
|
|
1643
1643
|
* @public
|
|
@@ -1691,7 +1691,7 @@ export interface GetSchemaVersionsDiffResponse {
|
|
|
1691
1691
|
* <p>The difference between schemas as a string in JsonPatch format.</p>
|
|
1692
1692
|
* @public
|
|
1693
1693
|
*/
|
|
1694
|
-
Diff?: string;
|
|
1694
|
+
Diff?: string | undefined;
|
|
1695
1695
|
}
|
|
1696
1696
|
/**
|
|
1697
1697
|
* @public
|
|
@@ -1712,17 +1712,17 @@ export interface SecurityConfiguration {
|
|
|
1712
1712
|
* <p>The name of the security configuration.</p>
|
|
1713
1713
|
* @public
|
|
1714
1714
|
*/
|
|
1715
|
-
Name?: string;
|
|
1715
|
+
Name?: string | undefined;
|
|
1716
1716
|
/**
|
|
1717
1717
|
* <p>The time at which this security configuration was created.</p>
|
|
1718
1718
|
* @public
|
|
1719
1719
|
*/
|
|
1720
|
-
CreatedTimeStamp?: Date;
|
|
1720
|
+
CreatedTimeStamp?: Date | undefined;
|
|
1721
1721
|
/**
|
|
1722
1722
|
* <p>The encryption configuration associated with this security configuration.</p>
|
|
1723
1723
|
* @public
|
|
1724
1724
|
*/
|
|
1725
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1725
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
1726
1726
|
}
|
|
1727
1727
|
/**
|
|
1728
1728
|
* @public
|
|
@@ -1732,7 +1732,7 @@ export interface GetSecurityConfigurationResponse {
|
|
|
1732
1732
|
* <p>The requested security configuration.</p>
|
|
1733
1733
|
* @public
|
|
1734
1734
|
*/
|
|
1735
|
-
SecurityConfiguration?: SecurityConfiguration;
|
|
1735
|
+
SecurityConfiguration?: SecurityConfiguration | undefined;
|
|
1736
1736
|
}
|
|
1737
1737
|
/**
|
|
1738
1738
|
* @public
|
|
@@ -1742,12 +1742,12 @@ export interface GetSecurityConfigurationsRequest {
|
|
|
1742
1742
|
* <p>The maximum number of results to return.</p>
|
|
1743
1743
|
* @public
|
|
1744
1744
|
*/
|
|
1745
|
-
MaxResults?: number;
|
|
1745
|
+
MaxResults?: number | undefined;
|
|
1746
1746
|
/**
|
|
1747
1747
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
1748
1748
|
* @public
|
|
1749
1749
|
*/
|
|
1750
|
-
NextToken?: string;
|
|
1750
|
+
NextToken?: string | undefined;
|
|
1751
1751
|
}
|
|
1752
1752
|
/**
|
|
1753
1753
|
* @public
|
|
@@ -1757,13 +1757,13 @@ export interface GetSecurityConfigurationsResponse {
|
|
|
1757
1757
|
* <p>A list of security configurations.</p>
|
|
1758
1758
|
* @public
|
|
1759
1759
|
*/
|
|
1760
|
-
SecurityConfigurations?: SecurityConfiguration[];
|
|
1760
|
+
SecurityConfigurations?: SecurityConfiguration[] | undefined;
|
|
1761
1761
|
/**
|
|
1762
1762
|
* <p>A continuation token, if there are more security
|
|
1763
1763
|
* configurations to return.</p>
|
|
1764
1764
|
* @public
|
|
1765
1765
|
*/
|
|
1766
|
-
NextToken?: string;
|
|
1766
|
+
NextToken?: string | undefined;
|
|
1767
1767
|
}
|
|
1768
1768
|
/**
|
|
1769
1769
|
* @public
|
|
@@ -1778,7 +1778,7 @@ export interface GetSessionRequest {
|
|
|
1778
1778
|
* <p>The origin of the request. </p>
|
|
1779
1779
|
* @public
|
|
1780
1780
|
*/
|
|
1781
|
-
RequestOrigin?: string;
|
|
1781
|
+
RequestOrigin?: string | undefined;
|
|
1782
1782
|
}
|
|
1783
1783
|
/**
|
|
1784
1784
|
* @public
|
|
@@ -1788,7 +1788,7 @@ export interface GetSessionResponse {
|
|
|
1788
1788
|
* <p>The session object is returned in the response.</p>
|
|
1789
1789
|
* @public
|
|
1790
1790
|
*/
|
|
1791
|
-
Session?: Session;
|
|
1791
|
+
Session?: Session | undefined;
|
|
1792
1792
|
}
|
|
1793
1793
|
/**
|
|
1794
1794
|
* @public
|
|
@@ -1808,7 +1808,7 @@ export interface GetStatementRequest {
|
|
|
1808
1808
|
* <p>The origin of the request.</p>
|
|
1809
1809
|
* @public
|
|
1810
1810
|
*/
|
|
1811
|
-
RequestOrigin?: string;
|
|
1811
|
+
RequestOrigin?: string | undefined;
|
|
1812
1812
|
}
|
|
1813
1813
|
/**
|
|
1814
1814
|
* <p>The code execution output in JSON format.</p>
|
|
@@ -1819,7 +1819,7 @@ export interface StatementOutputData {
|
|
|
1819
1819
|
* <p>The code execution output in text format.</p>
|
|
1820
1820
|
* @public
|
|
1821
1821
|
*/
|
|
1822
|
-
TextPlain?: string;
|
|
1822
|
+
TextPlain?: string | undefined;
|
|
1823
1823
|
}
|
|
1824
1824
|
/**
|
|
1825
1825
|
* @public
|
|
@@ -1846,32 +1846,32 @@ export interface StatementOutput {
|
|
|
1846
1846
|
* <p>The code execution output.</p>
|
|
1847
1847
|
* @public
|
|
1848
1848
|
*/
|
|
1849
|
-
Data?: StatementOutputData;
|
|
1849
|
+
Data?: StatementOutputData | undefined;
|
|
1850
1850
|
/**
|
|
1851
1851
|
* <p>The execution count of the output.</p>
|
|
1852
1852
|
* @public
|
|
1853
1853
|
*/
|
|
1854
|
-
ExecutionCount?: number;
|
|
1854
|
+
ExecutionCount?: number | undefined;
|
|
1855
1855
|
/**
|
|
1856
1856
|
* <p>The status of the code execution output.</p>
|
|
1857
1857
|
* @public
|
|
1858
1858
|
*/
|
|
1859
|
-
Status?: StatementState;
|
|
1859
|
+
Status?: StatementState | undefined;
|
|
1860
1860
|
/**
|
|
1861
1861
|
* <p>The name of the error in the output.</p>
|
|
1862
1862
|
* @public
|
|
1863
1863
|
*/
|
|
1864
|
-
ErrorName?: string;
|
|
1864
|
+
ErrorName?: string | undefined;
|
|
1865
1865
|
/**
|
|
1866
1866
|
* <p>The error value of the output.</p>
|
|
1867
1867
|
* @public
|
|
1868
1868
|
*/
|
|
1869
|
-
ErrorValue?: string;
|
|
1869
|
+
ErrorValue?: string | undefined;
|
|
1870
1870
|
/**
|
|
1871
1871
|
* <p>The traceback of the output.</p>
|
|
1872
1872
|
* @public
|
|
1873
1873
|
*/
|
|
1874
|
-
Traceback?: string[];
|
|
1874
|
+
Traceback?: string[] | undefined;
|
|
1875
1875
|
}
|
|
1876
1876
|
/**
|
|
1877
1877
|
* <p>The statement or request for a particular action to occur in a session.</p>
|
|
@@ -1882,37 +1882,37 @@ export interface Statement {
|
|
|
1882
1882
|
* <p>The ID of the statement.</p>
|
|
1883
1883
|
* @public
|
|
1884
1884
|
*/
|
|
1885
|
-
Id?: number;
|
|
1885
|
+
Id?: number | undefined;
|
|
1886
1886
|
/**
|
|
1887
1887
|
* <p>The execution code of the statement.</p>
|
|
1888
1888
|
* @public
|
|
1889
1889
|
*/
|
|
1890
|
-
Code?: string;
|
|
1890
|
+
Code?: string | undefined;
|
|
1891
1891
|
/**
|
|
1892
1892
|
* <p>The state while request is actioned.</p>
|
|
1893
1893
|
* @public
|
|
1894
1894
|
*/
|
|
1895
|
-
State?: StatementState;
|
|
1895
|
+
State?: StatementState | undefined;
|
|
1896
1896
|
/**
|
|
1897
1897
|
* <p>The output in JSON.</p>
|
|
1898
1898
|
* @public
|
|
1899
1899
|
*/
|
|
1900
|
-
Output?: StatementOutput;
|
|
1900
|
+
Output?: StatementOutput | undefined;
|
|
1901
1901
|
/**
|
|
1902
1902
|
* <p>The code execution progress.</p>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
Progress?: number;
|
|
1905
|
+
Progress?: number | undefined;
|
|
1906
1906
|
/**
|
|
1907
1907
|
* <p>The unix time and date that the job definition was started.</p>
|
|
1908
1908
|
* @public
|
|
1909
1909
|
*/
|
|
1910
|
-
StartedOn?: number;
|
|
1910
|
+
StartedOn?: number | undefined;
|
|
1911
1911
|
/**
|
|
1912
1912
|
* <p>The unix time and date that the job definition was completed.</p>
|
|
1913
1913
|
* @public
|
|
1914
1914
|
*/
|
|
1915
|
-
CompletedOn?: number;
|
|
1915
|
+
CompletedOn?: number | undefined;
|
|
1916
1916
|
}
|
|
1917
1917
|
/**
|
|
1918
1918
|
* @public
|
|
@@ -1922,7 +1922,7 @@ export interface GetStatementResponse {
|
|
|
1922
1922
|
* <p>Returns the statement.</p>
|
|
1923
1923
|
* @public
|
|
1924
1924
|
*/
|
|
1925
|
-
Statement?: Statement;
|
|
1925
|
+
Statement?: Statement | undefined;
|
|
1926
1926
|
}
|
|
1927
1927
|
/**
|
|
1928
1928
|
* @public
|
|
@@ -1933,7 +1933,7 @@ export interface GetTableRequest {
|
|
|
1933
1933
|
* ID is used by default.</p>
|
|
1934
1934
|
* @public
|
|
1935
1935
|
*/
|
|
1936
|
-
CatalogId?: string;
|
|
1936
|
+
CatalogId?: string | undefined;
|
|
1937
1937
|
/**
|
|
1938
1938
|
* <p>The name of the database in the catalog in which the table resides.
|
|
1939
1939
|
* For Hive compatibility, this name is entirely lowercase.</p>
|
|
@@ -1950,17 +1950,17 @@ export interface GetTableRequest {
|
|
|
1950
1950
|
* <p>The transaction ID at which to read the table contents. </p>
|
|
1951
1951
|
* @public
|
|
1952
1952
|
*/
|
|
1953
|
-
TransactionId?: string;
|
|
1953
|
+
TransactionId?: string | undefined;
|
|
1954
1954
|
/**
|
|
1955
1955
|
* <p>The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with <code>TransactionId</code>.</p>
|
|
1956
1956
|
* @public
|
|
1957
1957
|
*/
|
|
1958
|
-
QueryAsOfTime?: Date;
|
|
1958
|
+
QueryAsOfTime?: Date | undefined;
|
|
1959
1959
|
/**
|
|
1960
1960
|
* <p>Specifies whether to include status details related to a request to create or update an Glue Data Catalog view.</p>
|
|
1961
1961
|
* @public
|
|
1962
1962
|
*/
|
|
1963
|
-
IncludeStatusDetails?: boolean;
|
|
1963
|
+
IncludeStatusDetails?: boolean | undefined;
|
|
1964
1964
|
}
|
|
1965
1965
|
/**
|
|
1966
1966
|
* <p>A table that points to an entity outside the Glue Data Catalog.</p>
|
|
@@ -1971,17 +1971,17 @@ export interface FederatedTable {
|
|
|
1971
1971
|
* <p>A unique identifier for the federated table.</p>
|
|
1972
1972
|
* @public
|
|
1973
1973
|
*/
|
|
1974
|
-
Identifier?: string;
|
|
1974
|
+
Identifier?: string | undefined;
|
|
1975
1975
|
/**
|
|
1976
1976
|
* <p>A unique identifier for the federated database.</p>
|
|
1977
1977
|
* @public
|
|
1978
1978
|
*/
|
|
1979
|
-
DatabaseIdentifier?: string;
|
|
1979
|
+
DatabaseIdentifier?: string | undefined;
|
|
1980
1980
|
/**
|
|
1981
1981
|
* <p>The name of the connection to the external metastore.</p>
|
|
1982
1982
|
* @public
|
|
1983
1983
|
*/
|
|
1984
|
-
ConnectionName?: string;
|
|
1984
|
+
ConnectionName?: string | undefined;
|
|
1985
1985
|
}
|
|
1986
1986
|
/**
|
|
1987
1987
|
* @public
|
|
@@ -2019,32 +2019,32 @@ export interface ViewValidation {
|
|
|
2019
2019
|
* <p>The dialect of the query engine.</p>
|
|
2020
2020
|
* @public
|
|
2021
2021
|
*/
|
|
2022
|
-
Dialect?: ViewDialect;
|
|
2022
|
+
Dialect?: ViewDialect | undefined;
|
|
2023
2023
|
/**
|
|
2024
2024
|
* <p>The version of the dialect of the query engine. For example, 3.0.0.</p>
|
|
2025
2025
|
* @public
|
|
2026
2026
|
*/
|
|
2027
|
-
DialectVersion?: string;
|
|
2027
|
+
DialectVersion?: string | undefined;
|
|
2028
2028
|
/**
|
|
2029
2029
|
* <p>The <code>SELECT</code> query that defines the view, as provided by the customer.</p>
|
|
2030
2030
|
* @public
|
|
2031
2031
|
*/
|
|
2032
|
-
ViewValidationText?: string;
|
|
2032
|
+
ViewValidationText?: string | undefined;
|
|
2033
2033
|
/**
|
|
2034
2034
|
* <p>The time of the last update.</p>
|
|
2035
2035
|
* @public
|
|
2036
2036
|
*/
|
|
2037
|
-
UpdateTime?: Date;
|
|
2037
|
+
UpdateTime?: Date | undefined;
|
|
2038
2038
|
/**
|
|
2039
2039
|
* <p>The state of the validation.</p>
|
|
2040
2040
|
* @public
|
|
2041
2041
|
*/
|
|
2042
|
-
State?: ResourceState;
|
|
2042
|
+
State?: ResourceState | undefined;
|
|
2043
2043
|
/**
|
|
2044
2044
|
* <p>An error associated with the validation.</p>
|
|
2045
2045
|
* @public
|
|
2046
2046
|
*/
|
|
2047
|
-
Error?: ErrorDetail;
|
|
2047
|
+
Error?: ErrorDetail | undefined;
|
|
2048
2048
|
}
|
|
2049
2049
|
/**
|
|
2050
2050
|
* <p>A structure that contains the dialect of the view, and the query that defines the view.</p>
|
|
@@ -2055,17 +2055,17 @@ export interface ViewRepresentation {
|
|
|
2055
2055
|
* <p>The dialect of the query engine.</p>
|
|
2056
2056
|
* @public
|
|
2057
2057
|
*/
|
|
2058
|
-
Dialect?: ViewDialect;
|
|
2058
|
+
Dialect?: ViewDialect | undefined;
|
|
2059
2059
|
/**
|
|
2060
2060
|
* <p>The version of the dialect of the query engine. For example, 3.0.0.</p>
|
|
2061
2061
|
* @public
|
|
2062
2062
|
*/
|
|
2063
|
-
DialectVersion?: string;
|
|
2063
|
+
DialectVersion?: string | undefined;
|
|
2064
2064
|
/**
|
|
2065
2065
|
* <p>The <code>SELECT</code> query provided by the customer during <code>CREATE VIEW DDL</code>. This SQL is not used during a query on a view (<code>ViewExpandedText</code> is used instead). <code>ViewOriginalText</code> is used for cases like <code>SHOW CREATE VIEW</code> where users want to see the original DDL command that created the view.</p>
|
|
2066
2066
|
* @public
|
|
2067
2067
|
*/
|
|
2068
|
-
ViewOriginalText?: string;
|
|
2068
|
+
ViewOriginalText?: string | undefined;
|
|
2069
2069
|
/**
|
|
2070
2070
|
* <p>The expanded SQL for the view. This SQL is used by engines while processing a query on a view. Engines may perform operations during view creation to transform <code>ViewOriginalText</code> to <code>ViewExpandedText</code>. For example:</p>
|
|
2071
2071
|
* <ul>
|
|
@@ -2076,17 +2076,17 @@ export interface ViewRepresentation {
|
|
|
2076
2076
|
* </ul>
|
|
2077
2077
|
* @public
|
|
2078
2078
|
*/
|
|
2079
|
-
ViewExpandedText?: string;
|
|
2079
|
+
ViewExpandedText?: string | undefined;
|
|
2080
2080
|
/**
|
|
2081
2081
|
* <p>The name of the connection to be used to validate the specific representation of the view.</p>
|
|
2082
2082
|
* @public
|
|
2083
2083
|
*/
|
|
2084
|
-
ValidationConnection?: string;
|
|
2084
|
+
ValidationConnection?: string | undefined;
|
|
2085
2085
|
/**
|
|
2086
2086
|
* <p>Dialects marked as stale are no longer valid and must be updated before they can be queried in their respective query engines.</p>
|
|
2087
2087
|
* @public
|
|
2088
2088
|
*/
|
|
2089
|
-
IsStale?: boolean;
|
|
2089
|
+
IsStale?: boolean | undefined;
|
|
2090
2090
|
}
|
|
2091
2091
|
/**
|
|
2092
2092
|
* <p>A structure containing details for representations.</p>
|
|
@@ -2097,22 +2097,22 @@ export interface ViewDefinition {
|
|
|
2097
2097
|
* <p>You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.</p>
|
|
2098
2098
|
* @public
|
|
2099
2099
|
*/
|
|
2100
|
-
IsProtected?: boolean;
|
|
2100
|
+
IsProtected?: boolean | undefined;
|
|
2101
2101
|
/**
|
|
2102
2102
|
* <p>The definer of a view in SQL.</p>
|
|
2103
2103
|
* @public
|
|
2104
2104
|
*/
|
|
2105
|
-
Definer?: string;
|
|
2105
|
+
Definer?: string | undefined;
|
|
2106
2106
|
/**
|
|
2107
2107
|
* <p>A list of table Amazon Resource Names (ARNs).</p>
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
|
-
SubObjects?: string[];
|
|
2110
|
+
SubObjects?: string[] | undefined;
|
|
2111
2111
|
/**
|
|
2112
2112
|
* <p>A list of representations.</p>
|
|
2113
2113
|
* @public
|
|
2114
2114
|
*/
|
|
2115
|
-
Representations?: ViewRepresentation[];
|
|
2115
|
+
Representations?: ViewRepresentation[] | undefined;
|
|
2116
2116
|
}
|
|
2117
2117
|
/**
|
|
2118
2118
|
* @public
|
|
@@ -2147,22 +2147,22 @@ export interface GetTableOptimizerResponse {
|
|
|
2147
2147
|
* <p>The Catalog ID of the table.</p>
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
CatalogId?: string;
|
|
2150
|
+
CatalogId?: string | undefined;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* <p>The name of the database in the catalog in which the table resides.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
DatabaseName?: string;
|
|
2155
|
+
DatabaseName?: string | undefined;
|
|
2156
2156
|
/**
|
|
2157
2157
|
* <p>The name of the table.</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
TableName?: string;
|
|
2160
|
+
TableName?: string | undefined;
|
|
2161
2161
|
/**
|
|
2162
2162
|
* <p>The optimizer associated with the specified table.</p>
|
|
2163
2163
|
* @public
|
|
2164
2164
|
*/
|
|
2165
|
-
TableOptimizer?: TableOptimizer;
|
|
2165
|
+
TableOptimizer?: TableOptimizer | undefined;
|
|
2166
2166
|
}
|
|
2167
2167
|
/**
|
|
2168
2168
|
* @public
|
|
@@ -2185,7 +2185,7 @@ export interface GetTablesRequest {
|
|
|
2185
2185
|
* ID is used by default.</p>
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
CatalogId?: string;
|
|
2188
|
+
CatalogId?: string | undefined;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* <p>The database in the catalog whose tables to list. For Hive
|
|
2191
2191
|
* compatibility, this name is entirely lowercase.</p>
|
|
@@ -2197,32 +2197,32 @@ export interface GetTablesRequest {
|
|
|
2197
2197
|
* whose names match the pattern are returned.</p>
|
|
2198
2198
|
* @public
|
|
2199
2199
|
*/
|
|
2200
|
-
Expression?: string;
|
|
2200
|
+
Expression?: string | undefined;
|
|
2201
2201
|
/**
|
|
2202
2202
|
* <p>A continuation token, included if this is a continuation call.</p>
|
|
2203
2203
|
* @public
|
|
2204
2204
|
*/
|
|
2205
|
-
NextToken?: string;
|
|
2205
|
+
NextToken?: string | undefined;
|
|
2206
2206
|
/**
|
|
2207
2207
|
* <p>The maximum number of tables to return in a single response.</p>
|
|
2208
2208
|
* @public
|
|
2209
2209
|
*/
|
|
2210
|
-
MaxResults?: number;
|
|
2210
|
+
MaxResults?: number | undefined;
|
|
2211
2211
|
/**
|
|
2212
2212
|
* <p>The transaction ID at which to read the table contents.</p>
|
|
2213
2213
|
* @public
|
|
2214
2214
|
*/
|
|
2215
|
-
TransactionId?: string;
|
|
2215
|
+
TransactionId?: string | undefined;
|
|
2216
2216
|
/**
|
|
2217
2217
|
* <p>The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with <code>TransactionId</code>.</p>
|
|
2218
2218
|
* @public
|
|
2219
2219
|
*/
|
|
2220
|
-
QueryAsOfTime?: Date;
|
|
2220
|
+
QueryAsOfTime?: Date | undefined;
|
|
2221
2221
|
/**
|
|
2222
2222
|
* <p>Specifies whether to include status details related to a request to create or update an Glue Data Catalog view.</p>
|
|
2223
2223
|
* @public
|
|
2224
2224
|
*/
|
|
2225
|
-
IncludeStatusDetails?: boolean;
|
|
2225
|
+
IncludeStatusDetails?: boolean | undefined;
|
|
2226
2226
|
/**
|
|
2227
2227
|
* <p> Specifies the table fields returned by the <code>GetTables</code> call. This parameter doesn’t accept an empty list. The request must include <code>NAME</code>.</p>
|
|
2228
2228
|
* <p>The following are the valid combinations of values:</p>
|
|
@@ -2238,7 +2238,7 @@ export interface GetTablesRequest {
|
|
|
2238
2238
|
* </ul>
|
|
2239
2239
|
* @public
|
|
2240
2240
|
*/
|
|
2241
|
-
AttributesToGet?: TableAttributes[];
|
|
2241
|
+
AttributesToGet?: TableAttributes[] | undefined;
|
|
2242
2242
|
}
|
|
2243
2243
|
/**
|
|
2244
2244
|
* @public
|
|
@@ -2249,7 +2249,7 @@ export interface GetTableVersionRequest {
|
|
|
2249
2249
|
* ID is used by default.</p>
|
|
2250
2250
|
* @public
|
|
2251
2251
|
*/
|
|
2252
|
-
CatalogId?: string;
|
|
2252
|
+
CatalogId?: string | undefined;
|
|
2253
2253
|
/**
|
|
2254
2254
|
* <p>The database in the catalog in which the table resides. For Hive
|
|
2255
2255
|
* compatibility, this name is entirely lowercase.</p>
|
|
@@ -2266,7 +2266,7 @@ export interface GetTableVersionRequest {
|
|
|
2266
2266
|
* <p>The ID value of the table version to be retrieved. A <code>VersionID</code> is a string representation of an integer. Each version is incremented by 1. </p>
|
|
2267
2267
|
* @public
|
|
2268
2268
|
*/
|
|
2269
|
-
VersionId?: string;
|
|
2269
|
+
VersionId?: string | undefined;
|
|
2270
2270
|
}
|
|
2271
2271
|
/**
|
|
2272
2272
|
* @public
|
|
@@ -2277,7 +2277,7 @@ export interface GetTableVersionsRequest {
|
|
|
2277
2277
|
* ID is used by default.</p>
|
|
2278
2278
|
* @public
|
|
2279
2279
|
*/
|
|
2280
|
-
CatalogId?: string;
|
|
2280
|
+
CatalogId?: string | undefined;
|
|
2281
2281
|
/**
|
|
2282
2282
|
* <p>The database in the catalog in which the table resides. For Hive
|
|
2283
2283
|
* compatibility, this name is entirely lowercase.</p>
|
|
@@ -2294,12 +2294,12 @@ export interface GetTableVersionsRequest {
|
|
|
2294
2294
|
* <p>A continuation token, if this is not the first call.</p>
|
|
2295
2295
|
* @public
|
|
2296
2296
|
*/
|
|
2297
|
-
NextToken?: string;
|
|
2297
|
+
NextToken?: string | undefined;
|
|
2298
2298
|
/**
|
|
2299
2299
|
* <p>The maximum number of table versions to return in one response.</p>
|
|
2300
2300
|
* @public
|
|
2301
2301
|
*/
|
|
2302
|
-
MaxResults?: number;
|
|
2302
|
+
MaxResults?: number | undefined;
|
|
2303
2303
|
}
|
|
2304
2304
|
/**
|
|
2305
2305
|
* @public
|
|
@@ -2319,7 +2319,7 @@ export interface GetTagsResponse {
|
|
|
2319
2319
|
* <p>The requested tags.</p>
|
|
2320
2320
|
* @public
|
|
2321
2321
|
*/
|
|
2322
|
-
Tags?: Record<string, string
|
|
2322
|
+
Tags?: Record<string, string> | undefined;
|
|
2323
2323
|
}
|
|
2324
2324
|
/**
|
|
2325
2325
|
* @public
|
|
@@ -2339,7 +2339,7 @@ export interface GetTriggerResponse {
|
|
|
2339
2339
|
* <p>The requested trigger definition.</p>
|
|
2340
2340
|
* @public
|
|
2341
2341
|
*/
|
|
2342
|
-
Trigger?: Trigger;
|
|
2342
|
+
Trigger?: Trigger | undefined;
|
|
2343
2343
|
}
|
|
2344
2344
|
/**
|
|
2345
2345
|
* @public
|
|
@@ -2349,18 +2349,18 @@ export interface GetTriggersRequest {
|
|
|
2349
2349
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
2350
2350
|
* @public
|
|
2351
2351
|
*/
|
|
2352
|
-
NextToken?: string;
|
|
2352
|
+
NextToken?: string | undefined;
|
|
2353
2353
|
/**
|
|
2354
2354
|
* <p>The name of the job to retrieve triggers for. The trigger that can start this job is
|
|
2355
2355
|
* returned, and if there is no such trigger, all triggers are returned.</p>
|
|
2356
2356
|
* @public
|
|
2357
2357
|
*/
|
|
2358
|
-
DependentJobName?: string;
|
|
2358
|
+
DependentJobName?: string | undefined;
|
|
2359
2359
|
/**
|
|
2360
2360
|
* <p>The maximum size of the response.</p>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
MaxResults?: number;
|
|
2363
|
+
MaxResults?: number | undefined;
|
|
2364
2364
|
}
|
|
2365
2365
|
/**
|
|
2366
2366
|
* @public
|
|
@@ -2370,13 +2370,13 @@ export interface GetTriggersResponse {
|
|
|
2370
2370
|
* <p>A list of triggers for the specified job.</p>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
Triggers?: Trigger[];
|
|
2373
|
+
Triggers?: Trigger[] | undefined;
|
|
2374
2374
|
/**
|
|
2375
2375
|
* <p>A continuation token, if not all the requested triggers
|
|
2376
2376
|
* have yet been returned.</p>
|
|
2377
2377
|
* @public
|
|
2378
2378
|
*/
|
|
2379
|
-
NextToken?: string;
|
|
2379
|
+
NextToken?: string | undefined;
|
|
2380
2380
|
}
|
|
2381
2381
|
/**
|
|
2382
2382
|
* <p>A structure used as a protocol between query engines and Lake Formation or Glue. Contains both a Lake Formation generated authorization identifier and information from the request's authorization context.</p>
|
|
@@ -2387,27 +2387,27 @@ export interface QuerySessionContext {
|
|
|
2387
2387
|
* <p>A unique identifier generated by the query engine for the query.</p>
|
|
2388
2388
|
* @public
|
|
2389
2389
|
*/
|
|
2390
|
-
QueryId?: string;
|
|
2390
|
+
QueryId?: string | undefined;
|
|
2391
2391
|
/**
|
|
2392
2392
|
* <p>A timestamp provided by the query engine for when the query started.</p>
|
|
2393
2393
|
* @public
|
|
2394
2394
|
*/
|
|
2395
|
-
QueryStartTime?: Date;
|
|
2395
|
+
QueryStartTime?: Date | undefined;
|
|
2396
2396
|
/**
|
|
2397
2397
|
* <p>An identifier string for the consumer cluster.</p>
|
|
2398
2398
|
* @public
|
|
2399
2399
|
*/
|
|
2400
|
-
ClusterId?: string;
|
|
2400
|
+
ClusterId?: string | undefined;
|
|
2401
2401
|
/**
|
|
2402
2402
|
* <p>A cryptographically generated query identifier generated by Glue or Lake Formation.</p>
|
|
2403
2403
|
* @public
|
|
2404
2404
|
*/
|
|
2405
|
-
QueryAuthorizationId?: string;
|
|
2405
|
+
QueryAuthorizationId?: string | undefined;
|
|
2406
2406
|
/**
|
|
2407
2407
|
* <p>An opaque string-string map passed by the query engine.</p>
|
|
2408
2408
|
* @public
|
|
2409
2409
|
*/
|
|
2410
|
-
AdditionalContext?: Record<string, string
|
|
2410
|
+
AdditionalContext?: Record<string, string> | undefined;
|
|
2411
2411
|
}
|
|
2412
2412
|
/**
|
|
2413
2413
|
* @public
|
|
@@ -2431,7 +2431,7 @@ export interface GetUnfilteredPartitionMetadataRequest {
|
|
|
2431
2431
|
* <p>Specified only if the base tables belong to a different Amazon Web Services Region.</p>
|
|
2432
2432
|
* @public
|
|
2433
2433
|
*/
|
|
2434
|
-
Region?: string;
|
|
2434
|
+
Region?: string | undefined;
|
|
2435
2435
|
/**
|
|
2436
2436
|
* <p>The catalog ID where the partition resides.</p>
|
|
2437
2437
|
* @public
|
|
@@ -2456,7 +2456,7 @@ export interface GetUnfilteredPartitionMetadataRequest {
|
|
|
2456
2456
|
* <p>A structure containing Lake Formation audit context information.</p>
|
|
2457
2457
|
* @public
|
|
2458
2458
|
*/
|
|
2459
|
-
AuditContext?: AuditContext;
|
|
2459
|
+
AuditContext?: AuditContext | undefined;
|
|
2460
2460
|
/**
|
|
2461
2461
|
* <p>(Required) A list of supported permission types. </p>
|
|
2462
2462
|
* @public
|
|
@@ -2466,7 +2466,7 @@ export interface GetUnfilteredPartitionMetadataRequest {
|
|
|
2466
2466
|
* <p>A structure used as a protocol between query engines and Lake Formation or Glue. Contains both a Lake Formation generated authorization identifier and information from the request's authorization context.</p>
|
|
2467
2467
|
* @public
|
|
2468
2468
|
*/
|
|
2469
|
-
QuerySessionContext?: QuerySessionContext;
|
|
2469
|
+
QuerySessionContext?: QuerySessionContext | undefined;
|
|
2470
2470
|
}
|
|
2471
2471
|
/**
|
|
2472
2472
|
* @public
|
|
@@ -2476,18 +2476,18 @@ export interface GetUnfilteredPartitionMetadataResponse {
|
|
|
2476
2476
|
* <p>A Partition object containing the partition metadata.</p>
|
|
2477
2477
|
* @public
|
|
2478
2478
|
*/
|
|
2479
|
-
Partition?: Partition;
|
|
2479
|
+
Partition?: Partition | undefined;
|
|
2480
2480
|
/**
|
|
2481
2481
|
* <p>A list of column names that the user has been granted access to.</p>
|
|
2482
2482
|
* @public
|
|
2483
2483
|
*/
|
|
2484
|
-
AuthorizedColumns?: string[];
|
|
2484
|
+
AuthorizedColumns?: string[] | undefined;
|
|
2485
2485
|
/**
|
|
2486
2486
|
* <p>A Boolean value that indicates whether the partition location is registered
|
|
2487
2487
|
* with Lake Formation.</p>
|
|
2488
2488
|
* @public
|
|
2489
2489
|
*/
|
|
2490
|
-
IsRegisteredWithLakeFormation?: boolean;
|
|
2490
|
+
IsRegisteredWithLakeFormation?: boolean | undefined;
|
|
2491
2491
|
}
|
|
2492
2492
|
/**
|
|
2493
2493
|
* <p>The operation timed out.</p>
|
|
@@ -2501,7 +2501,7 @@ export declare class PermissionTypeMismatchException extends __BaseException {
|
|
|
2501
2501
|
* and the permissions defined on the target table.</p>
|
|
2502
2502
|
* @public
|
|
2503
2503
|
*/
|
|
2504
|
-
Message?: string;
|
|
2504
|
+
Message?: string | undefined;
|
|
2505
2505
|
/**
|
|
2506
2506
|
* @internal
|
|
2507
2507
|
*/
|
|
@@ -2515,7 +2515,7 @@ export interface GetUnfilteredPartitionsMetadataRequest {
|
|
|
2515
2515
|
* <p>Specified only if the base tables belong to a different Amazon Web Services Region.</p>
|
|
2516
2516
|
* @public
|
|
2517
2517
|
*/
|
|
2518
|
-
Region?: string;
|
|
2518
|
+
Region?: string | undefined;
|
|
2519
2519
|
/**
|
|
2520
2520
|
* <p>The ID of the Data Catalog where the partitions in question reside. If none is provided,
|
|
2521
2521
|
* the AWS account ID is used by default. </p>
|
|
@@ -2635,12 +2635,12 @@ export interface GetUnfilteredPartitionsMetadataRequest {
|
|
|
2635
2635
|
* <p>If an type is encountered that is not valid, an exception is thrown. </p>
|
|
2636
2636
|
* @public
|
|
2637
2637
|
*/
|
|
2638
|
-
Expression?: string;
|
|
2638
|
+
Expression?: string | undefined;
|
|
2639
2639
|
/**
|
|
2640
2640
|
* <p>A structure containing Lake Formation audit context information.</p>
|
|
2641
2641
|
* @public
|
|
2642
2642
|
*/
|
|
2643
|
-
AuditContext?: AuditContext;
|
|
2643
|
+
AuditContext?: AuditContext | undefined;
|
|
2644
2644
|
/**
|
|
2645
2645
|
* <p>A list of supported permission types. </p>
|
|
2646
2646
|
* @public
|
|
@@ -2651,22 +2651,22 @@ export interface GetUnfilteredPartitionsMetadataRequest {
|
|
|
2651
2651
|
* these partitions.</p>
|
|
2652
2652
|
* @public
|
|
2653
2653
|
*/
|
|
2654
|
-
NextToken?: string;
|
|
2654
|
+
NextToken?: string | undefined;
|
|
2655
2655
|
/**
|
|
2656
2656
|
* <p>The segment of the table's partitions to scan in this request.</p>
|
|
2657
2657
|
* @public
|
|
2658
2658
|
*/
|
|
2659
|
-
Segment?: Segment;
|
|
2659
|
+
Segment?: Segment | undefined;
|
|
2660
2660
|
/**
|
|
2661
2661
|
* <p>The maximum number of partitions to return in a single response.</p>
|
|
2662
2662
|
* @public
|
|
2663
2663
|
*/
|
|
2664
|
-
MaxResults?: number;
|
|
2664
|
+
MaxResults?: number | undefined;
|
|
2665
2665
|
/**
|
|
2666
2666
|
* <p>A structure used as a protocol between query engines and Lake Formation or Glue. Contains both a Lake Formation generated authorization identifier and information from the request's authorization context.</p>
|
|
2667
2667
|
* @public
|
|
2668
2668
|
*/
|
|
2669
|
-
QuerySessionContext?: QuerySessionContext;
|
|
2669
|
+
QuerySessionContext?: QuerySessionContext | undefined;
|
|
2670
2670
|
}
|
|
2671
2671
|
/**
|
|
2672
2672
|
* <p>A partition that contains unfiltered metadata.</p>
|
|
@@ -2677,17 +2677,17 @@ export interface UnfilteredPartition {
|
|
|
2677
2677
|
* <p>The partition object.</p>
|
|
2678
2678
|
* @public
|
|
2679
2679
|
*/
|
|
2680
|
-
Partition?: Partition;
|
|
2680
|
+
Partition?: Partition | undefined;
|
|
2681
2681
|
/**
|
|
2682
2682
|
* <p>The list of columns the user has permissions to access.</p>
|
|
2683
2683
|
* @public
|
|
2684
2684
|
*/
|
|
2685
|
-
AuthorizedColumns?: string[];
|
|
2685
|
+
AuthorizedColumns?: string[] | undefined;
|
|
2686
2686
|
/**
|
|
2687
2687
|
* <p>A Boolean value indicating that the partition location is registered with Lake Formation.</p>
|
|
2688
2688
|
* @public
|
|
2689
2689
|
*/
|
|
2690
|
-
IsRegisteredWithLakeFormation?: boolean;
|
|
2690
|
+
IsRegisteredWithLakeFormation?: boolean | undefined;
|
|
2691
2691
|
}
|
|
2692
2692
|
/**
|
|
2693
2693
|
* @public
|
|
@@ -2697,13 +2697,13 @@ export interface GetUnfilteredPartitionsMetadataResponse {
|
|
|
2697
2697
|
* <p>A list of requested partitions.</p>
|
|
2698
2698
|
* @public
|
|
2699
2699
|
*/
|
|
2700
|
-
UnfilteredPartitions?: UnfilteredPartition[];
|
|
2700
|
+
UnfilteredPartitions?: UnfilteredPartition[] | undefined;
|
|
2701
2701
|
/**
|
|
2702
2702
|
* <p>A continuation token, if the returned list of partitions does not include the last
|
|
2703
2703
|
* one.</p>
|
|
2704
2704
|
* @public
|
|
2705
2705
|
*/
|
|
2706
|
-
NextToken?: string;
|
|
2706
|
+
NextToken?: string | undefined;
|
|
2707
2707
|
}
|
|
2708
2708
|
/**
|
|
2709
2709
|
* <p>A structure specifying the dialect and dialect version used by the query engine.</p>
|
|
@@ -2714,12 +2714,12 @@ export interface SupportedDialect {
|
|
|
2714
2714
|
* <p>The dialect of the query engine.</p>
|
|
2715
2715
|
* @public
|
|
2716
2716
|
*/
|
|
2717
|
-
Dialect?: ViewDialect;
|
|
2717
|
+
Dialect?: ViewDialect | undefined;
|
|
2718
2718
|
/**
|
|
2719
2719
|
* <p>The version of the dialect of the query engine. For example, 3.0.0.</p>
|
|
2720
2720
|
* @public
|
|
2721
2721
|
*/
|
|
2722
|
-
DialectVersion?: string;
|
|
2722
|
+
DialectVersion?: string | undefined;
|
|
2723
2723
|
}
|
|
2724
2724
|
/**
|
|
2725
2725
|
* @public
|
|
@@ -2729,7 +2729,7 @@ export interface GetUnfilteredTableMetadataRequest {
|
|
|
2729
2729
|
* <p>Specified only if the base tables belong to a different Amazon Web Services Region.</p>
|
|
2730
2730
|
* @public
|
|
2731
2731
|
*/
|
|
2732
|
-
Region?: string;
|
|
2732
|
+
Region?: string | undefined;
|
|
2733
2733
|
/**
|
|
2734
2734
|
* <p>The catalog ID where the table resides.</p>
|
|
2735
2735
|
* @public
|
|
@@ -2749,7 +2749,7 @@ export interface GetUnfilteredTableMetadataRequest {
|
|
|
2749
2749
|
* <p>A structure containing Lake Formation audit context information.</p>
|
|
2750
2750
|
* @public
|
|
2751
2751
|
*/
|
|
2752
|
-
AuditContext?: AuditContext;
|
|
2752
|
+
AuditContext?: AuditContext | undefined;
|
|
2753
2753
|
/**
|
|
2754
2754
|
* <p>Indicates the level of filtering a third-party analytical engine is capable of enforcing when calling the <code>GetUnfilteredTableMetadata</code> API operation. Accepted values are:</p>
|
|
2755
2755
|
* <ul>
|
|
@@ -2779,27 +2779,27 @@ export interface GetUnfilteredTableMetadataRequest {
|
|
|
2779
2779
|
* <p>The resource ARN of the view.</p>
|
|
2780
2780
|
* @public
|
|
2781
2781
|
*/
|
|
2782
|
-
ParentResourceArn?: string;
|
|
2782
|
+
ParentResourceArn?: string | undefined;
|
|
2783
2783
|
/**
|
|
2784
2784
|
* <p>The resource ARN of the root view in a chain of nested views.</p>
|
|
2785
2785
|
* @public
|
|
2786
2786
|
*/
|
|
2787
|
-
RootResourceArn?: string;
|
|
2787
|
+
RootResourceArn?: string | undefined;
|
|
2788
2788
|
/**
|
|
2789
2789
|
* <p>A structure specifying the dialect and dialect version used by the query engine.</p>
|
|
2790
2790
|
* @public
|
|
2791
2791
|
*/
|
|
2792
|
-
SupportedDialect?: SupportedDialect;
|
|
2792
|
+
SupportedDialect?: SupportedDialect | undefined;
|
|
2793
2793
|
/**
|
|
2794
2794
|
* <p>The Lake Formation data permissions of the caller on the table. Used to authorize the call when no view context is found.</p>
|
|
2795
2795
|
* @public
|
|
2796
2796
|
*/
|
|
2797
|
-
Permissions?: Permission[];
|
|
2797
|
+
Permissions?: Permission[] | undefined;
|
|
2798
2798
|
/**
|
|
2799
2799
|
* <p>A structure used as a protocol between query engines and Lake Formation or Glue. Contains both a Lake Formation generated authorization identifier and information from the request's authorization context.</p>
|
|
2800
2800
|
* @public
|
|
2801
2801
|
*/
|
|
2802
|
-
QuerySessionContext?: QuerySessionContext;
|
|
2802
|
+
QuerySessionContext?: QuerySessionContext | undefined;
|
|
2803
2803
|
}
|
|
2804
2804
|
/**
|
|
2805
2805
|
* <p>A filter that uses both column-level and row-level filtering.</p>
|
|
@@ -2810,12 +2810,12 @@ export interface ColumnRowFilter {
|
|
|
2810
2810
|
* <p>A string containing the name of the column.</p>
|
|
2811
2811
|
* @public
|
|
2812
2812
|
*/
|
|
2813
|
-
ColumnName?: string;
|
|
2813
|
+
ColumnName?: string | undefined;
|
|
2814
2814
|
/**
|
|
2815
2815
|
* <p>A string containing the row-level filter expression.</p>
|
|
2816
2816
|
* @public
|
|
2817
2817
|
*/
|
|
2818
|
-
RowFilterExpression?: string;
|
|
2818
|
+
RowFilterExpression?: string | undefined;
|
|
2819
2819
|
}
|
|
2820
2820
|
/**
|
|
2821
2821
|
* @public
|
|
@@ -2835,27 +2835,27 @@ export interface GetUsageProfileResponse {
|
|
|
2835
2835
|
* <p>The name of the usage profile.</p>
|
|
2836
2836
|
* @public
|
|
2837
2837
|
*/
|
|
2838
|
-
Name?: string;
|
|
2838
|
+
Name?: string | undefined;
|
|
2839
2839
|
/**
|
|
2840
2840
|
* <p>A description of the usage profile.</p>
|
|
2841
2841
|
* @public
|
|
2842
2842
|
*/
|
|
2843
|
-
Description?: string;
|
|
2843
|
+
Description?: string | undefined;
|
|
2844
2844
|
/**
|
|
2845
2845
|
* <p>A <code>ProfileConfiguration</code> object specifying the job and session values for the profile.</p>
|
|
2846
2846
|
* @public
|
|
2847
2847
|
*/
|
|
2848
|
-
Configuration?: ProfileConfiguration;
|
|
2848
|
+
Configuration?: ProfileConfiguration | undefined;
|
|
2849
2849
|
/**
|
|
2850
2850
|
* <p>The date and time when the usage profile was created.</p>
|
|
2851
2851
|
* @public
|
|
2852
2852
|
*/
|
|
2853
|
-
CreatedOn?: Date;
|
|
2853
|
+
CreatedOn?: Date | undefined;
|
|
2854
2854
|
/**
|
|
2855
2855
|
* <p>The date and time when the usage profile was last modified.</p>
|
|
2856
2856
|
* @public
|
|
2857
2857
|
*/
|
|
2858
|
-
LastModifiedOn?: Date;
|
|
2858
|
+
LastModifiedOn?: Date | undefined;
|
|
2859
2859
|
}
|
|
2860
2860
|
/**
|
|
2861
2861
|
* @public
|
|
@@ -2866,7 +2866,7 @@ export interface GetUserDefinedFunctionRequest {
|
|
|
2866
2866
|
* provided, the Amazon Web Services account ID is used by default.</p>
|
|
2867
2867
|
* @public
|
|
2868
2868
|
*/
|
|
2869
|
-
CatalogId?: string;
|
|
2869
|
+
CatalogId?: string | undefined;
|
|
2870
2870
|
/**
|
|
2871
2871
|
* <p>The name of the catalog database where the function is located.</p>
|
|
2872
2872
|
* @public
|
|
@@ -2888,42 +2888,42 @@ export interface UserDefinedFunction {
|
|
|
2888
2888
|
* <p>The name of the function.</p>
|
|
2889
2889
|
* @public
|
|
2890
2890
|
*/
|
|
2891
|
-
FunctionName?: string;
|
|
2891
|
+
FunctionName?: string | undefined;
|
|
2892
2892
|
/**
|
|
2893
2893
|
* <p>The name of the catalog database that contains the function.</p>
|
|
2894
2894
|
* @public
|
|
2895
2895
|
*/
|
|
2896
|
-
DatabaseName?: string;
|
|
2896
|
+
DatabaseName?: string | undefined;
|
|
2897
2897
|
/**
|
|
2898
2898
|
* <p>The Java class that contains the function code.</p>
|
|
2899
2899
|
* @public
|
|
2900
2900
|
*/
|
|
2901
|
-
ClassName?: string;
|
|
2901
|
+
ClassName?: string | undefined;
|
|
2902
2902
|
/**
|
|
2903
2903
|
* <p>The owner of the function.</p>
|
|
2904
2904
|
* @public
|
|
2905
2905
|
*/
|
|
2906
|
-
OwnerName?: string;
|
|
2906
|
+
OwnerName?: string | undefined;
|
|
2907
2907
|
/**
|
|
2908
2908
|
* <p>The owner type.</p>
|
|
2909
2909
|
* @public
|
|
2910
2910
|
*/
|
|
2911
|
-
OwnerType?: PrincipalType;
|
|
2911
|
+
OwnerType?: PrincipalType | undefined;
|
|
2912
2912
|
/**
|
|
2913
2913
|
* <p>The time at which the function was created.</p>
|
|
2914
2914
|
* @public
|
|
2915
2915
|
*/
|
|
2916
|
-
CreateTime?: Date;
|
|
2916
|
+
CreateTime?: Date | undefined;
|
|
2917
2917
|
/**
|
|
2918
2918
|
* <p>The resource URIs for the function.</p>
|
|
2919
2919
|
* @public
|
|
2920
2920
|
*/
|
|
2921
|
-
ResourceUris?: ResourceUri[];
|
|
2921
|
+
ResourceUris?: ResourceUri[] | undefined;
|
|
2922
2922
|
/**
|
|
2923
2923
|
* <p>The ID of the Data Catalog in which the function resides.</p>
|
|
2924
2924
|
* @public
|
|
2925
2925
|
*/
|
|
2926
|
-
CatalogId?: string;
|
|
2926
|
+
CatalogId?: string | undefined;
|
|
2927
2927
|
}
|
|
2928
2928
|
/**
|
|
2929
2929
|
* @public
|
|
@@ -2933,7 +2933,7 @@ export interface GetUserDefinedFunctionResponse {
|
|
|
2933
2933
|
* <p>The requested function definition.</p>
|
|
2934
2934
|
* @public
|
|
2935
2935
|
*/
|
|
2936
|
-
UserDefinedFunction?: UserDefinedFunction;
|
|
2936
|
+
UserDefinedFunction?: UserDefinedFunction | undefined;
|
|
2937
2937
|
}
|
|
2938
2938
|
/**
|
|
2939
2939
|
* @public
|
|
@@ -2944,13 +2944,13 @@ export interface GetUserDefinedFunctionsRequest {
|
|
|
2944
2944
|
* provided, the Amazon Web Services account ID is used by default.</p>
|
|
2945
2945
|
* @public
|
|
2946
2946
|
*/
|
|
2947
|
-
CatalogId?: string;
|
|
2947
|
+
CatalogId?: string | undefined;
|
|
2948
2948
|
/**
|
|
2949
2949
|
* <p>The name of the catalog database where the functions are located. If none is provided, functions from all the
|
|
2950
2950
|
* databases across the catalog will be returned.</p>
|
|
2951
2951
|
* @public
|
|
2952
2952
|
*/
|
|
2953
|
-
DatabaseName?: string;
|
|
2953
|
+
DatabaseName?: string | undefined;
|
|
2954
2954
|
/**
|
|
2955
2955
|
* <p>An optional function-name pattern string that filters the function
|
|
2956
2956
|
* definitions returned.</p>
|
|
@@ -2961,12 +2961,12 @@ export interface GetUserDefinedFunctionsRequest {
|
|
|
2961
2961
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
2962
2962
|
* @public
|
|
2963
2963
|
*/
|
|
2964
|
-
NextToken?: string;
|
|
2964
|
+
NextToken?: string | undefined;
|
|
2965
2965
|
/**
|
|
2966
2966
|
* <p>The maximum number of functions to return in one response.</p>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
MaxResults?: number;
|
|
2969
|
+
MaxResults?: number | undefined;
|
|
2970
2970
|
}
|
|
2971
2971
|
/**
|
|
2972
2972
|
* @public
|
|
@@ -2976,13 +2976,13 @@ export interface GetUserDefinedFunctionsResponse {
|
|
|
2976
2976
|
* <p>A list of requested function definitions.</p>
|
|
2977
2977
|
* @public
|
|
2978
2978
|
*/
|
|
2979
|
-
UserDefinedFunctions?: UserDefinedFunction[];
|
|
2979
|
+
UserDefinedFunctions?: UserDefinedFunction[] | undefined;
|
|
2980
2980
|
/**
|
|
2981
2981
|
* <p>A continuation token, if the list of functions returned does
|
|
2982
2982
|
* not include the last requested function.</p>
|
|
2983
2983
|
* @public
|
|
2984
2984
|
*/
|
|
2985
|
-
NextToken?: string;
|
|
2985
|
+
NextToken?: string | undefined;
|
|
2986
2986
|
}
|
|
2987
2987
|
/**
|
|
2988
2988
|
* @public
|
|
@@ -2997,7 +2997,7 @@ export interface GetWorkflowRequest {
|
|
|
2997
2997
|
* <p>Specifies whether to include a graph when returning the workflow resource metadata.</p>
|
|
2998
2998
|
* @public
|
|
2999
2999
|
*/
|
|
3000
|
-
IncludeGraph?: boolean;
|
|
3000
|
+
IncludeGraph?: boolean | undefined;
|
|
3001
3001
|
}
|
|
3002
3002
|
/**
|
|
3003
3003
|
* @public
|
|
@@ -3007,7 +3007,7 @@ export interface GetWorkflowResponse {
|
|
|
3007
3007
|
* <p>The resource metadata for the workflow.</p>
|
|
3008
3008
|
* @public
|
|
3009
3009
|
*/
|
|
3010
|
-
Workflow?: Workflow;
|
|
3010
|
+
Workflow?: Workflow | undefined;
|
|
3011
3011
|
}
|
|
3012
3012
|
/**
|
|
3013
3013
|
* @public
|
|
@@ -3027,7 +3027,7 @@ export interface GetWorkflowRunRequest {
|
|
|
3027
3027
|
* <p>Specifies whether to include the workflow graph in response or not.</p>
|
|
3028
3028
|
* @public
|
|
3029
3029
|
*/
|
|
3030
|
-
IncludeGraph?: boolean;
|
|
3030
|
+
IncludeGraph?: boolean | undefined;
|
|
3031
3031
|
}
|
|
3032
3032
|
/**
|
|
3033
3033
|
* @public
|
|
@@ -3037,7 +3037,7 @@ export interface GetWorkflowRunResponse {
|
|
|
3037
3037
|
* <p>The requested workflow run metadata.</p>
|
|
3038
3038
|
* @public
|
|
3039
3039
|
*/
|
|
3040
|
-
Run?: WorkflowRun;
|
|
3040
|
+
Run?: WorkflowRun | undefined;
|
|
3041
3041
|
}
|
|
3042
3042
|
/**
|
|
3043
3043
|
* @public
|
|
@@ -3062,7 +3062,7 @@ export interface GetWorkflowRunPropertiesResponse {
|
|
|
3062
3062
|
* <p>The workflow run properties which were set during the specified run.</p>
|
|
3063
3063
|
* @public
|
|
3064
3064
|
*/
|
|
3065
|
-
RunProperties?: Record<string, string
|
|
3065
|
+
RunProperties?: Record<string, string> | undefined;
|
|
3066
3066
|
}
|
|
3067
3067
|
/**
|
|
3068
3068
|
* @public
|
|
@@ -3077,17 +3077,17 @@ export interface GetWorkflowRunsRequest {
|
|
|
3077
3077
|
* <p>Specifies whether to include the workflow graph in response or not.</p>
|
|
3078
3078
|
* @public
|
|
3079
3079
|
*/
|
|
3080
|
-
IncludeGraph?: boolean;
|
|
3080
|
+
IncludeGraph?: boolean | undefined;
|
|
3081
3081
|
/**
|
|
3082
3082
|
* <p>The maximum size of the response.</p>
|
|
3083
3083
|
* @public
|
|
3084
3084
|
*/
|
|
3085
|
-
NextToken?: string;
|
|
3085
|
+
NextToken?: string | undefined;
|
|
3086
3086
|
/**
|
|
3087
3087
|
* <p>The maximum number of workflow runs to be included in the response.</p>
|
|
3088
3088
|
* @public
|
|
3089
3089
|
*/
|
|
3090
|
-
MaxResults?: number;
|
|
3090
|
+
MaxResults?: number | undefined;
|
|
3091
3091
|
}
|
|
3092
3092
|
/**
|
|
3093
3093
|
* @public
|
|
@@ -3097,12 +3097,12 @@ export interface GetWorkflowRunsResponse {
|
|
|
3097
3097
|
* <p>A list of workflow run metadata objects.</p>
|
|
3098
3098
|
* @public
|
|
3099
3099
|
*/
|
|
3100
|
-
Runs?: WorkflowRun[];
|
|
3100
|
+
Runs?: WorkflowRun[] | undefined;
|
|
3101
3101
|
/**
|
|
3102
3102
|
* <p>A continuation token, if not all requested workflow runs have been returned.</p>
|
|
3103
3103
|
* @public
|
|
3104
3104
|
*/
|
|
3105
|
-
NextToken?: string;
|
|
3105
|
+
NextToken?: string | undefined;
|
|
3106
3106
|
}
|
|
3107
3107
|
/**
|
|
3108
3108
|
* @public
|
|
@@ -3112,7 +3112,7 @@ export interface ImportCatalogToGlueRequest {
|
|
|
3112
3112
|
* <p>The ID of the catalog to import. Currently, this should be the Amazon Web Services account ID.</p>
|
|
3113
3113
|
* @public
|
|
3114
3114
|
*/
|
|
3115
|
-
CatalogId?: string;
|
|
3115
|
+
CatalogId?: string | undefined;
|
|
3116
3116
|
}
|
|
3117
3117
|
/**
|
|
3118
3118
|
* @public
|
|
@@ -3127,17 +3127,17 @@ export interface ListBlueprintsRequest {
|
|
|
3127
3127
|
* <p>A continuation token, if this is a continuation request.</p>
|
|
3128
3128
|
* @public
|
|
3129
3129
|
*/
|
|
3130
|
-
NextToken?: string;
|
|
3130
|
+
NextToken?: string | undefined;
|
|
3131
3131
|
/**
|
|
3132
3132
|
* <p>The maximum size of a list to return.</p>
|
|
3133
3133
|
* @public
|
|
3134
3134
|
*/
|
|
3135
|
-
MaxResults?: number;
|
|
3135
|
+
MaxResults?: number | undefined;
|
|
3136
3136
|
/**
|
|
3137
3137
|
* <p>Filters the list by an Amazon Web Services resource tag.</p>
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
Tags?: Record<string, string
|
|
3140
|
+
Tags?: Record<string, string> | undefined;
|
|
3141
3141
|
}
|
|
3142
3142
|
/**
|
|
3143
3143
|
* @public
|
|
@@ -3147,12 +3147,12 @@ export interface ListBlueprintsResponse {
|
|
|
3147
3147
|
* <p>List of names of blueprints in the account.</p>
|
|
3148
3148
|
* @public
|
|
3149
3149
|
*/
|
|
3150
|
-
Blueprints?: string[];
|
|
3150
|
+
Blueprints?: string[] | undefined;
|
|
3151
3151
|
/**
|
|
3152
3152
|
* <p>A continuation token, if not all blueprint names have been returned.</p>
|
|
3153
3153
|
* @public
|
|
3154
3154
|
*/
|
|
3155
|
-
NextToken?: string;
|
|
3155
|
+
NextToken?: string | undefined;
|
|
3156
3156
|
}
|
|
3157
3157
|
/**
|
|
3158
3158
|
* @public
|
|
@@ -3162,12 +3162,12 @@ export interface ListColumnStatisticsTaskRunsRequest {
|
|
|
3162
3162
|
* <p>The maximum size of the response.</p>
|
|
3163
3163
|
* @public
|
|
3164
3164
|
*/
|
|
3165
|
-
MaxResults?: number;
|
|
3165
|
+
MaxResults?: number | undefined;
|
|
3166
3166
|
/**
|
|
3167
3167
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
3168
3168
|
* @public
|
|
3169
3169
|
*/
|
|
3170
|
-
NextToken?: string;
|
|
3170
|
+
NextToken?: string | undefined;
|
|
3171
3171
|
}
|
|
3172
3172
|
/**
|
|
3173
3173
|
* @public
|
|
@@ -3177,12 +3177,12 @@ export interface ListColumnStatisticsTaskRunsResponse {
|
|
|
3177
3177
|
* <p>A list of column statistics task run IDs.</p>
|
|
3178
3178
|
* @public
|
|
3179
3179
|
*/
|
|
3180
|
-
ColumnStatisticsTaskRunIds?: string[];
|
|
3180
|
+
ColumnStatisticsTaskRunIds?: string[] | undefined;
|
|
3181
3181
|
/**
|
|
3182
3182
|
* <p>A continuation token, if not all task run IDs have yet been returned.</p>
|
|
3183
3183
|
* @public
|
|
3184
3184
|
*/
|
|
3185
|
-
NextToken?: string;
|
|
3185
|
+
NextToken?: string | undefined;
|
|
3186
3186
|
}
|
|
3187
3187
|
/**
|
|
3188
3188
|
* @public
|
|
@@ -3192,17 +3192,17 @@ export interface ListCrawlersRequest {
|
|
|
3192
3192
|
* <p>The maximum size of a list to return.</p>
|
|
3193
3193
|
* @public
|
|
3194
3194
|
*/
|
|
3195
|
-
MaxResults?: number;
|
|
3195
|
+
MaxResults?: number | undefined;
|
|
3196
3196
|
/**
|
|
3197
3197
|
* <p>A continuation token, if this is a continuation request.</p>
|
|
3198
3198
|
* @public
|
|
3199
3199
|
*/
|
|
3200
|
-
NextToken?: string;
|
|
3200
|
+
NextToken?: string | undefined;
|
|
3201
3201
|
/**
|
|
3202
3202
|
* <p>Specifies to return only these tagged resources.</p>
|
|
3203
3203
|
* @public
|
|
3204
3204
|
*/
|
|
3205
|
-
Tags?: Record<string, string
|
|
3205
|
+
Tags?: Record<string, string> | undefined;
|
|
3206
3206
|
}
|
|
3207
3207
|
/**
|
|
3208
3208
|
* @public
|
|
@@ -3212,13 +3212,13 @@ export interface ListCrawlersResponse {
|
|
|
3212
3212
|
* <p>The names of all crawlers in the account, or the crawlers with the specified tags.</p>
|
|
3213
3213
|
* @public
|
|
3214
3214
|
*/
|
|
3215
|
-
CrawlerNames?: string[];
|
|
3215
|
+
CrawlerNames?: string[] | undefined;
|
|
3216
3216
|
/**
|
|
3217
3217
|
* <p>A continuation token, if the returned list does not contain the
|
|
3218
3218
|
* last metric available.</p>
|
|
3219
3219
|
* @public
|
|
3220
3220
|
*/
|
|
3221
|
-
NextToken?: string;
|
|
3221
|
+
NextToken?: string | undefined;
|
|
3222
3222
|
}
|
|
3223
3223
|
/**
|
|
3224
3224
|
* @public
|
|
@@ -3278,7 +3278,7 @@ export interface CrawlsFilter {
|
|
|
3278
3278
|
* </ul>
|
|
3279
3279
|
* @public
|
|
3280
3280
|
*/
|
|
3281
|
-
FieldName?: FieldName;
|
|
3281
|
+
FieldName?: FieldName | undefined;
|
|
3282
3282
|
/**
|
|
3283
3283
|
* <p>A defined comparator that operates on the value. The available operators are:</p>
|
|
3284
3284
|
* <ul>
|
|
@@ -3309,12 +3309,12 @@ export interface CrawlsFilter {
|
|
|
3309
3309
|
* </ul>
|
|
3310
3310
|
* @public
|
|
3311
3311
|
*/
|
|
3312
|
-
FilterOperator?: FilterOperator;
|
|
3312
|
+
FilterOperator?: FilterOperator | undefined;
|
|
3313
3313
|
/**
|
|
3314
3314
|
* <p>The value provided for comparison on the crawl field. </p>
|
|
3315
3315
|
* @public
|
|
3316
3316
|
*/
|
|
3317
|
-
FieldValue?: string;
|
|
3317
|
+
FieldValue?: string | undefined;
|
|
3318
3318
|
}
|
|
3319
3319
|
/**
|
|
3320
3320
|
* @public
|
|
@@ -3329,17 +3329,17 @@ export interface ListCrawlsRequest {
|
|
|
3329
3329
|
* <p>The maximum number of results to return. The default is 20, and maximum is 100.</p>
|
|
3330
3330
|
* @public
|
|
3331
3331
|
*/
|
|
3332
|
-
MaxResults?: number;
|
|
3332
|
+
MaxResults?: number | undefined;
|
|
3333
3333
|
/**
|
|
3334
3334
|
* <p>Filters the crawls by the criteria you specify in a list of <code>CrawlsFilter</code> objects.</p>
|
|
3335
3335
|
* @public
|
|
3336
3336
|
*/
|
|
3337
|
-
Filters?: CrawlsFilter[];
|
|
3337
|
+
Filters?: CrawlsFilter[] | undefined;
|
|
3338
3338
|
/**
|
|
3339
3339
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
3340
3340
|
* @public
|
|
3341
3341
|
*/
|
|
3342
|
-
NextToken?: string;
|
|
3342
|
+
NextToken?: string | undefined;
|
|
3343
3343
|
}
|
|
3344
3344
|
/**
|
|
3345
3345
|
* @public
|
|
@@ -3364,52 +3364,52 @@ export interface CrawlerHistory {
|
|
|
3364
3364
|
* <p>A UUID identifier for each crawl.</p>
|
|
3365
3365
|
* @public
|
|
3366
3366
|
*/
|
|
3367
|
-
CrawlId?: string;
|
|
3367
|
+
CrawlId?: string | undefined;
|
|
3368
3368
|
/**
|
|
3369
3369
|
* <p>The state of the crawl.</p>
|
|
3370
3370
|
* @public
|
|
3371
3371
|
*/
|
|
3372
|
-
State?: CrawlerHistoryState;
|
|
3372
|
+
State?: CrawlerHistoryState | undefined;
|
|
3373
3373
|
/**
|
|
3374
3374
|
* <p>The date and time on which the crawl started.</p>
|
|
3375
3375
|
* @public
|
|
3376
3376
|
*/
|
|
3377
|
-
StartTime?: Date;
|
|
3377
|
+
StartTime?: Date | undefined;
|
|
3378
3378
|
/**
|
|
3379
3379
|
* <p>The date and time on which the crawl ended.</p>
|
|
3380
3380
|
* @public
|
|
3381
3381
|
*/
|
|
3382
|
-
EndTime?: Date;
|
|
3382
|
+
EndTime?: Date | undefined;
|
|
3383
3383
|
/**
|
|
3384
3384
|
* <p>A run summary for the specific crawl in JSON. Contains the catalog tables and partitions that were added, updated, or deleted.</p>
|
|
3385
3385
|
* @public
|
|
3386
3386
|
*/
|
|
3387
|
-
Summary?: string;
|
|
3387
|
+
Summary?: string | undefined;
|
|
3388
3388
|
/**
|
|
3389
3389
|
* <p>If an error occurred, the error message associated with the crawl.</p>
|
|
3390
3390
|
* @public
|
|
3391
3391
|
*/
|
|
3392
|
-
ErrorMessage?: string;
|
|
3392
|
+
ErrorMessage?: string | undefined;
|
|
3393
3393
|
/**
|
|
3394
3394
|
* <p>The log group associated with the crawl.</p>
|
|
3395
3395
|
* @public
|
|
3396
3396
|
*/
|
|
3397
|
-
LogGroup?: string;
|
|
3397
|
+
LogGroup?: string | undefined;
|
|
3398
3398
|
/**
|
|
3399
3399
|
* <p>The log stream associated with the crawl.</p>
|
|
3400
3400
|
* @public
|
|
3401
3401
|
*/
|
|
3402
|
-
LogStream?: string;
|
|
3402
|
+
LogStream?: string | undefined;
|
|
3403
3403
|
/**
|
|
3404
3404
|
* <p>The prefix for a CloudWatch message about this crawl.</p>
|
|
3405
3405
|
* @public
|
|
3406
3406
|
*/
|
|
3407
|
-
MessagePrefix?: string;
|
|
3407
|
+
MessagePrefix?: string | undefined;
|
|
3408
3408
|
/**
|
|
3409
3409
|
* <p>The number of data processing units (DPU) used in hours for the crawl.</p>
|
|
3410
3410
|
* @public
|
|
3411
3411
|
*/
|
|
3412
|
-
DPUHour?: number;
|
|
3412
|
+
DPUHour?: number | undefined;
|
|
3413
3413
|
}
|
|
3414
3414
|
/**
|
|
3415
3415
|
* @public
|
|
@@ -3419,12 +3419,12 @@ export interface ListCrawlsResponse {
|
|
|
3419
3419
|
* <p>A list of <code>CrawlerHistory</code> objects representing the crawl runs that meet your criteria.</p>
|
|
3420
3420
|
* @public
|
|
3421
3421
|
*/
|
|
3422
|
-
Crawls?: CrawlerHistory[];
|
|
3422
|
+
Crawls?: CrawlerHistory[] | undefined;
|
|
3423
3423
|
/**
|
|
3424
3424
|
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
3425
3425
|
* @public
|
|
3426
3426
|
*/
|
|
3427
|
-
NextToken?: string;
|
|
3427
|
+
NextToken?: string | undefined;
|
|
3428
3428
|
}
|
|
3429
3429
|
/**
|
|
3430
3430
|
* @public
|
|
@@ -3434,17 +3434,17 @@ export interface ListCustomEntityTypesRequest {
|
|
|
3434
3434
|
* <p>A paginated token to offset the results.</p>
|
|
3435
3435
|
* @public
|
|
3436
3436
|
*/
|
|
3437
|
-
NextToken?: string;
|
|
3437
|
+
NextToken?: string | undefined;
|
|
3438
3438
|
/**
|
|
3439
3439
|
* <p>The maximum number of results to return.</p>
|
|
3440
3440
|
* @public
|
|
3441
3441
|
*/
|
|
3442
|
-
MaxResults?: number;
|
|
3442
|
+
MaxResults?: number | undefined;
|
|
3443
3443
|
/**
|
|
3444
3444
|
* <p>A list of key-value pair tags.</p>
|
|
3445
3445
|
* @public
|
|
3446
3446
|
*/
|
|
3447
|
-
Tags?: Record<string, string
|
|
3447
|
+
Tags?: Record<string, string> | undefined;
|
|
3448
3448
|
}
|
|
3449
3449
|
/**
|
|
3450
3450
|
* @public
|
|
@@ -3454,12 +3454,12 @@ export interface ListCustomEntityTypesResponse {
|
|
|
3454
3454
|
* <p>A list of <code>CustomEntityType</code> objects representing custom patterns.</p>
|
|
3455
3455
|
* @public
|
|
3456
3456
|
*/
|
|
3457
|
-
CustomEntityTypes?: CustomEntityType[];
|
|
3457
|
+
CustomEntityTypes?: CustomEntityType[] | undefined;
|
|
3458
3458
|
/**
|
|
3459
3459
|
* <p>A pagination token, if more results are available.</p>
|
|
3460
3460
|
* @public
|
|
3461
3461
|
*/
|
|
3462
|
-
NextToken?: string;
|
|
3462
|
+
NextToken?: string | undefined;
|
|
3463
3463
|
}
|
|
3464
3464
|
/**
|
|
3465
3465
|
* <p>Criteria used to return data quality results.</p>
|
|
@@ -3470,27 +3470,27 @@ export interface DataQualityResultFilterCriteria {
|
|
|
3470
3470
|
* <p>Filter results by the specified data source. For example, retrieving all results for an Glue table.</p>
|
|
3471
3471
|
* @public
|
|
3472
3472
|
*/
|
|
3473
|
-
DataSource?: DataSource;
|
|
3473
|
+
DataSource?: DataSource | undefined;
|
|
3474
3474
|
/**
|
|
3475
3475
|
* <p>Filter results by the specified job name.</p>
|
|
3476
3476
|
* @public
|
|
3477
3477
|
*/
|
|
3478
|
-
JobName?: string;
|
|
3478
|
+
JobName?: string | undefined;
|
|
3479
3479
|
/**
|
|
3480
3480
|
* <p>Filter results by the specified job run ID.</p>
|
|
3481
3481
|
* @public
|
|
3482
3482
|
*/
|
|
3483
|
-
JobRunId?: string;
|
|
3483
|
+
JobRunId?: string | undefined;
|
|
3484
3484
|
/**
|
|
3485
3485
|
* <p>Filter results by runs that started after this time.</p>
|
|
3486
3486
|
* @public
|
|
3487
3487
|
*/
|
|
3488
|
-
StartedAfter?: Date;
|
|
3488
|
+
StartedAfter?: Date | undefined;
|
|
3489
3489
|
/**
|
|
3490
3490
|
* <p>Filter results by runs that started before this time.</p>
|
|
3491
3491
|
* @public
|
|
3492
3492
|
*/
|
|
3493
|
-
StartedBefore?: Date;
|
|
3493
|
+
StartedBefore?: Date | undefined;
|
|
3494
3494
|
}
|
|
3495
3495
|
/**
|
|
3496
3496
|
* @public
|
|
@@ -3500,17 +3500,17 @@ export interface ListDataQualityResultsRequest {
|
|
|
3500
3500
|
* <p>The filter criteria.</p>
|
|
3501
3501
|
* @public
|
|
3502
3502
|
*/
|
|
3503
|
-
Filter?: DataQualityResultFilterCriteria;
|
|
3503
|
+
Filter?: DataQualityResultFilterCriteria | undefined;
|
|
3504
3504
|
/**
|
|
3505
3505
|
* <p>A paginated token to offset the results.</p>
|
|
3506
3506
|
* @public
|
|
3507
3507
|
*/
|
|
3508
|
-
NextToken?: string;
|
|
3508
|
+
NextToken?: string | undefined;
|
|
3509
3509
|
/**
|
|
3510
3510
|
* <p>The maximum number of results to return.</p>
|
|
3511
3511
|
* @public
|
|
3512
3512
|
*/
|
|
3513
|
-
MaxResults?: number;
|
|
3513
|
+
MaxResults?: number | undefined;
|
|
3514
3514
|
}
|
|
3515
3515
|
/**
|
|
3516
3516
|
* <p>Describes a data quality result.</p>
|
|
@@ -3521,27 +3521,27 @@ export interface DataQualityResultDescription {
|
|
|
3521
3521
|
* <p>The unique result ID for this data quality result.</p>
|
|
3522
3522
|
* @public
|
|
3523
3523
|
*/
|
|
3524
|
-
ResultId?: string;
|
|
3524
|
+
ResultId?: string | undefined;
|
|
3525
3525
|
/**
|
|
3526
3526
|
* <p>The table name associated with the data quality result.</p>
|
|
3527
3527
|
* @public
|
|
3528
3528
|
*/
|
|
3529
|
-
DataSource?: DataSource;
|
|
3529
|
+
DataSource?: DataSource | undefined;
|
|
3530
3530
|
/**
|
|
3531
3531
|
* <p>The job name associated with the data quality result.</p>
|
|
3532
3532
|
* @public
|
|
3533
3533
|
*/
|
|
3534
|
-
JobName?: string;
|
|
3534
|
+
JobName?: string | undefined;
|
|
3535
3535
|
/**
|
|
3536
3536
|
* <p>The job run ID associated with the data quality result.</p>
|
|
3537
3537
|
* @public
|
|
3538
3538
|
*/
|
|
3539
|
-
JobRunId?: string;
|
|
3539
|
+
JobRunId?: string | undefined;
|
|
3540
3540
|
/**
|
|
3541
3541
|
* <p>The time that the run started for this data quality result.</p>
|
|
3542
3542
|
* @public
|
|
3543
3543
|
*/
|
|
3544
|
-
StartedOn?: Date;
|
|
3544
|
+
StartedOn?: Date | undefined;
|
|
3545
3545
|
}
|
|
3546
3546
|
/**
|
|
3547
3547
|
* @public
|
|
@@ -3556,7 +3556,7 @@ export interface ListDataQualityResultsResponse {
|
|
|
3556
3556
|
* <p>A pagination token, if more results are available.</p>
|
|
3557
3557
|
* @public
|
|
3558
3558
|
*/
|
|
3559
|
-
NextToken?: string;
|
|
3559
|
+
NextToken?: string | undefined;
|
|
3560
3560
|
}
|
|
3561
3561
|
/**
|
|
3562
3562
|
* <p>A filter for listing data quality recommendation runs.</p>
|
|
@@ -3572,12 +3572,12 @@ export interface DataQualityRuleRecommendationRunFilter {
|
|
|
3572
3572
|
* <p>Filter based on time for results started before provided time.</p>
|
|
3573
3573
|
* @public
|
|
3574
3574
|
*/
|
|
3575
|
-
StartedBefore?: Date;
|
|
3575
|
+
StartedBefore?: Date | undefined;
|
|
3576
3576
|
/**
|
|
3577
3577
|
* <p>Filter based on time for results started after provided time.</p>
|
|
3578
3578
|
* @public
|
|
3579
3579
|
*/
|
|
3580
|
-
StartedAfter?: Date;
|
|
3580
|
+
StartedAfter?: Date | undefined;
|
|
3581
3581
|
}
|
|
3582
3582
|
/**
|
|
3583
3583
|
* @public
|
|
@@ -3587,17 +3587,17 @@ export interface ListDataQualityRuleRecommendationRunsRequest {
|
|
|
3587
3587
|
* <p>The filter criteria.</p>
|
|
3588
3588
|
* @public
|
|
3589
3589
|
*/
|
|
3590
|
-
Filter?: DataQualityRuleRecommendationRunFilter;
|
|
3590
|
+
Filter?: DataQualityRuleRecommendationRunFilter | undefined;
|
|
3591
3591
|
/**
|
|
3592
3592
|
* <p>A paginated token to offset the results.</p>
|
|
3593
3593
|
* @public
|
|
3594
3594
|
*/
|
|
3595
|
-
NextToken?: string;
|
|
3595
|
+
NextToken?: string | undefined;
|
|
3596
3596
|
/**
|
|
3597
3597
|
* <p>The maximum number of results to return.</p>
|
|
3598
3598
|
* @public
|
|
3599
3599
|
*/
|
|
3600
|
-
MaxResults?: number;
|
|
3600
|
+
MaxResults?: number | undefined;
|
|
3601
3601
|
}
|
|
3602
3602
|
/**
|
|
3603
3603
|
* <p>Describes the result of a data quality rule recommendation run.</p>
|
|
@@ -3608,22 +3608,22 @@ export interface DataQualityRuleRecommendationRunDescription {
|
|
|
3608
3608
|
* <p>The unique run identifier associated with this run.</p>
|
|
3609
3609
|
* @public
|
|
3610
3610
|
*/
|
|
3611
|
-
RunId?: string;
|
|
3611
|
+
RunId?: string | undefined;
|
|
3612
3612
|
/**
|
|
3613
3613
|
* <p>The status for this run.</p>
|
|
3614
3614
|
* @public
|
|
3615
3615
|
*/
|
|
3616
|
-
Status?: TaskStatusType;
|
|
3616
|
+
Status?: TaskStatusType | undefined;
|
|
3617
3617
|
/**
|
|
3618
3618
|
* <p>The date and time when this run started.</p>
|
|
3619
3619
|
* @public
|
|
3620
3620
|
*/
|
|
3621
|
-
StartedOn?: Date;
|
|
3621
|
+
StartedOn?: Date | undefined;
|
|
3622
3622
|
/**
|
|
3623
3623
|
* <p>The data source (Glue table) associated with the recommendation run.</p>
|
|
3624
3624
|
* @public
|
|
3625
3625
|
*/
|
|
3626
|
-
DataSource?: DataSource;
|
|
3626
|
+
DataSource?: DataSource | undefined;
|
|
3627
3627
|
}
|
|
3628
3628
|
/**
|
|
3629
3629
|
* @public
|
|
@@ -3633,12 +3633,12 @@ export interface ListDataQualityRuleRecommendationRunsResponse {
|
|
|
3633
3633
|
* <p>A list of <code>DataQualityRuleRecommendationRunDescription</code> objects.</p>
|
|
3634
3634
|
* @public
|
|
3635
3635
|
*/
|
|
3636
|
-
Runs?: DataQualityRuleRecommendationRunDescription[];
|
|
3636
|
+
Runs?: DataQualityRuleRecommendationRunDescription[] | undefined;
|
|
3637
3637
|
/**
|
|
3638
3638
|
* <p>A pagination token, if more results are available.</p>
|
|
3639
3639
|
* @public
|
|
3640
3640
|
*/
|
|
3641
|
-
NextToken?: string;
|
|
3641
|
+
NextToken?: string | undefined;
|
|
3642
3642
|
}
|
|
3643
3643
|
/**
|
|
3644
3644
|
* <p>The filter criteria.</p>
|
|
@@ -3654,12 +3654,12 @@ export interface DataQualityRulesetEvaluationRunFilter {
|
|
|
3654
3654
|
* <p>Filter results by runs that started before this time.</p>
|
|
3655
3655
|
* @public
|
|
3656
3656
|
*/
|
|
3657
|
-
StartedBefore?: Date;
|
|
3657
|
+
StartedBefore?: Date | undefined;
|
|
3658
3658
|
/**
|
|
3659
3659
|
* <p>Filter results by runs that started after this time.</p>
|
|
3660
3660
|
* @public
|
|
3661
3661
|
*/
|
|
3662
|
-
StartedAfter?: Date;
|
|
3662
|
+
StartedAfter?: Date | undefined;
|
|
3663
3663
|
}
|
|
3664
3664
|
/**
|
|
3665
3665
|
* @public
|
|
@@ -3669,17 +3669,17 @@ export interface ListDataQualityRulesetEvaluationRunsRequest {
|
|
|
3669
3669
|
* <p>The filter criteria.</p>
|
|
3670
3670
|
* @public
|
|
3671
3671
|
*/
|
|
3672
|
-
Filter?: DataQualityRulesetEvaluationRunFilter;
|
|
3672
|
+
Filter?: DataQualityRulesetEvaluationRunFilter | undefined;
|
|
3673
3673
|
/**
|
|
3674
3674
|
* <p>A paginated token to offset the results.</p>
|
|
3675
3675
|
* @public
|
|
3676
3676
|
*/
|
|
3677
|
-
NextToken?: string;
|
|
3677
|
+
NextToken?: string | undefined;
|
|
3678
3678
|
/**
|
|
3679
3679
|
* <p>The maximum number of results to return.</p>
|
|
3680
3680
|
* @public
|
|
3681
3681
|
*/
|
|
3682
|
-
MaxResults?: number;
|
|
3682
|
+
MaxResults?: number | undefined;
|
|
3683
3683
|
}
|
|
3684
3684
|
/**
|
|
3685
3685
|
* <p>Describes the result of a data quality ruleset evaluation run.</p>
|
|
@@ -3690,22 +3690,22 @@ export interface DataQualityRulesetEvaluationRunDescription {
|
|
|
3690
3690
|
* <p>The unique run identifier associated with this run.</p>
|
|
3691
3691
|
* @public
|
|
3692
3692
|
*/
|
|
3693
|
-
RunId?: string;
|
|
3693
|
+
RunId?: string | undefined;
|
|
3694
3694
|
/**
|
|
3695
3695
|
* <p>The status for this run.</p>
|
|
3696
3696
|
* @public
|
|
3697
3697
|
*/
|
|
3698
|
-
Status?: TaskStatusType;
|
|
3698
|
+
Status?: TaskStatusType | undefined;
|
|
3699
3699
|
/**
|
|
3700
3700
|
* <p>The date and time when the run started.</p>
|
|
3701
3701
|
* @public
|
|
3702
3702
|
*/
|
|
3703
|
-
StartedOn?: Date;
|
|
3703
|
+
StartedOn?: Date | undefined;
|
|
3704
3704
|
/**
|
|
3705
3705
|
* <p>The data source (an Glue table) associated with the run.</p>
|
|
3706
3706
|
* @public
|
|
3707
3707
|
*/
|
|
3708
|
-
DataSource?: DataSource;
|
|
3708
|
+
DataSource?: DataSource | undefined;
|
|
3709
3709
|
}
|
|
3710
3710
|
/**
|
|
3711
3711
|
* @public
|
|
@@ -3715,12 +3715,12 @@ export interface ListDataQualityRulesetEvaluationRunsResponse {
|
|
|
3715
3715
|
* <p>A list of <code>DataQualityRulesetEvaluationRunDescription</code> objects representing data quality ruleset runs.</p>
|
|
3716
3716
|
* @public
|
|
3717
3717
|
*/
|
|
3718
|
-
Runs?: DataQualityRulesetEvaluationRunDescription[];
|
|
3718
|
+
Runs?: DataQualityRulesetEvaluationRunDescription[] | undefined;
|
|
3719
3719
|
/**
|
|
3720
3720
|
* <p>A pagination token, if more results are available.</p>
|
|
3721
3721
|
* @public
|
|
3722
3722
|
*/
|
|
3723
|
-
NextToken?: string;
|
|
3723
|
+
NextToken?: string | undefined;
|
|
3724
3724
|
}
|
|
3725
3725
|
/**
|
|
3726
3726
|
* <p>The criteria used to filter data quality rulesets.</p>
|
|
@@ -3731,37 +3731,37 @@ export interface DataQualityRulesetFilterCriteria {
|
|
|
3731
3731
|
* <p>The name of the ruleset filter criteria.</p>
|
|
3732
3732
|
* @public
|
|
3733
3733
|
*/
|
|
3734
|
-
Name?: string;
|
|
3734
|
+
Name?: string | undefined;
|
|
3735
3735
|
/**
|
|
3736
3736
|
* <p>The description of the ruleset filter criteria.</p>
|
|
3737
3737
|
* @public
|
|
3738
3738
|
*/
|
|
3739
|
-
Description?: string;
|
|
3739
|
+
Description?: string | undefined;
|
|
3740
3740
|
/**
|
|
3741
3741
|
* <p>Filter on rulesets created before this date.</p>
|
|
3742
3742
|
* @public
|
|
3743
3743
|
*/
|
|
3744
|
-
CreatedBefore?: Date;
|
|
3744
|
+
CreatedBefore?: Date | undefined;
|
|
3745
3745
|
/**
|
|
3746
3746
|
* <p>Filter on rulesets created after this date.</p>
|
|
3747
3747
|
* @public
|
|
3748
3748
|
*/
|
|
3749
|
-
CreatedAfter?: Date;
|
|
3749
|
+
CreatedAfter?: Date | undefined;
|
|
3750
3750
|
/**
|
|
3751
3751
|
* <p>Filter on rulesets last modified before this date.</p>
|
|
3752
3752
|
* @public
|
|
3753
3753
|
*/
|
|
3754
|
-
LastModifiedBefore?: Date;
|
|
3754
|
+
LastModifiedBefore?: Date | undefined;
|
|
3755
3755
|
/**
|
|
3756
3756
|
* <p>Filter on rulesets last modified after this date.</p>
|
|
3757
3757
|
* @public
|
|
3758
3758
|
*/
|
|
3759
|
-
LastModifiedAfter?: Date;
|
|
3759
|
+
LastModifiedAfter?: Date | undefined;
|
|
3760
3760
|
/**
|
|
3761
3761
|
* <p>The name and database name of the target table.</p>
|
|
3762
3762
|
* @public
|
|
3763
3763
|
*/
|
|
3764
|
-
TargetTable?: DataQualityTargetTable;
|
|
3764
|
+
TargetTable?: DataQualityTargetTable | undefined;
|
|
3765
3765
|
}
|
|
3766
3766
|
/**
|
|
3767
3767
|
* @public
|
|
@@ -3771,22 +3771,22 @@ export interface ListDataQualityRulesetsRequest {
|
|
|
3771
3771
|
* <p>A paginated token to offset the results.</p>
|
|
3772
3772
|
* @public
|
|
3773
3773
|
*/
|
|
3774
|
-
NextToken?: string;
|
|
3774
|
+
NextToken?: string | undefined;
|
|
3775
3775
|
/**
|
|
3776
3776
|
* <p>The maximum number of results to return.</p>
|
|
3777
3777
|
* @public
|
|
3778
3778
|
*/
|
|
3779
|
-
MaxResults?: number;
|
|
3779
|
+
MaxResults?: number | undefined;
|
|
3780
3780
|
/**
|
|
3781
3781
|
* <p>The filter criteria. </p>
|
|
3782
3782
|
* @public
|
|
3783
3783
|
*/
|
|
3784
|
-
Filter?: DataQualityRulesetFilterCriteria;
|
|
3784
|
+
Filter?: DataQualityRulesetFilterCriteria | undefined;
|
|
3785
3785
|
/**
|
|
3786
3786
|
* <p>A list of key-value pair tags.</p>
|
|
3787
3787
|
* @public
|
|
3788
3788
|
*/
|
|
3789
|
-
Tags?: Record<string, string
|
|
3789
|
+
Tags?: Record<string, string> | undefined;
|
|
3790
3790
|
}
|
|
3791
3791
|
/**
|
|
3792
3792
|
* <p>Describes a data quality ruleset returned by <code>GetDataQualityRuleset</code>.</p>
|
|
@@ -3797,37 +3797,37 @@ export interface DataQualityRulesetListDetails {
|
|
|
3797
3797
|
* <p>The name of the data quality ruleset.</p>
|
|
3798
3798
|
* @public
|
|
3799
3799
|
*/
|
|
3800
|
-
Name?: string;
|
|
3800
|
+
Name?: string | undefined;
|
|
3801
3801
|
/**
|
|
3802
3802
|
* <p>A description of the data quality ruleset.</p>
|
|
3803
3803
|
* @public
|
|
3804
3804
|
*/
|
|
3805
|
-
Description?: string;
|
|
3805
|
+
Description?: string | undefined;
|
|
3806
3806
|
/**
|
|
3807
3807
|
* <p>The date and time the data quality ruleset was created.</p>
|
|
3808
3808
|
* @public
|
|
3809
3809
|
*/
|
|
3810
|
-
CreatedOn?: Date;
|
|
3810
|
+
CreatedOn?: Date | undefined;
|
|
3811
3811
|
/**
|
|
3812
3812
|
* <p>The date and time the data quality ruleset was last modified.</p>
|
|
3813
3813
|
* @public
|
|
3814
3814
|
*/
|
|
3815
|
-
LastModifiedOn?: Date;
|
|
3815
|
+
LastModifiedOn?: Date | undefined;
|
|
3816
3816
|
/**
|
|
3817
3817
|
* <p>An object representing an Glue table.</p>
|
|
3818
3818
|
* @public
|
|
3819
3819
|
*/
|
|
3820
|
-
TargetTable?: DataQualityTargetTable;
|
|
3820
|
+
TargetTable?: DataQualityTargetTable | undefined;
|
|
3821
3821
|
/**
|
|
3822
3822
|
* <p>When a ruleset was created from a recommendation run, this run ID is generated to link the two together.</p>
|
|
3823
3823
|
* @public
|
|
3824
3824
|
*/
|
|
3825
|
-
RecommendationRunId?: string;
|
|
3825
|
+
RecommendationRunId?: string | undefined;
|
|
3826
3826
|
/**
|
|
3827
3827
|
* <p>The number of rules in the ruleset.</p>
|
|
3828
3828
|
* @public
|
|
3829
3829
|
*/
|
|
3830
|
-
RuleCount?: number;
|
|
3830
|
+
RuleCount?: number | undefined;
|
|
3831
3831
|
}
|
|
3832
3832
|
/**
|
|
3833
3833
|
* @public
|
|
@@ -3837,12 +3837,12 @@ export interface ListDataQualityRulesetsResponse {
|
|
|
3837
3837
|
* <p>A paginated list of rulesets for the specified list of Glue tables.</p>
|
|
3838
3838
|
* @public
|
|
3839
3839
|
*/
|
|
3840
|
-
Rulesets?: DataQualityRulesetListDetails[];
|
|
3840
|
+
Rulesets?: DataQualityRulesetListDetails[] | undefined;
|
|
3841
3841
|
/**
|
|
3842
3842
|
* <p>A pagination token, if more results are available.</p>
|
|
3843
3843
|
* @public
|
|
3844
3844
|
*/
|
|
3845
|
-
NextToken?: string;
|
|
3845
|
+
NextToken?: string | undefined;
|
|
3846
3846
|
}
|
|
3847
3847
|
/**
|
|
3848
3848
|
* <p>A timestamp filter.</p>
|
|
@@ -3853,12 +3853,12 @@ export interface TimestampFilter {
|
|
|
3853
3853
|
* <p>The timestamp before which statistics should be included in the results.</p>
|
|
3854
3854
|
* @public
|
|
3855
3855
|
*/
|
|
3856
|
-
RecordedBefore?: Date;
|
|
3856
|
+
RecordedBefore?: Date | undefined;
|
|
3857
3857
|
/**
|
|
3858
3858
|
* <p>The timestamp after which statistics should be included in the results.</p>
|
|
3859
3859
|
* @public
|
|
3860
3860
|
*/
|
|
3861
|
-
RecordedAfter?: Date;
|
|
3861
|
+
RecordedAfter?: Date | undefined;
|
|
3862
3862
|
}
|
|
3863
3863
|
/**
|
|
3864
3864
|
* @public
|
|
@@ -3868,27 +3868,27 @@ export interface ListDataQualityStatisticAnnotationsRequest {
|
|
|
3868
3868
|
* <p>The Statistic ID.</p>
|
|
3869
3869
|
* @public
|
|
3870
3870
|
*/
|
|
3871
|
-
StatisticId?: string;
|
|
3871
|
+
StatisticId?: string | undefined;
|
|
3872
3872
|
/**
|
|
3873
3873
|
* <p>The Profile ID.</p>
|
|
3874
3874
|
* @public
|
|
3875
3875
|
*/
|
|
3876
|
-
ProfileId?: string;
|
|
3876
|
+
ProfileId?: string | undefined;
|
|
3877
3877
|
/**
|
|
3878
3878
|
* <p>A timestamp filter.</p>
|
|
3879
3879
|
* @public
|
|
3880
3880
|
*/
|
|
3881
|
-
TimestampFilter?: TimestampFilter;
|
|
3881
|
+
TimestampFilter?: TimestampFilter | undefined;
|
|
3882
3882
|
/**
|
|
3883
3883
|
* <p>The maximum number of results to return in this request.</p>
|
|
3884
3884
|
* @public
|
|
3885
3885
|
*/
|
|
3886
|
-
MaxResults?: number;
|
|
3886
|
+
MaxResults?: number | undefined;
|
|
3887
3887
|
/**
|
|
3888
3888
|
* <p>A pagination token to retrieve the next set of results.</p>
|
|
3889
3889
|
* @public
|
|
3890
3890
|
*/
|
|
3891
|
-
NextToken?: string;
|
|
3891
|
+
NextToken?: string | undefined;
|
|
3892
3892
|
}
|
|
3893
3893
|
/**
|
|
3894
3894
|
* @public
|
|
@@ -3898,12 +3898,12 @@ export interface ListDataQualityStatisticAnnotationsResponse {
|
|
|
3898
3898
|
* <p>A list of <code>StatisticAnnotation</code> applied to the Statistic</p>
|
|
3899
3899
|
* @public
|
|
3900
3900
|
*/
|
|
3901
|
-
Annotations?: StatisticAnnotation[];
|
|
3901
|
+
Annotations?: StatisticAnnotation[] | undefined;
|
|
3902
3902
|
/**
|
|
3903
3903
|
* <p>A pagination token to retrieve the next set of results.</p>
|
|
3904
3904
|
* @public
|
|
3905
3905
|
*/
|
|
3906
|
-
NextToken?: string;
|
|
3906
|
+
NextToken?: string | undefined;
|
|
3907
3907
|
}
|
|
3908
3908
|
/**
|
|
3909
3909
|
* @public
|
|
@@ -3913,27 +3913,27 @@ export interface ListDataQualityStatisticsRequest {
|
|
|
3913
3913
|
* <p>The Statistic ID.</p>
|
|
3914
3914
|
* @public
|
|
3915
3915
|
*/
|
|
3916
|
-
StatisticId?: string;
|
|
3916
|
+
StatisticId?: string | undefined;
|
|
3917
3917
|
/**
|
|
3918
3918
|
* <p>The Profile ID.</p>
|
|
3919
3919
|
* @public
|
|
3920
3920
|
*/
|
|
3921
|
-
ProfileId?: string;
|
|
3921
|
+
ProfileId?: string | undefined;
|
|
3922
3922
|
/**
|
|
3923
3923
|
* <p>A timestamp filter.</p>
|
|
3924
3924
|
* @public
|
|
3925
3925
|
*/
|
|
3926
|
-
TimestampFilter?: TimestampFilter;
|
|
3926
|
+
TimestampFilter?: TimestampFilter | undefined;
|
|
3927
3927
|
/**
|
|
3928
3928
|
* <p>The maximum number of results to return in this request.</p>
|
|
3929
3929
|
* @public
|
|
3930
3930
|
*/
|
|
3931
|
-
MaxResults?: number;
|
|
3931
|
+
MaxResults?: number | undefined;
|
|
3932
3932
|
/**
|
|
3933
3933
|
* <p>A pagination token to request the next page of results.</p>
|
|
3934
3934
|
* @public
|
|
3935
3935
|
*/
|
|
3936
|
-
NextToken?: string;
|
|
3936
|
+
NextToken?: string | undefined;
|
|
3937
3937
|
}
|
|
3938
3938
|
/**
|
|
3939
3939
|
* @public
|
|
@@ -3957,12 +3957,12 @@ export interface RunIdentifier {
|
|
|
3957
3957
|
* <p>The Run ID.</p>
|
|
3958
3958
|
* @public
|
|
3959
3959
|
*/
|
|
3960
|
-
RunId?: string;
|
|
3960
|
+
RunId?: string | undefined;
|
|
3961
3961
|
/**
|
|
3962
3962
|
* <p>The Job Run ID.</p>
|
|
3963
3963
|
* @public
|
|
3964
3964
|
*/
|
|
3965
|
-
JobRunId?: string;
|
|
3965
|
+
JobRunId?: string | undefined;
|
|
3966
3966
|
}
|
|
3967
3967
|
/**
|
|
3968
3968
|
* <p>Summary information about a statistic.</p>
|
|
@@ -3973,58 +3973,58 @@ export interface StatisticSummary {
|
|
|
3973
3973
|
* <p>The Statistic ID.</p>
|
|
3974
3974
|
* @public
|
|
3975
3975
|
*/
|
|
3976
|
-
StatisticId?: string;
|
|
3976
|
+
StatisticId?: string | undefined;
|
|
3977
3977
|
/**
|
|
3978
3978
|
* <p>The Profile ID.</p>
|
|
3979
3979
|
* @public
|
|
3980
3980
|
*/
|
|
3981
|
-
ProfileId?: string;
|
|
3981
|
+
ProfileId?: string | undefined;
|
|
3982
3982
|
/**
|
|
3983
3983
|
* <p>The Run Identifier</p>
|
|
3984
3984
|
* @public
|
|
3985
3985
|
*/
|
|
3986
|
-
RunIdentifier?: RunIdentifier;
|
|
3986
|
+
RunIdentifier?: RunIdentifier | undefined;
|
|
3987
3987
|
/**
|
|
3988
3988
|
* <p>The name of the statistic.</p>
|
|
3989
3989
|
* @public
|
|
3990
3990
|
*/
|
|
3991
|
-
StatisticName?: string;
|
|
3991
|
+
StatisticName?: string | undefined;
|
|
3992
3992
|
/**
|
|
3993
3993
|
* <p>The value of the statistic.</p>
|
|
3994
3994
|
* @public
|
|
3995
3995
|
*/
|
|
3996
|
-
DoubleValue?: number;
|
|
3996
|
+
DoubleValue?: number | undefined;
|
|
3997
3997
|
/**
|
|
3998
3998
|
* <p>The evaluation level of the statistic. Possible values: <code>Dataset</code>, <code>Column</code>, <code>Multicolumn</code>.</p>
|
|
3999
3999
|
* @public
|
|
4000
4000
|
*/
|
|
4001
|
-
EvaluationLevel?: StatisticEvaluationLevel;
|
|
4001
|
+
EvaluationLevel?: StatisticEvaluationLevel | undefined;
|
|
4002
4002
|
/**
|
|
4003
4003
|
* <p>The list of columns referenced by the statistic.</p>
|
|
4004
4004
|
* @public
|
|
4005
4005
|
*/
|
|
4006
|
-
ColumnsReferenced?: string[];
|
|
4006
|
+
ColumnsReferenced?: string[] | undefined;
|
|
4007
4007
|
/**
|
|
4008
4008
|
* <p>The list of datasets referenced by the statistic.</p>
|
|
4009
4009
|
* @public
|
|
4010
4010
|
*/
|
|
4011
|
-
ReferencedDatasets?: string[];
|
|
4011
|
+
ReferencedDatasets?: string[] | undefined;
|
|
4012
4012
|
/**
|
|
4013
4013
|
* <p>A <code>StatisticPropertiesMap</code>, which contains a <code>NameString</code> and <code>DescriptionString</code>
|
|
4014
4014
|
* </p>
|
|
4015
4015
|
* @public
|
|
4016
4016
|
*/
|
|
4017
|
-
StatisticProperties?: Record<string, string
|
|
4017
|
+
StatisticProperties?: Record<string, string> | undefined;
|
|
4018
4018
|
/**
|
|
4019
4019
|
* <p>The timestamp when the statistic was recorded.</p>
|
|
4020
4020
|
* @public
|
|
4021
4021
|
*/
|
|
4022
|
-
RecordedOn?: Date;
|
|
4022
|
+
RecordedOn?: Date | undefined;
|
|
4023
4023
|
/**
|
|
4024
4024
|
* <p>The inclusion annotation for the statistic.</p>
|
|
4025
4025
|
* @public
|
|
4026
4026
|
*/
|
|
4027
|
-
InclusionAnnotation?: TimestampedInclusionAnnotation;
|
|
4027
|
+
InclusionAnnotation?: TimestampedInclusionAnnotation | undefined;
|
|
4028
4028
|
}
|
|
4029
4029
|
/**
|
|
4030
4030
|
* @public
|
|
@@ -4034,12 +4034,12 @@ export interface ListDataQualityStatisticsResponse {
|
|
|
4034
4034
|
* <p>A <code>StatisticSummaryList</code>.</p>
|
|
4035
4035
|
* @public
|
|
4036
4036
|
*/
|
|
4037
|
-
Statistics?: StatisticSummary[];
|
|
4037
|
+
Statistics?: StatisticSummary[] | undefined;
|
|
4038
4038
|
/**
|
|
4039
4039
|
* <p>A pagination token to request the next page of results.</p>
|
|
4040
4040
|
* @public
|
|
4041
4041
|
*/
|
|
4042
|
-
NextToken?: string;
|
|
4042
|
+
NextToken?: string | undefined;
|
|
4043
4043
|
}
|
|
4044
4044
|
/**
|
|
4045
4045
|
* @public
|
|
@@ -4049,17 +4049,17 @@ export interface ListDevEndpointsRequest {
|
|
|
4049
4049
|
* <p>A continuation token, if this is a continuation request.</p>
|
|
4050
4050
|
* @public
|
|
4051
4051
|
*/
|
|
4052
|
-
NextToken?: string;
|
|
4052
|
+
NextToken?: string | undefined;
|
|
4053
4053
|
/**
|
|
4054
4054
|
* <p>The maximum size of a list to return.</p>
|
|
4055
4055
|
* @public
|
|
4056
4056
|
*/
|
|
4057
|
-
MaxResults?: number;
|
|
4057
|
+
MaxResults?: number | undefined;
|
|
4058
4058
|
/**
|
|
4059
4059
|
* <p>Specifies to return only these tagged resources.</p>
|
|
4060
4060
|
* @public
|
|
4061
4061
|
*/
|
|
4062
|
-
Tags?: Record<string, string
|
|
4062
|
+
Tags?: Record<string, string> | undefined;
|
|
4063
4063
|
}
|
|
4064
4064
|
/**
|
|
4065
4065
|
* @public
|
|
@@ -4070,13 +4070,13 @@ export interface ListDevEndpointsResponse {
|
|
|
4070
4070
|
* <code>DevEndpoint</code>s with the specified tags.</p>
|
|
4071
4071
|
* @public
|
|
4072
4072
|
*/
|
|
4073
|
-
DevEndpointNames?: string[];
|
|
4073
|
+
DevEndpointNames?: string[] | undefined;
|
|
4074
4074
|
/**
|
|
4075
4075
|
* <p>A continuation token, if the returned list does not contain the
|
|
4076
4076
|
* last metric available.</p>
|
|
4077
4077
|
* @public
|
|
4078
4078
|
*/
|
|
4079
|
-
NextToken?: string;
|
|
4079
|
+
NextToken?: string | undefined;
|
|
4080
4080
|
}
|
|
4081
4081
|
/**
|
|
4082
4082
|
* @public
|
|
@@ -4086,17 +4086,17 @@ export interface ListJobsRequest {
|
|
|
4086
4086
|
* <p>A continuation token, if this is a continuation request.</p>
|
|
4087
4087
|
* @public
|
|
4088
4088
|
*/
|
|
4089
|
-
NextToken?: string;
|
|
4089
|
+
NextToken?: string | undefined;
|
|
4090
4090
|
/**
|
|
4091
4091
|
* <p>The maximum size of a list to return.</p>
|
|
4092
4092
|
* @public
|
|
4093
4093
|
*/
|
|
4094
|
-
MaxResults?: number;
|
|
4094
|
+
MaxResults?: number | undefined;
|
|
4095
4095
|
/**
|
|
4096
4096
|
* <p>Specifies to return only these tagged resources.</p>
|
|
4097
4097
|
* @public
|
|
4098
4098
|
*/
|
|
4099
|
-
Tags?: Record<string, string
|
|
4099
|
+
Tags?: Record<string, string> | undefined;
|
|
4100
4100
|
}
|
|
4101
4101
|
/**
|
|
4102
4102
|
* @public
|
|
@@ -4106,13 +4106,13 @@ export interface ListJobsResponse {
|
|
|
4106
4106
|
* <p>The names of all jobs in the account, or the jobs with the specified tags.</p>
|
|
4107
4107
|
* @public
|
|
4108
4108
|
*/
|
|
4109
|
-
JobNames?: string[];
|
|
4109
|
+
JobNames?: string[] | undefined;
|
|
4110
4110
|
/**
|
|
4111
4111
|
* <p>A continuation token, if the returned list does not contain the
|
|
4112
4112
|
* last metric available.</p>
|
|
4113
4113
|
* @public
|
|
4114
4114
|
*/
|
|
4115
|
-
NextToken?: string;
|
|
4115
|
+
NextToken?: string | undefined;
|
|
4116
4116
|
}
|
|
4117
4117
|
/**
|
|
4118
4118
|
* @public
|
|
@@ -4122,27 +4122,27 @@ export interface ListMLTransformsRequest {
|
|
|
4122
4122
|
* <p>A continuation token, if this is a continuation request.</p>
|
|
4123
4123
|
* @public
|
|
4124
4124
|
*/
|
|
4125
|
-
NextToken?: string;
|
|
4125
|
+
NextToken?: string | undefined;
|
|
4126
4126
|
/**
|
|
4127
4127
|
* <p>The maximum size of a list to return.</p>
|
|
4128
4128
|
* @public
|
|
4129
4129
|
*/
|
|
4130
|
-
MaxResults?: number;
|
|
4130
|
+
MaxResults?: number | undefined;
|
|
4131
4131
|
/**
|
|
4132
4132
|
* <p>A <code>TransformFilterCriteria</code> used to filter the machine learning transforms.</p>
|
|
4133
4133
|
* @public
|
|
4134
4134
|
*/
|
|
4135
|
-
Filter?: TransformFilterCriteria;
|
|
4135
|
+
Filter?: TransformFilterCriteria | undefined;
|
|
4136
4136
|
/**
|
|
4137
4137
|
* <p>A <code>TransformSortCriteria</code> used to sort the machine learning transforms.</p>
|
|
4138
4138
|
* @public
|
|
4139
4139
|
*/
|
|
4140
|
-
Sort?: TransformSortCriteria;
|
|
4140
|
+
Sort?: TransformSortCriteria | undefined;
|
|
4141
4141
|
/**
|
|
4142
4142
|
* <p>Specifies to return only these tagged resources.</p>
|
|
4143
4143
|
* @public
|
|
4144
4144
|
*/
|
|
4145
|
-
Tags?: Record<string, string
|
|
4145
|
+
Tags?: Record<string, string> | undefined;
|
|
4146
4146
|
}
|
|
4147
4147
|
/**
|
|
4148
4148
|
* @public
|
|
@@ -4159,7 +4159,7 @@ export interface ListMLTransformsResponse {
|
|
|
4159
4159
|
* last metric available.</p>
|
|
4160
4160
|
* @public
|
|
4161
4161
|
*/
|
|
4162
|
-
NextToken?: string;
|
|
4162
|
+
NextToken?: string | undefined;
|
|
4163
4163
|
}
|
|
4164
4164
|
/**
|
|
4165
4165
|
* @public
|
|
@@ -4169,12 +4169,12 @@ export interface ListRegistriesInput {
|
|
|
4169
4169
|
* <p>Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.</p>
|
|
4170
4170
|
* @public
|
|
4171
4171
|
*/
|
|
4172
|
-
MaxResults?: number;
|
|
4172
|
+
MaxResults?: number | undefined;
|
|
4173
4173
|
/**
|
|
4174
4174
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
4175
4175
|
* @public
|
|
4176
4176
|
*/
|
|
4177
|
-
NextToken?: string;
|
|
4177
|
+
NextToken?: string | undefined;
|
|
4178
4178
|
}
|
|
4179
4179
|
/**
|
|
4180
4180
|
* <p>A structure containing the details for a registry.</p>
|
|
@@ -4185,32 +4185,32 @@ export interface RegistryListItem {
|
|
|
4185
4185
|
* <p>The name of the registry.</p>
|
|
4186
4186
|
* @public
|
|
4187
4187
|
*/
|
|
4188
|
-
RegistryName?: string;
|
|
4188
|
+
RegistryName?: string | undefined;
|
|
4189
4189
|
/**
|
|
4190
4190
|
* <p>The Amazon Resource Name (ARN) of the registry.</p>
|
|
4191
4191
|
* @public
|
|
4192
4192
|
*/
|
|
4193
|
-
RegistryArn?: string;
|
|
4193
|
+
RegistryArn?: string | undefined;
|
|
4194
4194
|
/**
|
|
4195
4195
|
* <p>A description of the registry.</p>
|
|
4196
4196
|
* @public
|
|
4197
4197
|
*/
|
|
4198
|
-
Description?: string;
|
|
4198
|
+
Description?: string | undefined;
|
|
4199
4199
|
/**
|
|
4200
4200
|
* <p>The status of the registry.</p>
|
|
4201
4201
|
* @public
|
|
4202
4202
|
*/
|
|
4203
|
-
Status?: RegistryStatus;
|
|
4203
|
+
Status?: RegistryStatus | undefined;
|
|
4204
4204
|
/**
|
|
4205
4205
|
* <p>The data the registry was created.</p>
|
|
4206
4206
|
* @public
|
|
4207
4207
|
*/
|
|
4208
|
-
CreatedTime?: string;
|
|
4208
|
+
CreatedTime?: string | undefined;
|
|
4209
4209
|
/**
|
|
4210
4210
|
* <p>The date the registry was updated.</p>
|
|
4211
4211
|
* @public
|
|
4212
4212
|
*/
|
|
4213
|
-
UpdatedTime?: string;
|
|
4213
|
+
UpdatedTime?: string | undefined;
|
|
4214
4214
|
}
|
|
4215
4215
|
/**
|
|
4216
4216
|
* @public
|
|
@@ -4220,12 +4220,12 @@ export interface ListRegistriesResponse {
|
|
|
4220
4220
|
* <p>An array of <code>RegistryDetailedListItem</code> objects containing minimal details of each registry.</p>
|
|
4221
4221
|
* @public
|
|
4222
4222
|
*/
|
|
4223
|
-
Registries?: RegistryListItem[];
|
|
4223
|
+
Registries?: RegistryListItem[] | undefined;
|
|
4224
4224
|
/**
|
|
4225
4225
|
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
4226
4226
|
* @public
|
|
4227
4227
|
*/
|
|
4228
|
-
NextToken?: string;
|
|
4228
|
+
NextToken?: string | undefined;
|
|
4229
4229
|
}
|
|
4230
4230
|
/**
|
|
4231
4231
|
* @public
|
|
@@ -4235,17 +4235,17 @@ export interface ListSchemasInput {
|
|
|
4235
4235
|
* <p>A wrapper structure that may contain the registry name and Amazon Resource Name (ARN).</p>
|
|
4236
4236
|
* @public
|
|
4237
4237
|
*/
|
|
4238
|
-
RegistryId?: RegistryId;
|
|
4238
|
+
RegistryId?: RegistryId | undefined;
|
|
4239
4239
|
/**
|
|
4240
4240
|
* <p>Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.</p>
|
|
4241
4241
|
* @public
|
|
4242
4242
|
*/
|
|
4243
|
-
MaxResults?: number;
|
|
4243
|
+
MaxResults?: number | undefined;
|
|
4244
4244
|
/**
|
|
4245
4245
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
4246
4246
|
* @public
|
|
4247
4247
|
*/
|
|
4248
|
-
NextToken?: string;
|
|
4248
|
+
NextToken?: string | undefined;
|
|
4249
4249
|
}
|
|
4250
4250
|
/**
|
|
4251
4251
|
* <p>An object that contains minimal details for a schema.</p>
|
|
@@ -4256,37 +4256,37 @@ export interface SchemaListItem {
|
|
|
4256
4256
|
* <p>the name of the registry where the schema resides.</p>
|
|
4257
4257
|
* @public
|
|
4258
4258
|
*/
|
|
4259
|
-
RegistryName?: string;
|
|
4259
|
+
RegistryName?: string | undefined;
|
|
4260
4260
|
/**
|
|
4261
4261
|
* <p>The name of the schema.</p>
|
|
4262
4262
|
* @public
|
|
4263
4263
|
*/
|
|
4264
|
-
SchemaName?: string;
|
|
4264
|
+
SchemaName?: string | undefined;
|
|
4265
4265
|
/**
|
|
4266
4266
|
* <p>The Amazon Resource Name (ARN) for the schema.</p>
|
|
4267
4267
|
* @public
|
|
4268
4268
|
*/
|
|
4269
|
-
SchemaArn?: string;
|
|
4269
|
+
SchemaArn?: string | undefined;
|
|
4270
4270
|
/**
|
|
4271
4271
|
* <p>A description for the schema.</p>
|
|
4272
4272
|
* @public
|
|
4273
4273
|
*/
|
|
4274
|
-
Description?: string;
|
|
4274
|
+
Description?: string | undefined;
|
|
4275
4275
|
/**
|
|
4276
4276
|
* <p>The status of the schema.</p>
|
|
4277
4277
|
* @public
|
|
4278
4278
|
*/
|
|
4279
|
-
SchemaStatus?: SchemaStatus;
|
|
4279
|
+
SchemaStatus?: SchemaStatus | undefined;
|
|
4280
4280
|
/**
|
|
4281
4281
|
* <p>The date and time that a schema was created.</p>
|
|
4282
4282
|
* @public
|
|
4283
4283
|
*/
|
|
4284
|
-
CreatedTime?: string;
|
|
4284
|
+
CreatedTime?: string | undefined;
|
|
4285
4285
|
/**
|
|
4286
4286
|
* <p>The date and time that a schema was updated.</p>
|
|
4287
4287
|
* @public
|
|
4288
4288
|
*/
|
|
4289
|
-
UpdatedTime?: string;
|
|
4289
|
+
UpdatedTime?: string | undefined;
|
|
4290
4290
|
}
|
|
4291
4291
|
/**
|
|
4292
4292
|
* @public
|
|
@@ -4296,12 +4296,12 @@ export interface ListSchemasResponse {
|
|
|
4296
4296
|
* <p>An array of <code>SchemaListItem</code> objects containing details of each schema.</p>
|
|
4297
4297
|
* @public
|
|
4298
4298
|
*/
|
|
4299
|
-
Schemas?: SchemaListItem[];
|
|
4299
|
+
Schemas?: SchemaListItem[] | undefined;
|
|
4300
4300
|
/**
|
|
4301
4301
|
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
4302
4302
|
* @public
|
|
4303
4303
|
*/
|
|
4304
|
-
NextToken?: string;
|
|
4304
|
+
NextToken?: string | undefined;
|
|
4305
4305
|
}
|
|
4306
4306
|
/**
|
|
4307
4307
|
* @public
|
|
@@ -4324,12 +4324,12 @@ export interface ListSchemaVersionsInput {
|
|
|
4324
4324
|
* <p>Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.</p>
|
|
4325
4325
|
* @public
|
|
4326
4326
|
*/
|
|
4327
|
-
MaxResults?: number;
|
|
4327
|
+
MaxResults?: number | undefined;
|
|
4328
4328
|
/**
|
|
4329
4329
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
4330
4330
|
* @public
|
|
4331
4331
|
*/
|
|
4332
|
-
NextToken?: string;
|
|
4332
|
+
NextToken?: string | undefined;
|
|
4333
4333
|
}
|
|
4334
4334
|
/**
|
|
4335
4335
|
* <p>An object containing the details about a schema version.</p>
|
|
@@ -4340,27 +4340,27 @@ export interface SchemaVersionListItem {
|
|
|
4340
4340
|
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
4341
4341
|
* @public
|
|
4342
4342
|
*/
|
|
4343
|
-
SchemaArn?: string;
|
|
4343
|
+
SchemaArn?: string | undefined;
|
|
4344
4344
|
/**
|
|
4345
4345
|
* <p>The unique identifier of the schema version.</p>
|
|
4346
4346
|
* @public
|
|
4347
4347
|
*/
|
|
4348
|
-
SchemaVersionId?: string;
|
|
4348
|
+
SchemaVersionId?: string | undefined;
|
|
4349
4349
|
/**
|
|
4350
4350
|
* <p>The version number of the schema.</p>
|
|
4351
4351
|
* @public
|
|
4352
4352
|
*/
|
|
4353
|
-
VersionNumber?: number;
|
|
4353
|
+
VersionNumber?: number | undefined;
|
|
4354
4354
|
/**
|
|
4355
4355
|
* <p>The status of the schema version.</p>
|
|
4356
4356
|
* @public
|
|
4357
4357
|
*/
|
|
4358
|
-
Status?: SchemaVersionStatus;
|
|
4358
|
+
Status?: SchemaVersionStatus | undefined;
|
|
4359
4359
|
/**
|
|
4360
4360
|
* <p>The date and time the schema version was created.</p>
|
|
4361
4361
|
* @public
|
|
4362
4362
|
*/
|
|
4363
|
-
CreatedTime?: string;
|
|
4363
|
+
CreatedTime?: string | undefined;
|
|
4364
4364
|
}
|
|
4365
4365
|
/**
|
|
4366
4366
|
* @public
|
|
@@ -4370,12 +4370,12 @@ export interface ListSchemaVersionsResponse {
|
|
|
4370
4370
|
* <p>An array of <code>SchemaVersionList</code> objects containing details of each schema version.</p>
|
|
4371
4371
|
* @public
|
|
4372
4372
|
*/
|
|
4373
|
-
Schemas?: SchemaVersionListItem[];
|
|
4373
|
+
Schemas?: SchemaVersionListItem[] | undefined;
|
|
4374
4374
|
/**
|
|
4375
4375
|
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
4376
4376
|
* @public
|
|
4377
4377
|
*/
|
|
4378
|
-
NextToken?: string;
|
|
4378
|
+
NextToken?: string | undefined;
|
|
4379
4379
|
}
|
|
4380
4380
|
/**
|
|
4381
4381
|
* @public
|
|
@@ -4385,22 +4385,22 @@ export interface ListSessionsRequest {
|
|
|
4385
4385
|
* <p>The token for the next set of results, or null if there are no more result. </p>
|
|
4386
4386
|
* @public
|
|
4387
4387
|
*/
|
|
4388
|
-
NextToken?: string;
|
|
4388
|
+
NextToken?: string | undefined;
|
|
4389
4389
|
/**
|
|
4390
4390
|
* <p>The maximum number of results. </p>
|
|
4391
4391
|
* @public
|
|
4392
4392
|
*/
|
|
4393
|
-
MaxResults?: number;
|
|
4393
|
+
MaxResults?: number | undefined;
|
|
4394
4394
|
/**
|
|
4395
4395
|
* <p>Tags belonging to the session. </p>
|
|
4396
4396
|
* @public
|
|
4397
4397
|
*/
|
|
4398
|
-
Tags?: Record<string, string
|
|
4398
|
+
Tags?: Record<string, string> | undefined;
|
|
4399
4399
|
/**
|
|
4400
4400
|
* <p>The origin of the request. </p>
|
|
4401
4401
|
* @public
|
|
4402
4402
|
*/
|
|
4403
|
-
RequestOrigin?: string;
|
|
4403
|
+
RequestOrigin?: string | undefined;
|
|
4404
4404
|
}
|
|
4405
4405
|
/**
|
|
4406
4406
|
* @public
|
|
@@ -4410,17 +4410,17 @@ export interface ListSessionsResponse {
|
|
|
4410
4410
|
* <p>Returns the ID of the session. </p>
|
|
4411
4411
|
* @public
|
|
4412
4412
|
*/
|
|
4413
|
-
Ids?: string[];
|
|
4413
|
+
Ids?: string[] | undefined;
|
|
4414
4414
|
/**
|
|
4415
4415
|
* <p>Returns the session object. </p>
|
|
4416
4416
|
* @public
|
|
4417
4417
|
*/
|
|
4418
|
-
Sessions?: Session[];
|
|
4418
|
+
Sessions?: Session[] | undefined;
|
|
4419
4419
|
/**
|
|
4420
4420
|
* <p>The token for the next set of results, or null if there are no more result. </p>
|
|
4421
4421
|
* @public
|
|
4422
4422
|
*/
|
|
4423
|
-
NextToken?: string;
|
|
4423
|
+
NextToken?: string | undefined;
|
|
4424
4424
|
}
|
|
4425
4425
|
/**
|
|
4426
4426
|
* @public
|
|
@@ -4435,12 +4435,12 @@ export interface ListStatementsRequest {
|
|
|
4435
4435
|
* <p>The origin of the request to list statements.</p>
|
|
4436
4436
|
* @public
|
|
4437
4437
|
*/
|
|
4438
|
-
RequestOrigin?: string;
|
|
4438
|
+
RequestOrigin?: string | undefined;
|
|
4439
4439
|
/**
|
|
4440
4440
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
4441
4441
|
* @public
|
|
4442
4442
|
*/
|
|
4443
|
-
NextToken?: string;
|
|
4443
|
+
NextToken?: string | undefined;
|
|
4444
4444
|
}
|
|
4445
4445
|
/**
|
|
4446
4446
|
* @public
|
|
@@ -4450,12 +4450,12 @@ export interface ListStatementsResponse {
|
|
|
4450
4450
|
* <p>Returns the list of statements.</p>
|
|
4451
4451
|
* @public
|
|
4452
4452
|
*/
|
|
4453
|
-
Statements?: Statement[];
|
|
4453
|
+
Statements?: Statement[] | undefined;
|
|
4454
4454
|
/**
|
|
4455
4455
|
* <p>A continuation token, if not all statements have yet been returned.</p>
|
|
4456
4456
|
* @public
|
|
4457
4457
|
*/
|
|
4458
|
-
NextToken?: string;
|
|
4458
|
+
NextToken?: string | undefined;
|
|
4459
4459
|
}
|
|
4460
4460
|
/**
|
|
4461
4461
|
* @public
|
|
@@ -4485,12 +4485,12 @@ export interface ListTableOptimizerRunsRequest {
|
|
|
4485
4485
|
* <p>The maximum number of optimizer runs to return on each call.</p>
|
|
4486
4486
|
* @public
|
|
4487
4487
|
*/
|
|
4488
|
-
MaxResults?: number;
|
|
4488
|
+
MaxResults?: number | undefined;
|
|
4489
4489
|
/**
|
|
4490
4490
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
4491
4491
|
* @public
|
|
4492
4492
|
*/
|
|
4493
|
-
NextToken?: string;
|
|
4493
|
+
NextToken?: string | undefined;
|
|
4494
4494
|
}
|
|
4495
4495
|
/**
|
|
4496
4496
|
* @public
|
|
@@ -4500,27 +4500,27 @@ export interface ListTableOptimizerRunsResponse {
|
|
|
4500
4500
|
* <p>The Catalog ID of the table.</p>
|
|
4501
4501
|
* @public
|
|
4502
4502
|
*/
|
|
4503
|
-
CatalogId?: string;
|
|
4503
|
+
CatalogId?: string | undefined;
|
|
4504
4504
|
/**
|
|
4505
4505
|
* <p>The name of the database in the catalog in which the table resides.</p>
|
|
4506
4506
|
* @public
|
|
4507
4507
|
*/
|
|
4508
|
-
DatabaseName?: string;
|
|
4508
|
+
DatabaseName?: string | undefined;
|
|
4509
4509
|
/**
|
|
4510
4510
|
* <p>The name of the table.</p>
|
|
4511
4511
|
* @public
|
|
4512
4512
|
*/
|
|
4513
|
-
TableName?: string;
|
|
4513
|
+
TableName?: string | undefined;
|
|
4514
4514
|
/**
|
|
4515
4515
|
* <p>A continuation token for paginating the returned list of optimizer runs, returned if the current segment of the list is not the last.</p>
|
|
4516
4516
|
* @public
|
|
4517
4517
|
*/
|
|
4518
|
-
NextToken?: string;
|
|
4518
|
+
NextToken?: string | undefined;
|
|
4519
4519
|
/**
|
|
4520
4520
|
* <p>A list of the optimizer runs associated with a table.</p>
|
|
4521
4521
|
* @public
|
|
4522
4522
|
*/
|
|
4523
|
-
TableOptimizerRuns?: TableOptimizerRun[];
|
|
4523
|
+
TableOptimizerRuns?: TableOptimizerRun[] | undefined;
|
|
4524
4524
|
}
|
|
4525
4525
|
/**
|
|
4526
4526
|
* @public
|
|
@@ -4530,23 +4530,23 @@ export interface ListTriggersRequest {
|
|
|
4530
4530
|
* <p>A continuation token, if this is a continuation request.</p>
|
|
4531
4531
|
* @public
|
|
4532
4532
|
*/
|
|
4533
|
-
NextToken?: string;
|
|
4533
|
+
NextToken?: string | undefined;
|
|
4534
4534
|
/**
|
|
4535
4535
|
* <p> The name of the job for which to retrieve triggers. The trigger that can start this job
|
|
4536
4536
|
* is returned. If there is no such trigger, all triggers are returned.</p>
|
|
4537
4537
|
* @public
|
|
4538
4538
|
*/
|
|
4539
|
-
DependentJobName?: string;
|
|
4539
|
+
DependentJobName?: string | undefined;
|
|
4540
4540
|
/**
|
|
4541
4541
|
* <p>The maximum size of a list to return.</p>
|
|
4542
4542
|
* @public
|
|
4543
4543
|
*/
|
|
4544
|
-
MaxResults?: number;
|
|
4544
|
+
MaxResults?: number | undefined;
|
|
4545
4545
|
/**
|
|
4546
4546
|
* <p>Specifies to return only these tagged resources.</p>
|
|
4547
4547
|
* @public
|
|
4548
4548
|
*/
|
|
4549
|
-
Tags?: Record<string, string
|
|
4549
|
+
Tags?: Record<string, string> | undefined;
|
|
4550
4550
|
}
|
|
4551
4551
|
/**
|
|
4552
4552
|
* @public
|
|
@@ -4556,13 +4556,13 @@ export interface ListTriggersResponse {
|
|
|
4556
4556
|
* <p>The names of all triggers in the account, or the triggers with the specified tags.</p>
|
|
4557
4557
|
* @public
|
|
4558
4558
|
*/
|
|
4559
|
-
TriggerNames?: string[];
|
|
4559
|
+
TriggerNames?: string[] | undefined;
|
|
4560
4560
|
/**
|
|
4561
4561
|
* <p>A continuation token, if the returned list does not contain the
|
|
4562
4562
|
* last metric available.</p>
|
|
4563
4563
|
* @public
|
|
4564
4564
|
*/
|
|
4565
|
-
NextToken?: string;
|
|
4565
|
+
NextToken?: string | undefined;
|
|
4566
4566
|
}
|
|
4567
4567
|
/**
|
|
4568
4568
|
* @public
|
|
@@ -4572,12 +4572,12 @@ export interface ListUsageProfilesRequest {
|
|
|
4572
4572
|
* <p>A continuation token, included if this is a continuation call.</p>
|
|
4573
4573
|
* @public
|
|
4574
4574
|
*/
|
|
4575
|
-
NextToken?: string;
|
|
4575
|
+
NextToken?: string | undefined;
|
|
4576
4576
|
/**
|
|
4577
4577
|
* <p>The maximum number of usage profiles to return in a single response.</p>
|
|
4578
4578
|
* @public
|
|
4579
4579
|
*/
|
|
4580
|
-
MaxResults?: number;
|
|
4580
|
+
MaxResults?: number | undefined;
|
|
4581
4581
|
}
|
|
4582
4582
|
/**
|
|
4583
4583
|
* <p>Describes an Glue usage profile.</p>
|
|
@@ -4588,22 +4588,22 @@ export interface UsageProfileDefinition {
|
|
|
4588
4588
|
* <p>The name of the usage profile.</p>
|
|
4589
4589
|
* @public
|
|
4590
4590
|
*/
|
|
4591
|
-
Name?: string;
|
|
4591
|
+
Name?: string | undefined;
|
|
4592
4592
|
/**
|
|
4593
4593
|
* <p>A description of the usage profile.</p>
|
|
4594
4594
|
* @public
|
|
4595
4595
|
*/
|
|
4596
|
-
Description?: string;
|
|
4596
|
+
Description?: string | undefined;
|
|
4597
4597
|
/**
|
|
4598
4598
|
* <p>The date and time when the usage profile was created.</p>
|
|
4599
4599
|
* @public
|
|
4600
4600
|
*/
|
|
4601
|
-
CreatedOn?: Date;
|
|
4601
|
+
CreatedOn?: Date | undefined;
|
|
4602
4602
|
/**
|
|
4603
4603
|
* <p>The date and time when the usage profile was last modified.</p>
|
|
4604
4604
|
* @public
|
|
4605
4605
|
*/
|
|
4606
|
-
LastModifiedOn?: Date;
|
|
4606
|
+
LastModifiedOn?: Date | undefined;
|
|
4607
4607
|
}
|
|
4608
4608
|
/**
|
|
4609
4609
|
* @public
|
|
@@ -4613,12 +4613,12 @@ export interface ListUsageProfilesResponse {
|
|
|
4613
4613
|
* <p>A list of usage profile (<code>UsageProfileDefinition</code>) objects.</p>
|
|
4614
4614
|
* @public
|
|
4615
4615
|
*/
|
|
4616
|
-
Profiles?: UsageProfileDefinition[];
|
|
4616
|
+
Profiles?: UsageProfileDefinition[] | undefined;
|
|
4617
4617
|
/**
|
|
4618
4618
|
* <p>A continuation token, present if the current list segment is not the last.</p>
|
|
4619
4619
|
* @public
|
|
4620
4620
|
*/
|
|
4621
|
-
NextToken?: string;
|
|
4621
|
+
NextToken?: string | undefined;
|
|
4622
4622
|
}
|
|
4623
4623
|
/**
|
|
4624
4624
|
* @public
|
|
@@ -4628,12 +4628,12 @@ export interface ListWorkflowsRequest {
|
|
|
4628
4628
|
* <p>A continuation token, if this is a continuation request.</p>
|
|
4629
4629
|
* @public
|
|
4630
4630
|
*/
|
|
4631
|
-
NextToken?: string;
|
|
4631
|
+
NextToken?: string | undefined;
|
|
4632
4632
|
/**
|
|
4633
4633
|
* <p>The maximum size of a list to return.</p>
|
|
4634
4634
|
* @public
|
|
4635
4635
|
*/
|
|
4636
|
-
MaxResults?: number;
|
|
4636
|
+
MaxResults?: number | undefined;
|
|
4637
4637
|
}
|
|
4638
4638
|
/**
|
|
4639
4639
|
* @public
|
|
@@ -4643,12 +4643,12 @@ export interface ListWorkflowsResponse {
|
|
|
4643
4643
|
* <p>List of names of workflows in the account.</p>
|
|
4644
4644
|
* @public
|
|
4645
4645
|
*/
|
|
4646
|
-
Workflows?: string[];
|
|
4646
|
+
Workflows?: string[] | undefined;
|
|
4647
4647
|
/**
|
|
4648
4648
|
* <p>A continuation token, if not all workflow names have been returned.</p>
|
|
4649
4649
|
* @public
|
|
4650
4650
|
*/
|
|
4651
|
-
NextToken?: string;
|
|
4651
|
+
NextToken?: string | undefined;
|
|
4652
4652
|
}
|
|
4653
4653
|
/**
|
|
4654
4654
|
* @public
|
|
@@ -4659,7 +4659,7 @@ export interface PutDataCatalogEncryptionSettingsRequest {
|
|
|
4659
4659
|
* Amazon Web Services account ID is used by default.</p>
|
|
4660
4660
|
* @public
|
|
4661
4661
|
*/
|
|
4662
|
-
CatalogId?: string;
|
|
4662
|
+
CatalogId?: string | undefined;
|
|
4663
4663
|
/**
|
|
4664
4664
|
* <p>The security configuration to set.</p>
|
|
4665
4665
|
* @public
|
|
@@ -4730,21 +4730,21 @@ export interface PutResourcePolicyRequest {
|
|
|
4730
4730
|
* <p>Do not use. For internal use only.</p>
|
|
4731
4731
|
* @public
|
|
4732
4732
|
*/
|
|
4733
|
-
ResourceArn?: string;
|
|
4733
|
+
ResourceArn?: string | undefined;
|
|
4734
4734
|
/**
|
|
4735
4735
|
* <p>The hash value returned when the previous policy was set using
|
|
4736
4736
|
* <code>PutResourcePolicy</code>. Its purpose is to prevent concurrent modifications of a
|
|
4737
4737
|
* policy. Do not use this parameter if no previous policy has been set.</p>
|
|
4738
4738
|
* @public
|
|
4739
4739
|
*/
|
|
4740
|
-
PolicyHashCondition?: string;
|
|
4740
|
+
PolicyHashCondition?: string | undefined;
|
|
4741
4741
|
/**
|
|
4742
4742
|
* <p>A value of <code>MUST_EXIST</code> is used to update a policy. A value of
|
|
4743
4743
|
* <code>NOT_EXIST</code> is used to create a new policy. If a value of <code>NONE</code> or a
|
|
4744
4744
|
* null value is used, the call does not depend on the existence of a policy.</p>
|
|
4745
4745
|
* @public
|
|
4746
4746
|
*/
|
|
4747
|
-
PolicyExistsCondition?: ExistCondition;
|
|
4747
|
+
PolicyExistsCondition?: ExistCondition | undefined;
|
|
4748
4748
|
/**
|
|
4749
4749
|
* <p>If <code>'TRUE'</code>, indicates that you are using both methods to grant cross-account
|
|
4750
4750
|
* access to Data Catalog resources:</p>
|
|
@@ -4761,7 +4761,7 @@ export interface PutResourcePolicyRequest {
|
|
|
4761
4761
|
* grant cross-account access, otherwise the call fails. Default is 'FALSE'.</p>
|
|
4762
4762
|
* @public
|
|
4763
4763
|
*/
|
|
4764
|
-
EnableHybrid?: EnableHybridValues;
|
|
4764
|
+
EnableHybrid?: EnableHybridValues | undefined;
|
|
4765
4765
|
}
|
|
4766
4766
|
/**
|
|
4767
4767
|
* @public
|
|
@@ -4773,7 +4773,7 @@ export interface PutResourcePolicyResponse {
|
|
|
4773
4773
|
* this policy.</p>
|
|
4774
4774
|
* @public
|
|
4775
4775
|
*/
|
|
4776
|
-
PolicyHash?: string;
|
|
4776
|
+
PolicyHash?: string | undefined;
|
|
4777
4777
|
}
|
|
4778
4778
|
/**
|
|
4779
4779
|
* <p>A structure containing a key value pair for metadata.</p>
|
|
@@ -4784,12 +4784,12 @@ export interface MetadataKeyValuePair {
|
|
|
4784
4784
|
* <p>A metadata key.</p>
|
|
4785
4785
|
* @public
|
|
4786
4786
|
*/
|
|
4787
|
-
MetadataKey?: string;
|
|
4787
|
+
MetadataKey?: string | undefined;
|
|
4788
4788
|
/**
|
|
4789
4789
|
* <p>A metadata key’s corresponding value.</p>
|
|
4790
4790
|
* @public
|
|
4791
4791
|
*/
|
|
4792
|
-
MetadataValue?: string;
|
|
4792
|
+
MetadataValue?: string | undefined;
|
|
4793
4793
|
}
|
|
4794
4794
|
/**
|
|
4795
4795
|
* @public
|
|
@@ -4799,17 +4799,17 @@ export interface PutSchemaVersionMetadataInput {
|
|
|
4799
4799
|
* <p>The unique ID for the schema.</p>
|
|
4800
4800
|
* @public
|
|
4801
4801
|
*/
|
|
4802
|
-
SchemaId?: SchemaId;
|
|
4802
|
+
SchemaId?: SchemaId | undefined;
|
|
4803
4803
|
/**
|
|
4804
4804
|
* <p>The version number of the schema.</p>
|
|
4805
4805
|
* @public
|
|
4806
4806
|
*/
|
|
4807
|
-
SchemaVersionNumber?: SchemaVersionNumber;
|
|
4807
|
+
SchemaVersionNumber?: SchemaVersionNumber | undefined;
|
|
4808
4808
|
/**
|
|
4809
4809
|
* <p>The unique version ID of the schema version.</p>
|
|
4810
4810
|
* @public
|
|
4811
4811
|
*/
|
|
4812
|
-
SchemaVersionId?: string;
|
|
4812
|
+
SchemaVersionId?: string | undefined;
|
|
4813
4813
|
/**
|
|
4814
4814
|
* <p>The metadata key's corresponding value.</p>
|
|
4815
4815
|
* @public
|
|
@@ -4824,42 +4824,42 @@ export interface PutSchemaVersionMetadataResponse {
|
|
|
4824
4824
|
* <p>The Amazon Resource Name (ARN) for the schema.</p>
|
|
4825
4825
|
* @public
|
|
4826
4826
|
*/
|
|
4827
|
-
SchemaArn?: string;
|
|
4827
|
+
SchemaArn?: string | undefined;
|
|
4828
4828
|
/**
|
|
4829
4829
|
* <p>The name for the schema.</p>
|
|
4830
4830
|
* @public
|
|
4831
4831
|
*/
|
|
4832
|
-
SchemaName?: string;
|
|
4832
|
+
SchemaName?: string | undefined;
|
|
4833
4833
|
/**
|
|
4834
4834
|
* <p>The name for the registry.</p>
|
|
4835
4835
|
* @public
|
|
4836
4836
|
*/
|
|
4837
|
-
RegistryName?: string;
|
|
4837
|
+
RegistryName?: string | undefined;
|
|
4838
4838
|
/**
|
|
4839
4839
|
* <p>The latest version of the schema.</p>
|
|
4840
4840
|
* @public
|
|
4841
4841
|
*/
|
|
4842
|
-
LatestVersion?: boolean;
|
|
4842
|
+
LatestVersion?: boolean | undefined;
|
|
4843
4843
|
/**
|
|
4844
4844
|
* <p>The version number of the schema.</p>
|
|
4845
4845
|
* @public
|
|
4846
4846
|
*/
|
|
4847
|
-
VersionNumber?: number;
|
|
4847
|
+
VersionNumber?: number | undefined;
|
|
4848
4848
|
/**
|
|
4849
4849
|
* <p>The unique version ID of the schema version.</p>
|
|
4850
4850
|
* @public
|
|
4851
4851
|
*/
|
|
4852
|
-
SchemaVersionId?: string;
|
|
4852
|
+
SchemaVersionId?: string | undefined;
|
|
4853
4853
|
/**
|
|
4854
4854
|
* <p>The metadata key.</p>
|
|
4855
4855
|
* @public
|
|
4856
4856
|
*/
|
|
4857
|
-
MetadataKey?: string;
|
|
4857
|
+
MetadataKey?: string | undefined;
|
|
4858
4858
|
/**
|
|
4859
4859
|
* <p>The value of the metadata key.</p>
|
|
4860
4860
|
* @public
|
|
4861
4861
|
*/
|
|
4862
|
-
MetadataValue?: string;
|
|
4862
|
+
MetadataValue?: string | undefined;
|
|
4863
4863
|
}
|
|
4864
4864
|
/**
|
|
4865
4865
|
* @public
|
|
@@ -4894,32 +4894,32 @@ export interface QuerySchemaVersionMetadataInput {
|
|
|
4894
4894
|
* <p>A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).</p>
|
|
4895
4895
|
* @public
|
|
4896
4896
|
*/
|
|
4897
|
-
SchemaId?: SchemaId;
|
|
4897
|
+
SchemaId?: SchemaId | undefined;
|
|
4898
4898
|
/**
|
|
4899
4899
|
* <p>The version number of the schema.</p>
|
|
4900
4900
|
* @public
|
|
4901
4901
|
*/
|
|
4902
|
-
SchemaVersionNumber?: SchemaVersionNumber;
|
|
4902
|
+
SchemaVersionNumber?: SchemaVersionNumber | undefined;
|
|
4903
4903
|
/**
|
|
4904
4904
|
* <p>The unique version ID of the schema version.</p>
|
|
4905
4905
|
* @public
|
|
4906
4906
|
*/
|
|
4907
|
-
SchemaVersionId?: string;
|
|
4907
|
+
SchemaVersionId?: string | undefined;
|
|
4908
4908
|
/**
|
|
4909
4909
|
* <p>Search key-value pairs for metadata, if they are not provided all the metadata information will be fetched.</p>
|
|
4910
4910
|
* @public
|
|
4911
4911
|
*/
|
|
4912
|
-
MetadataList?: MetadataKeyValuePair[];
|
|
4912
|
+
MetadataList?: MetadataKeyValuePair[] | undefined;
|
|
4913
4913
|
/**
|
|
4914
4914
|
* <p>Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.</p>
|
|
4915
4915
|
* @public
|
|
4916
4916
|
*/
|
|
4917
|
-
MaxResults?: number;
|
|
4917
|
+
MaxResults?: number | undefined;
|
|
4918
4918
|
/**
|
|
4919
4919
|
* <p>A continuation token, if this is a continuation call.</p>
|
|
4920
4920
|
* @public
|
|
4921
4921
|
*/
|
|
4922
|
-
NextToken?: string;
|
|
4922
|
+
NextToken?: string | undefined;
|
|
4923
4923
|
}
|
|
4924
4924
|
/**
|
|
4925
4925
|
* <p>A structure containing other metadata for a schema version belonging to the same metadata key.</p>
|
|
@@ -4930,12 +4930,12 @@ export interface OtherMetadataValueListItem {
|
|
|
4930
4930
|
* <p>The metadata key’s corresponding value for the other metadata belonging to the same metadata key.</p>
|
|
4931
4931
|
* @public
|
|
4932
4932
|
*/
|
|
4933
|
-
MetadataValue?: string;
|
|
4933
|
+
MetadataValue?: string | undefined;
|
|
4934
4934
|
/**
|
|
4935
4935
|
* <p>The time at which the entry was created.</p>
|
|
4936
4936
|
* @public
|
|
4937
4937
|
*/
|
|
4938
|
-
CreatedTime?: string;
|
|
4938
|
+
CreatedTime?: string | undefined;
|
|
4939
4939
|
}
|
|
4940
4940
|
/**
|
|
4941
4941
|
* <p>A structure containing metadata information for a schema version.</p>
|
|
@@ -4946,17 +4946,17 @@ export interface MetadataInfo {
|
|
|
4946
4946
|
* <p>The metadata key’s corresponding value.</p>
|
|
4947
4947
|
* @public
|
|
4948
4948
|
*/
|
|
4949
|
-
MetadataValue?: string;
|
|
4949
|
+
MetadataValue?: string | undefined;
|
|
4950
4950
|
/**
|
|
4951
4951
|
* <p>The time at which the entry was created.</p>
|
|
4952
4952
|
* @public
|
|
4953
4953
|
*/
|
|
4954
|
-
CreatedTime?: string;
|
|
4954
|
+
CreatedTime?: string | undefined;
|
|
4955
4955
|
/**
|
|
4956
4956
|
* <p>Other metadata belonging to the same metadata key.</p>
|
|
4957
4957
|
* @public
|
|
4958
4958
|
*/
|
|
4959
|
-
OtherMetadataValueList?: OtherMetadataValueListItem[];
|
|
4959
|
+
OtherMetadataValueList?: OtherMetadataValueListItem[] | undefined;
|
|
4960
4960
|
}
|
|
4961
4961
|
/**
|
|
4962
4962
|
* @public
|
|
@@ -4966,17 +4966,17 @@ export interface QuerySchemaVersionMetadataResponse {
|
|
|
4966
4966
|
* <p>A map of a metadata key and associated values.</p>
|
|
4967
4967
|
* @public
|
|
4968
4968
|
*/
|
|
4969
|
-
MetadataInfoMap?: Record<string, MetadataInfo
|
|
4969
|
+
MetadataInfoMap?: Record<string, MetadataInfo> | undefined;
|
|
4970
4970
|
/**
|
|
4971
4971
|
* <p>The unique version ID of the schema version.</p>
|
|
4972
4972
|
* @public
|
|
4973
4973
|
*/
|
|
4974
|
-
SchemaVersionId?: string;
|
|
4974
|
+
SchemaVersionId?: string | undefined;
|
|
4975
4975
|
/**
|
|
4976
4976
|
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
4977
4977
|
* @public
|
|
4978
4978
|
*/
|
|
4979
|
-
NextToken?: string;
|
|
4979
|
+
NextToken?: string | undefined;
|
|
4980
4980
|
}
|
|
4981
4981
|
/**
|
|
4982
4982
|
* @public
|
|
@@ -5009,17 +5009,17 @@ export interface RegisterSchemaVersionResponse {
|
|
|
5009
5009
|
* <p>The unique ID that represents the version of this schema.</p>
|
|
5010
5010
|
* @public
|
|
5011
5011
|
*/
|
|
5012
|
-
SchemaVersionId?: string;
|
|
5012
|
+
SchemaVersionId?: string | undefined;
|
|
5013
5013
|
/**
|
|
5014
5014
|
* <p>The version of this schema (for sync flow only, in case this is the first version).</p>
|
|
5015
5015
|
* @public
|
|
5016
5016
|
*/
|
|
5017
|
-
VersionNumber?: number;
|
|
5017
|
+
VersionNumber?: number | undefined;
|
|
5018
5018
|
/**
|
|
5019
5019
|
* <p>The status of the schema version.</p>
|
|
5020
5020
|
* @public
|
|
5021
5021
|
*/
|
|
5022
|
-
Status?: SchemaVersionStatus;
|
|
5022
|
+
Status?: SchemaVersionStatus | undefined;
|
|
5023
5023
|
}
|
|
5024
5024
|
/**
|
|
5025
5025
|
* @public
|
|
@@ -5029,17 +5029,17 @@ export interface RemoveSchemaVersionMetadataInput {
|
|
|
5029
5029
|
* <p>A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).</p>
|
|
5030
5030
|
* @public
|
|
5031
5031
|
*/
|
|
5032
|
-
SchemaId?: SchemaId;
|
|
5032
|
+
SchemaId?: SchemaId | undefined;
|
|
5033
5033
|
/**
|
|
5034
5034
|
* <p>The version number of the schema.</p>
|
|
5035
5035
|
* @public
|
|
5036
5036
|
*/
|
|
5037
|
-
SchemaVersionNumber?: SchemaVersionNumber;
|
|
5037
|
+
SchemaVersionNumber?: SchemaVersionNumber | undefined;
|
|
5038
5038
|
/**
|
|
5039
5039
|
* <p>The unique version ID of the schema version.</p>
|
|
5040
5040
|
* @public
|
|
5041
5041
|
*/
|
|
5042
|
-
SchemaVersionId?: string;
|
|
5042
|
+
SchemaVersionId?: string | undefined;
|
|
5043
5043
|
/**
|
|
5044
5044
|
* <p>The value of the metadata key.</p>
|
|
5045
5045
|
* @public
|
|
@@ -5054,42 +5054,42 @@ export interface RemoveSchemaVersionMetadataResponse {
|
|
|
5054
5054
|
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
5055
5055
|
* @public
|
|
5056
5056
|
*/
|
|
5057
|
-
SchemaArn?: string;
|
|
5057
|
+
SchemaArn?: string | undefined;
|
|
5058
5058
|
/**
|
|
5059
5059
|
* <p>The name of the schema.</p>
|
|
5060
5060
|
* @public
|
|
5061
5061
|
*/
|
|
5062
|
-
SchemaName?: string;
|
|
5062
|
+
SchemaName?: string | undefined;
|
|
5063
5063
|
/**
|
|
5064
5064
|
* <p>The name of the registry.</p>
|
|
5065
5065
|
* @public
|
|
5066
5066
|
*/
|
|
5067
|
-
RegistryName?: string;
|
|
5067
|
+
RegistryName?: string | undefined;
|
|
5068
5068
|
/**
|
|
5069
5069
|
* <p>The latest version of the schema.</p>
|
|
5070
5070
|
* @public
|
|
5071
5071
|
*/
|
|
5072
|
-
LatestVersion?: boolean;
|
|
5072
|
+
LatestVersion?: boolean | undefined;
|
|
5073
5073
|
/**
|
|
5074
5074
|
* <p>The version number of the schema.</p>
|
|
5075
5075
|
* @public
|
|
5076
5076
|
*/
|
|
5077
|
-
VersionNumber?: number;
|
|
5077
|
+
VersionNumber?: number | undefined;
|
|
5078
5078
|
/**
|
|
5079
5079
|
* <p>The version ID for the schema version.</p>
|
|
5080
5080
|
* @public
|
|
5081
5081
|
*/
|
|
5082
|
-
SchemaVersionId?: string;
|
|
5082
|
+
SchemaVersionId?: string | undefined;
|
|
5083
5083
|
/**
|
|
5084
5084
|
* <p>The metadata key.</p>
|
|
5085
5085
|
* @public
|
|
5086
5086
|
*/
|
|
5087
|
-
MetadataKey?: string;
|
|
5087
|
+
MetadataKey?: string | undefined;
|
|
5088
5088
|
/**
|
|
5089
5089
|
* <p>The value of the metadata key.</p>
|
|
5090
5090
|
* @public
|
|
5091
5091
|
*/
|
|
5092
|
-
MetadataValue?: string;
|
|
5092
|
+
MetadataValue?: string | undefined;
|
|
5093
5093
|
}
|
|
5094
5094
|
/**
|
|
5095
5095
|
* @public
|
|
@@ -5104,7 +5104,7 @@ export interface ResetJobBookmarkRequest {
|
|
|
5104
5104
|
* <p>The unique run identifier associated with this job run.</p>
|
|
5105
5105
|
* @public
|
|
5106
5106
|
*/
|
|
5107
|
-
RunId?: string;
|
|
5107
|
+
RunId?: string | undefined;
|
|
5108
5108
|
}
|
|
5109
5109
|
/**
|
|
5110
5110
|
* @public
|
|
@@ -5114,7 +5114,7 @@ export interface ResetJobBookmarkResponse {
|
|
|
5114
5114
|
* <p>The reset bookmark entry.</p>
|
|
5115
5115
|
* @public
|
|
5116
5116
|
*/
|
|
5117
|
-
JobBookmarkEntry?: JobBookmarkEntry;
|
|
5117
|
+
JobBookmarkEntry?: JobBookmarkEntry | undefined;
|
|
5118
5118
|
}
|
|
5119
5119
|
/**
|
|
5120
5120
|
* <p>Too many jobs are being run concurrently.</p>
|
|
@@ -5127,7 +5127,7 @@ export declare class ConcurrentRunsExceededException extends __BaseException {
|
|
|
5127
5127
|
* <p>A message describing the problem.</p>
|
|
5128
5128
|
* @public
|
|
5129
5129
|
*/
|
|
5130
|
-
Message?: string;
|
|
5130
|
+
Message?: string | undefined;
|
|
5131
5131
|
/**
|
|
5132
5132
|
* @internal
|
|
5133
5133
|
*/
|
|
@@ -5144,7 +5144,7 @@ export declare class IllegalWorkflowStateException extends __BaseException {
|
|
|
5144
5144
|
* <p>A message describing the problem.</p>
|
|
5145
5145
|
* @public
|
|
5146
5146
|
*/
|
|
5147
|
-
Message?: string;
|
|
5147
|
+
Message?: string | undefined;
|
|
5148
5148
|
/**
|
|
5149
5149
|
* @internal
|
|
5150
5150
|
*/
|
|
@@ -5178,12 +5178,12 @@ export interface ResumeWorkflowRunResponse {
|
|
|
5178
5178
|
* <p>The new ID assigned to the resumed workflow run. Each resume of a workflow run will have a new run ID.</p>
|
|
5179
5179
|
* @public
|
|
5180
5180
|
*/
|
|
5181
|
-
RunId?: string;
|
|
5181
|
+
RunId?: string | undefined;
|
|
5182
5182
|
/**
|
|
5183
5183
|
* <p>A list of the node IDs for the nodes that were actually restarted.</p>
|
|
5184
5184
|
* @public
|
|
5185
5185
|
*/
|
|
5186
|
-
NodeIds?: string[];
|
|
5186
|
+
NodeIds?: string[] | undefined;
|
|
5187
5187
|
}
|
|
5188
5188
|
/**
|
|
5189
5189
|
* @public
|
|
@@ -5203,7 +5203,7 @@ export interface RunStatementRequest {
|
|
|
5203
5203
|
* <p>The origin of the request.</p>
|
|
5204
5204
|
* @public
|
|
5205
5205
|
*/
|
|
5206
|
-
RequestOrigin?: string;
|
|
5206
|
+
RequestOrigin?: string | undefined;
|
|
5207
5207
|
}
|
|
5208
5208
|
/**
|
|
5209
5209
|
* @public
|
|
@@ -5213,7 +5213,7 @@ export interface RunStatementResponse {
|
|
|
5213
5213
|
* <p>Returns the Id of the statement that was run.</p>
|
|
5214
5214
|
* @public
|
|
5215
5215
|
*/
|
|
5216
|
-
Id?: number;
|
|
5216
|
+
Id?: number | undefined;
|
|
5217
5217
|
}
|
|
5218
5218
|
/**
|
|
5219
5219
|
* @public
|
|
@@ -5239,17 +5239,17 @@ export interface PropertyPredicate {
|
|
|
5239
5239
|
* <p>The key of the property.</p>
|
|
5240
5240
|
* @public
|
|
5241
5241
|
*/
|
|
5242
|
-
Key?: string;
|
|
5242
|
+
Key?: string | undefined;
|
|
5243
5243
|
/**
|
|
5244
5244
|
* <p>The value of the property.</p>
|
|
5245
5245
|
* @public
|
|
5246
5246
|
*/
|
|
5247
|
-
Value?: string;
|
|
5247
|
+
Value?: string | undefined;
|
|
5248
5248
|
/**
|
|
5249
5249
|
* <p>The comparator used to compare this property to others.</p>
|
|
5250
5250
|
* @public
|
|
5251
5251
|
*/
|
|
5252
|
-
Comparator?: Comparator;
|
|
5252
|
+
Comparator?: Comparator | undefined;
|
|
5253
5253
|
}
|
|
5254
5254
|
/**
|
|
5255
5255
|
* @public
|
|
@@ -5272,12 +5272,12 @@ export interface SortCriterion {
|
|
|
5272
5272
|
* <p>The name of the field on which to sort.</p>
|
|
5273
5273
|
* @public
|
|
5274
5274
|
*/
|
|
5275
|
-
FieldName?: string;
|
|
5275
|
+
FieldName?: string | undefined;
|
|
5276
5276
|
/**
|
|
5277
5277
|
* <p>An ascending or descending sort.</p>
|
|
5278
5278
|
* @public
|
|
5279
5279
|
*/
|
|
5280
|
-
Sort?: Sort;
|
|
5280
|
+
Sort?: Sort | undefined;
|
|
5281
5281
|
}
|
|
5282
5282
|
/**
|
|
5283
5283
|
* @public
|
|
@@ -5289,34 +5289,34 @@ export interface SearchTablesRequest {
|
|
|
5289
5289
|
* </code>.</p>
|
|
5290
5290
|
* @public
|
|
5291
5291
|
*/
|
|
5292
|
-
CatalogId?: string;
|
|
5292
|
+
CatalogId?: string | undefined;
|
|
5293
5293
|
/**
|
|
5294
5294
|
* <p>A continuation token, included if this is a continuation call.</p>
|
|
5295
5295
|
* @public
|
|
5296
5296
|
*/
|
|
5297
|
-
NextToken?: string;
|
|
5297
|
+
NextToken?: string | undefined;
|
|
5298
5298
|
/**
|
|
5299
5299
|
* <p>A list of key-value pairs, and a comparator used to filter the search results. Returns all entities matching the predicate.</p>
|
|
5300
5300
|
* <p>The <code>Comparator</code> member of the <code>PropertyPredicate</code> struct is used only for time fields, and can be omitted for other field types. Also, when comparing string values, such as when <code>Key=Name</code>, a fuzzy match algorithm is used. The <code>Key</code> field (for example, the value of the <code>Name</code> field) is split on certain punctuation characters, for example, -, :, #, etc. into tokens. Then each token is exact-match compared with the <code>Value</code> member of <code>PropertyPredicate</code>. For example, if <code>Key=Name</code> and <code>Value=link</code>, tables named <code>customer-link</code> and <code>xx-link-yy</code> are returned, but <code>xxlinkyy</code> is not returned.</p>
|
|
5301
5301
|
* @public
|
|
5302
5302
|
*/
|
|
5303
|
-
Filters?: PropertyPredicate[];
|
|
5303
|
+
Filters?: PropertyPredicate[] | undefined;
|
|
5304
5304
|
/**
|
|
5305
5305
|
* <p>A string used for a text search.</p>
|
|
5306
5306
|
* <p>Specifying a value in quotes filters based on an exact match to the value.</p>
|
|
5307
5307
|
* @public
|
|
5308
5308
|
*/
|
|
5309
|
-
SearchText?: string;
|
|
5309
|
+
SearchText?: string | undefined;
|
|
5310
5310
|
/**
|
|
5311
5311
|
* <p>A list of criteria for sorting the results by a field name, in an ascending or descending order.</p>
|
|
5312
5312
|
* @public
|
|
5313
5313
|
*/
|
|
5314
|
-
SortCriteria?: SortCriterion[];
|
|
5314
|
+
SortCriteria?: SortCriterion[] | undefined;
|
|
5315
5315
|
/**
|
|
5316
5316
|
* <p>The maximum number of tables to return in a single response.</p>
|
|
5317
5317
|
* @public
|
|
5318
5318
|
*/
|
|
5319
|
-
MaxResults?: number;
|
|
5319
|
+
MaxResults?: number | undefined;
|
|
5320
5320
|
/**
|
|
5321
5321
|
* <p>Allows you to specify that you want to search the tables shared with your account. The allowable values are <code>FOREIGN</code> or <code>ALL</code>. </p>
|
|
5322
5322
|
* <ul>
|
|
@@ -5329,12 +5329,12 @@ export interface SearchTablesRequest {
|
|
|
5329
5329
|
* </ul>
|
|
5330
5330
|
* @public
|
|
5331
5331
|
*/
|
|
5332
|
-
ResourceShareType?: ResourceShareType;
|
|
5332
|
+
ResourceShareType?: ResourceShareType | undefined;
|
|
5333
5333
|
/**
|
|
5334
5334
|
* <p>Specifies whether to include status details related to a request to create or update an Glue Data Catalog view.</p>
|
|
5335
5335
|
* @public
|
|
5336
5336
|
*/
|
|
5337
|
-
IncludeStatusDetails?: boolean;
|
|
5337
|
+
IncludeStatusDetails?: boolean | undefined;
|
|
5338
5338
|
}
|
|
5339
5339
|
/**
|
|
5340
5340
|
* <p>The blueprint is in an invalid state to perform a requested operation.</p>
|
|
@@ -5347,7 +5347,7 @@ export declare class IllegalBlueprintStateException extends __BaseException {
|
|
|
5347
5347
|
* <p>A message describing the problem.</p>
|
|
5348
5348
|
* @public
|
|
5349
5349
|
*/
|
|
5350
|
-
Message?: string;
|
|
5350
|
+
Message?: string | undefined;
|
|
5351
5351
|
/**
|
|
5352
5352
|
* @internal
|
|
5353
5353
|
*/
|
|
@@ -5366,7 +5366,7 @@ export interface StartBlueprintRunRequest {
|
|
|
5366
5366
|
* <p>Specifies the parameters as a <code>BlueprintParameters</code> object.</p>
|
|
5367
5367
|
* @public
|
|
5368
5368
|
*/
|
|
5369
|
-
Parameters?: string;
|
|
5369
|
+
Parameters?: string | undefined;
|
|
5370
5370
|
/**
|
|
5371
5371
|
* <p>Specifies the IAM role used to create the workflow.</p>
|
|
5372
5372
|
* @public
|
|
@@ -5381,7 +5381,7 @@ export interface StartBlueprintRunResponse {
|
|
|
5381
5381
|
* <p>The run ID for this blueprint run.</p>
|
|
5382
5382
|
* @public
|
|
5383
5383
|
*/
|
|
5384
|
-
RunId?: string;
|
|
5384
|
+
RunId?: string | undefined;
|
|
5385
5385
|
}
|
|
5386
5386
|
/**
|
|
5387
5387
|
* @public
|
|
@@ -5401,7 +5401,7 @@ export interface StartColumnStatisticsTaskRunRequest {
|
|
|
5401
5401
|
* <p>A list of the column names to generate statistics. If none is supplied, all column names for the table will be used by default.</p>
|
|
5402
5402
|
* @public
|
|
5403
5403
|
*/
|
|
5404
|
-
ColumnNameList?: string[];
|
|
5404
|
+
ColumnNameList?: string[] | undefined;
|
|
5405
5405
|
/**
|
|
5406
5406
|
* <p>The IAM role that the service assumes to generate statistics.</p>
|
|
5407
5407
|
* @public
|
|
@@ -5411,17 +5411,17 @@ export interface StartColumnStatisticsTaskRunRequest {
|
|
|
5411
5411
|
* <p>The percentage of rows used to generate statistics. If none is supplied, the entire table will be used to generate stats.</p>
|
|
5412
5412
|
* @public
|
|
5413
5413
|
*/
|
|
5414
|
-
SampleSize?: number;
|
|
5414
|
+
SampleSize?: number | undefined;
|
|
5415
5415
|
/**
|
|
5416
5416
|
* <p>The ID of the Data Catalog where the table reside. If none is supplied, the Amazon Web Services account ID is used by default.</p>
|
|
5417
5417
|
* @public
|
|
5418
5418
|
*/
|
|
5419
|
-
CatalogID?: string;
|
|
5419
|
+
CatalogID?: string | undefined;
|
|
5420
5420
|
/**
|
|
5421
5421
|
* <p>Name of the security configuration that is used to encrypt CloudWatch logs for the column stats task run.</p>
|
|
5422
5422
|
* @public
|
|
5423
5423
|
*/
|
|
5424
|
-
SecurityConfiguration?: string;
|
|
5424
|
+
SecurityConfiguration?: string | undefined;
|
|
5425
5425
|
}
|
|
5426
5426
|
/**
|
|
5427
5427
|
* @public
|
|
@@ -5431,7 +5431,7 @@ export interface StartColumnStatisticsTaskRunResponse {
|
|
|
5431
5431
|
* <p>The identifier for the column statistics task run.</p>
|
|
5432
5432
|
* @public
|
|
5433
5433
|
*/
|
|
5434
|
-
ColumnStatisticsTaskRunId?: string;
|
|
5434
|
+
ColumnStatisticsTaskRunId?: string | undefined;
|
|
5435
5435
|
}
|
|
5436
5436
|
/**
|
|
5437
5437
|
* @public
|
|
@@ -5479,7 +5479,7 @@ export declare class NoScheduleException extends __BaseException {
|
|
|
5479
5479
|
* <p>A message describing the problem.</p>
|
|
5480
5480
|
* @public
|
|
5481
5481
|
*/
|
|
5482
|
-
Message?: string;
|
|
5482
|
+
Message?: string | undefined;
|
|
5483
5483
|
/**
|
|
5484
5484
|
* @internal
|
|
5485
5485
|
*/
|
|
@@ -5496,7 +5496,7 @@ export declare class SchedulerRunningException extends __BaseException {
|
|
|
5496
5496
|
* <p>A message describing the problem.</p>
|
|
5497
5497
|
* @public
|
|
5498
5498
|
*/
|
|
5499
|
-
Message?: string;
|
|
5499
|
+
Message?: string | undefined;
|
|
5500
5500
|
/**
|
|
5501
5501
|
* @internal
|
|
5502
5502
|
*/
|
|
@@ -5535,27 +5535,27 @@ export interface StartDataQualityRuleRecommendationRunRequest {
|
|
|
5535
5535
|
* <p>The number of <code>G.1X</code> workers to be used in the run. The default is 5.</p>
|
|
5536
5536
|
* @public
|
|
5537
5537
|
*/
|
|
5538
|
-
NumberOfWorkers?: number;
|
|
5538
|
+
NumberOfWorkers?: number | undefined;
|
|
5539
5539
|
/**
|
|
5540
5540
|
* <p>The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters <code>TIMEOUT</code> status. The default is 2,880 minutes (48 hours).</p>
|
|
5541
5541
|
* @public
|
|
5542
5542
|
*/
|
|
5543
|
-
Timeout?: number;
|
|
5543
|
+
Timeout?: number | undefined;
|
|
5544
5544
|
/**
|
|
5545
5545
|
* <p>A name for the ruleset.</p>
|
|
5546
5546
|
* @public
|
|
5547
5547
|
*/
|
|
5548
|
-
CreatedRulesetName?: string;
|
|
5548
|
+
CreatedRulesetName?: string | undefined;
|
|
5549
5549
|
/**
|
|
5550
5550
|
* <p>The name of the security configuration created with the data quality encryption option.</p>
|
|
5551
5551
|
* @public
|
|
5552
5552
|
*/
|
|
5553
|
-
DataQualitySecurityConfiguration?: string;
|
|
5553
|
+
DataQualitySecurityConfiguration?: string | undefined;
|
|
5554
5554
|
/**
|
|
5555
5555
|
* <p>Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.</p>
|
|
5556
5556
|
* @public
|
|
5557
5557
|
*/
|
|
5558
|
-
ClientToken?: string;
|
|
5558
|
+
ClientToken?: string | undefined;
|
|
5559
5559
|
}
|
|
5560
5560
|
/**
|
|
5561
5561
|
* @public
|
|
@@ -5565,7 +5565,7 @@ export interface StartDataQualityRuleRecommendationRunResponse {
|
|
|
5565
5565
|
* <p>The unique run identifier associated with this run.</p>
|
|
5566
5566
|
* @public
|
|
5567
5567
|
*/
|
|
5568
|
-
RunId?: string;
|
|
5568
|
+
RunId?: string | undefined;
|
|
5569
5569
|
}
|
|
5570
5570
|
/**
|
|
5571
5571
|
* @public
|
|
@@ -5585,22 +5585,22 @@ export interface StartDataQualityRulesetEvaluationRunRequest {
|
|
|
5585
5585
|
* <p>The number of <code>G.1X</code> workers to be used in the run. The default is 5.</p>
|
|
5586
5586
|
* @public
|
|
5587
5587
|
*/
|
|
5588
|
-
NumberOfWorkers?: number;
|
|
5588
|
+
NumberOfWorkers?: number | undefined;
|
|
5589
5589
|
/**
|
|
5590
5590
|
* <p>The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters <code>TIMEOUT</code> status. The default is 2,880 minutes (48 hours).</p>
|
|
5591
5591
|
* @public
|
|
5592
5592
|
*/
|
|
5593
|
-
Timeout?: number;
|
|
5593
|
+
Timeout?: number | undefined;
|
|
5594
5594
|
/**
|
|
5595
5595
|
* <p>Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.</p>
|
|
5596
5596
|
* @public
|
|
5597
5597
|
*/
|
|
5598
|
-
ClientToken?: string;
|
|
5598
|
+
ClientToken?: string | undefined;
|
|
5599
5599
|
/**
|
|
5600
5600
|
* <p>Additional run options you can specify for an evaluation run.</p>
|
|
5601
5601
|
* @public
|
|
5602
5602
|
*/
|
|
5603
|
-
AdditionalRunOptions?: DataQualityEvaluationRunAdditionalRunOptions;
|
|
5603
|
+
AdditionalRunOptions?: DataQualityEvaluationRunAdditionalRunOptions | undefined;
|
|
5604
5604
|
/**
|
|
5605
5605
|
* <p>A list of ruleset names.</p>
|
|
5606
5606
|
* @public
|
|
@@ -5610,7 +5610,7 @@ export interface StartDataQualityRulesetEvaluationRunRequest {
|
|
|
5610
5610
|
* <p>A map of reference strings to additional data sources you can specify for an evaluation run.</p>
|
|
5611
5611
|
* @public
|
|
5612
5612
|
*/
|
|
5613
|
-
AdditionalDataSources?: Record<string, DataSource
|
|
5613
|
+
AdditionalDataSources?: Record<string, DataSource> | undefined;
|
|
5614
5614
|
}
|
|
5615
5615
|
/**
|
|
5616
5616
|
* @public
|
|
@@ -5620,7 +5620,7 @@ export interface StartDataQualityRulesetEvaluationRunResponse {
|
|
|
5620
5620
|
* <p>The unique run identifier associated with this run.</p>
|
|
5621
5621
|
* @public
|
|
5622
5622
|
*/
|
|
5623
|
-
RunId?: string;
|
|
5623
|
+
RunId?: string | undefined;
|
|
5624
5624
|
}
|
|
5625
5625
|
/**
|
|
5626
5626
|
* @public
|
|
@@ -5645,7 +5645,7 @@ export interface StartExportLabelsTaskRunResponse {
|
|
|
5645
5645
|
* <p>The unique identifier for the task run.</p>
|
|
5646
5646
|
* @public
|
|
5647
5647
|
*/
|
|
5648
|
-
TaskRunId?: string;
|
|
5648
|
+
TaskRunId?: string | undefined;
|
|
5649
5649
|
}
|
|
5650
5650
|
/**
|
|
5651
5651
|
* @public
|
|
@@ -5666,7 +5666,7 @@ export interface StartImportLabelsTaskRunRequest {
|
|
|
5666
5666
|
* <p>Indicates whether to overwrite your existing labels.</p>
|
|
5667
5667
|
* @public
|
|
5668
5668
|
*/
|
|
5669
|
-
ReplaceAllLabels?: boolean;
|
|
5669
|
+
ReplaceAllLabels?: boolean | undefined;
|
|
5670
5670
|
}
|
|
5671
5671
|
/**
|
|
5672
5672
|
* @public
|
|
@@ -5676,7 +5676,7 @@ export interface StartImportLabelsTaskRunResponse {
|
|
|
5676
5676
|
* <p>The unique identifier for the task run.</p>
|
|
5677
5677
|
* @public
|
|
5678
5678
|
*/
|
|
5679
|
-
TaskRunId?: string;
|
|
5679
|
+
TaskRunId?: string | undefined;
|
|
5680
5680
|
}
|
|
5681
5681
|
/**
|
|
5682
5682
|
* @public
|
|
@@ -5692,12 +5692,12 @@ export interface StartJobRunRequest {
|
|
|
5692
5692
|
* <p>A value of true means job run queuing is enabled for the job run. If false or not populated, the job run will not be considered for queueing.</p>
|
|
5693
5693
|
* @public
|
|
5694
5694
|
*/
|
|
5695
|
-
JobRunQueuingEnabled?: boolean;
|
|
5695
|
+
JobRunQueuingEnabled?: boolean | undefined;
|
|
5696
5696
|
/**
|
|
5697
5697
|
* <p>The ID of a previous <code>JobRun</code> to retry.</p>
|
|
5698
5698
|
* @public
|
|
5699
5699
|
*/
|
|
5700
|
-
JobRunId?: string;
|
|
5700
|
+
JobRunId?: string | undefined;
|
|
5701
5701
|
/**
|
|
5702
5702
|
* <p>The job arguments associated with this run. For this job run, they replace the default
|
|
5703
5703
|
* arguments set in the job definition itself.</p>
|
|
@@ -5714,7 +5714,7 @@ export interface StartJobRunRequest {
|
|
|
5714
5714
|
* job parameters in Ray jobs</a> in the developer guide.</p>
|
|
5715
5715
|
* @public
|
|
5716
5716
|
*/
|
|
5717
|
-
Arguments?: Record<string, string
|
|
5717
|
+
Arguments?: Record<string, string> | undefined;
|
|
5718
5718
|
/**
|
|
5719
5719
|
* @deprecated
|
|
5720
5720
|
*
|
|
@@ -5726,14 +5726,14 @@ export interface StartJobRunRequest {
|
|
|
5726
5726
|
* pricing page</a>.</p>
|
|
5727
5727
|
* @public
|
|
5728
5728
|
*/
|
|
5729
|
-
AllocatedCapacity?: number;
|
|
5729
|
+
AllocatedCapacity?: number | undefined;
|
|
5730
5730
|
/**
|
|
5731
5731
|
* <p>The <code>JobRun</code> timeout in minutes. This is the maximum time that a job run can
|
|
5732
5732
|
* consume resources before it is terminated and enters <code>TIMEOUT</code> status. This value overrides the timeout value set in the parent job. </p>
|
|
5733
5733
|
* <p>Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
5734
5734
|
* @public
|
|
5735
5735
|
*/
|
|
5736
|
-
Timeout?: number;
|
|
5736
|
+
Timeout?: number | undefined;
|
|
5737
5737
|
/**
|
|
5738
5738
|
* <p>For Glue version 1.0 or earlier jobs, using the standard worker type, the number of
|
|
5739
5739
|
* Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is
|
|
@@ -5759,18 +5759,18 @@ export interface StartJobRunRequest {
|
|
|
5759
5759
|
* </ul>
|
|
5760
5760
|
* @public
|
|
5761
5761
|
*/
|
|
5762
|
-
MaxCapacity?: number;
|
|
5762
|
+
MaxCapacity?: number | undefined;
|
|
5763
5763
|
/**
|
|
5764
5764
|
* <p>The name of the <code>SecurityConfiguration</code> structure to be used with this job
|
|
5765
5765
|
* run.</p>
|
|
5766
5766
|
* @public
|
|
5767
5767
|
*/
|
|
5768
|
-
SecurityConfiguration?: string;
|
|
5768
|
+
SecurityConfiguration?: string | undefined;
|
|
5769
5769
|
/**
|
|
5770
5770
|
* <p>Specifies configuration properties of a job run notification.</p>
|
|
5771
5771
|
* @public
|
|
5772
5772
|
*/
|
|
5773
|
-
NotificationProperty?: NotificationProperty;
|
|
5773
|
+
NotificationProperty?: NotificationProperty | undefined;
|
|
5774
5774
|
/**
|
|
5775
5775
|
* <p>The type of predefined worker that is allocated when a job runs. Accepts a value of
|
|
5776
5776
|
* G.1X, G.2X, G.4X, G.8X or G.025X for Spark jobs. Accepts the value Z.2X for Ray jobs.</p>
|
|
@@ -5796,19 +5796,19 @@ export interface StartJobRunRequest {
|
|
|
5796
5796
|
* </ul>
|
|
5797
5797
|
* @public
|
|
5798
5798
|
*/
|
|
5799
|
-
WorkerType?: WorkerType;
|
|
5799
|
+
WorkerType?: WorkerType | undefined;
|
|
5800
5800
|
/**
|
|
5801
5801
|
* <p>The number of workers of a defined <code>workerType</code> that are allocated when a job runs.</p>
|
|
5802
5802
|
* @public
|
|
5803
5803
|
*/
|
|
5804
|
-
NumberOfWorkers?: number;
|
|
5804
|
+
NumberOfWorkers?: number | undefined;
|
|
5805
5805
|
/**
|
|
5806
5806
|
* <p>Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.</p>
|
|
5807
5807
|
* <p>The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. </p>
|
|
5808
5808
|
* <p>Only jobs with Glue version 3.0 and above and command type <code>glueetl</code> will be allowed to set <code>ExecutionClass</code> to <code>FLEX</code>. The flexible execution class is available for Spark jobs.</p>
|
|
5809
5809
|
* @public
|
|
5810
5810
|
*/
|
|
5811
|
-
ExecutionClass?: ExecutionClass;
|
|
5811
|
+
ExecutionClass?: ExecutionClass | undefined;
|
|
5812
5812
|
}
|
|
5813
5813
|
/**
|
|
5814
5814
|
* @public
|
|
@@ -5818,7 +5818,7 @@ export interface StartJobRunResponse {
|
|
|
5818
5818
|
* <p>The ID assigned to this job run.</p>
|
|
5819
5819
|
* @public
|
|
5820
5820
|
*/
|
|
5821
|
-
JobRunId?: string;
|
|
5821
|
+
JobRunId?: string | undefined;
|
|
5822
5822
|
}
|
|
5823
5823
|
/**
|
|
5824
5824
|
* <p>The machine learning transform is not ready to run.</p>
|
|
@@ -5831,7 +5831,7 @@ export declare class MLTransformNotReadyException extends __BaseException {
|
|
|
5831
5831
|
* <p>A message describing the problem.</p>
|
|
5832
5832
|
* @public
|
|
5833
5833
|
*/
|
|
5834
|
-
Message?: string;
|
|
5834
|
+
Message?: string | undefined;
|
|
5835
5835
|
/**
|
|
5836
5836
|
* @internal
|
|
5837
5837
|
*/
|
|
@@ -5855,7 +5855,7 @@ export interface StartMLEvaluationTaskRunResponse {
|
|
|
5855
5855
|
* <p>The unique identifier associated with this run.</p>
|
|
5856
5856
|
* @public
|
|
5857
5857
|
*/
|
|
5858
|
-
TaskRunId?: string;
|
|
5858
|
+
TaskRunId?: string | undefined;
|
|
5859
5859
|
}
|
|
5860
5860
|
/**
|
|
5861
5861
|
* @public
|
|
@@ -5881,7 +5881,7 @@ export interface StartMLLabelingSetGenerationTaskRunResponse {
|
|
|
5881
5881
|
* <p>The unique run identifier that is associated with this task run.</p>
|
|
5882
5882
|
* @public
|
|
5883
5883
|
*/
|
|
5884
|
-
TaskRunId?: string;
|
|
5884
|
+
TaskRunId?: string | undefined;
|
|
5885
5885
|
}
|
|
5886
5886
|
/**
|
|
5887
5887
|
* @public
|
|
@@ -5901,7 +5901,7 @@ export interface StartTriggerResponse {
|
|
|
5901
5901
|
* <p>The name of the trigger that was started.</p>
|
|
5902
5902
|
* @public
|
|
5903
5903
|
*/
|
|
5904
|
-
Name?: string;
|
|
5904
|
+
Name?: string | undefined;
|
|
5905
5905
|
}
|
|
5906
5906
|
/**
|
|
5907
5907
|
* @public
|
|
@@ -5916,7 +5916,7 @@ export interface StartWorkflowRunRequest {
|
|
|
5916
5916
|
* <p>The workflow run properties for the new workflow run.</p>
|
|
5917
5917
|
* @public
|
|
5918
5918
|
*/
|
|
5919
|
-
RunProperties?: Record<string, string
|
|
5919
|
+
RunProperties?: Record<string, string> | undefined;
|
|
5920
5920
|
}
|
|
5921
5921
|
/**
|
|
5922
5922
|
* @public
|
|
@@ -5926,7 +5926,7 @@ export interface StartWorkflowRunResponse {
|
|
|
5926
5926
|
* <p>An Id for the new run.</p>
|
|
5927
5927
|
* @public
|
|
5928
5928
|
*/
|
|
5929
|
-
RunId?: string;
|
|
5929
|
+
RunId?: string | undefined;
|
|
5930
5930
|
}
|
|
5931
5931
|
/**
|
|
5932
5932
|
* <p>An exception thrown when you try to stop a task run when there is no task running.</p>
|
|
@@ -5939,7 +5939,7 @@ export declare class ColumnStatisticsTaskNotRunningException extends __BaseExcep
|
|
|
5939
5939
|
* <p>A message describing the problem.</p>
|
|
5940
5940
|
* @public
|
|
5941
5941
|
*/
|
|
5942
|
-
Message?: string;
|
|
5942
|
+
Message?: string | undefined;
|
|
5943
5943
|
/**
|
|
5944
5944
|
* @internal
|
|
5945
5945
|
*/
|
|
@@ -5956,7 +5956,7 @@ export declare class ColumnStatisticsTaskStoppingException extends __BaseExcepti
|
|
|
5956
5956
|
* <p>A message describing the problem.</p>
|
|
5957
5957
|
* @public
|
|
5958
5958
|
*/
|
|
5959
|
-
Message?: string;
|
|
5959
|
+
Message?: string | undefined;
|
|
5960
5960
|
/**
|
|
5961
5961
|
* @internal
|
|
5962
5962
|
*/
|
|
@@ -6013,7 +6013,7 @@ export declare class CrawlerNotRunningException extends __BaseException {
|
|
|
6013
6013
|
* <p>A message describing the problem.</p>
|
|
6014
6014
|
* @public
|
|
6015
6015
|
*/
|
|
6016
|
-
Message?: string;
|
|
6016
|
+
Message?: string | undefined;
|
|
6017
6017
|
/**
|
|
6018
6018
|
* @internal
|
|
6019
6019
|
*/
|
|
@@ -6030,7 +6030,7 @@ export declare class CrawlerStoppingException extends __BaseException {
|
|
|
6030
6030
|
* <p>A message describing the problem.</p>
|
|
6031
6031
|
* @public
|
|
6032
6032
|
*/
|
|
6033
|
-
Message?: string;
|
|
6033
|
+
Message?: string | undefined;
|
|
6034
6034
|
/**
|
|
6035
6035
|
* @internal
|
|
6036
6036
|
*/
|
|
@@ -6062,7 +6062,7 @@ export declare class SchedulerNotRunningException extends __BaseException {
|
|
|
6062
6062
|
* <p>A message describing the problem.</p>
|
|
6063
6063
|
* @public
|
|
6064
6064
|
*/
|
|
6065
|
-
Message?: string;
|
|
6065
|
+
Message?: string | undefined;
|
|
6066
6066
|
/**
|
|
6067
6067
|
* @internal
|
|
6068
6068
|
*/
|
|
@@ -6096,7 +6096,7 @@ export interface StopSessionRequest {
|
|
|
6096
6096
|
* <p>The origin of the request.</p>
|
|
6097
6097
|
* @public
|
|
6098
6098
|
*/
|
|
6099
|
-
RequestOrigin?: string;
|
|
6099
|
+
RequestOrigin?: string | undefined;
|
|
6100
6100
|
}
|
|
6101
6101
|
/**
|
|
6102
6102
|
* @public
|
|
@@ -6106,7 +6106,7 @@ export interface StopSessionResponse {
|
|
|
6106
6106
|
* <p>Returns the Id of the stopped session.</p>
|
|
6107
6107
|
* @public
|
|
6108
6108
|
*/
|
|
6109
|
-
Id?: string;
|
|
6109
|
+
Id?: string | undefined;
|
|
6110
6110
|
}
|
|
6111
6111
|
/**
|
|
6112
6112
|
* @public
|
|
@@ -6126,7 +6126,7 @@ export interface StopTriggerResponse {
|
|
|
6126
6126
|
* <p>The name of the trigger that was stopped.</p>
|
|
6127
6127
|
* @public
|
|
6128
6128
|
*/
|
|
6129
|
-
Name?: string;
|
|
6129
|
+
Name?: string | undefined;
|
|
6130
6130
|
}
|
|
6131
6131
|
/**
|
|
6132
6132
|
* @public
|
|
@@ -6201,7 +6201,7 @@ export interface TestConnectionInput {
|
|
|
6201
6201
|
* <p>A structure containing the authentication configuration in the TestConnection request. Required for a connection to Salesforce using OAuth authentication.</p>
|
|
6202
6202
|
* @public
|
|
6203
6203
|
*/
|
|
6204
|
-
AuthenticationConfiguration?: AuthenticationConfigurationInput;
|
|
6204
|
+
AuthenticationConfiguration?: AuthenticationConfigurationInput | undefined;
|
|
6205
6205
|
}
|
|
6206
6206
|
/**
|
|
6207
6207
|
* @public
|
|
@@ -6211,12 +6211,12 @@ export interface TestConnectionRequest {
|
|
|
6211
6211
|
* <p>Optional. The name of the connection to test. If only name is provided, the operation will get the connection and use that for testing.</p>
|
|
6212
6212
|
* @public
|
|
6213
6213
|
*/
|
|
6214
|
-
ConnectionName?: string;
|
|
6214
|
+
ConnectionName?: string | undefined;
|
|
6215
6215
|
/**
|
|
6216
6216
|
* <p>A structure that is used to specify testing a connection to a service.</p>
|
|
6217
6217
|
* @public
|
|
6218
6218
|
*/
|
|
6219
|
-
TestConnectionInput?: TestConnectionInput;
|
|
6219
|
+
TestConnectionInput?: TestConnectionInput | undefined;
|
|
6220
6220
|
}
|
|
6221
6221
|
/**
|
|
6222
6222
|
* @public
|
|
@@ -6256,7 +6256,7 @@ export interface UpdateBlueprintRequest {
|
|
|
6256
6256
|
* <p>A description of the blueprint.</p>
|
|
6257
6257
|
* @public
|
|
6258
6258
|
*/
|
|
6259
|
-
Description?: string;
|
|
6259
|
+
Description?: string | undefined;
|
|
6260
6260
|
/**
|
|
6261
6261
|
* <p>Specifies a path in Amazon S3 where the blueprint is published.</p>
|
|
6262
6262
|
* @public
|
|
@@ -6271,7 +6271,7 @@ export interface UpdateBlueprintResponse {
|
|
|
6271
6271
|
* <p>Returns the name of the blueprint that was updated.</p>
|
|
6272
6272
|
* @public
|
|
6273
6273
|
*/
|
|
6274
|
-
Name?: string;
|
|
6274
|
+
Name?: string | undefined;
|
|
6275
6275
|
}
|
|
6276
6276
|
/**
|
|
6277
6277
|
* <p>Specifies a custom CSV classifier to be updated.</p>
|
|
@@ -6287,48 +6287,48 @@ export interface UpdateCsvClassifierRequest {
|
|
|
6287
6287
|
* <p>A custom symbol to denote what separates each column entry in the row.</p>
|
|
6288
6288
|
* @public
|
|
6289
6289
|
*/
|
|
6290
|
-
Delimiter?: string;
|
|
6290
|
+
Delimiter?: string | undefined;
|
|
6291
6291
|
/**
|
|
6292
6292
|
* <p>A custom symbol to denote what combines content into a single column value. It must be
|
|
6293
6293
|
* different from the column delimiter.</p>
|
|
6294
6294
|
* @public
|
|
6295
6295
|
*/
|
|
6296
|
-
QuoteSymbol?: string;
|
|
6296
|
+
QuoteSymbol?: string | undefined;
|
|
6297
6297
|
/**
|
|
6298
6298
|
* <p>Indicates whether the CSV file contains a header.</p>
|
|
6299
6299
|
* @public
|
|
6300
6300
|
*/
|
|
6301
|
-
ContainsHeader?: CsvHeaderOption;
|
|
6301
|
+
ContainsHeader?: CsvHeaderOption | undefined;
|
|
6302
6302
|
/**
|
|
6303
6303
|
* <p>A list of strings representing column names.</p>
|
|
6304
6304
|
* @public
|
|
6305
6305
|
*/
|
|
6306
|
-
Header?: string[];
|
|
6306
|
+
Header?: string[] | undefined;
|
|
6307
6307
|
/**
|
|
6308
6308
|
* <p>Specifies not to trim values before identifying the type of column values. The default value is true.</p>
|
|
6309
6309
|
* @public
|
|
6310
6310
|
*/
|
|
6311
|
-
DisableValueTrimming?: boolean;
|
|
6311
|
+
DisableValueTrimming?: boolean | undefined;
|
|
6312
6312
|
/**
|
|
6313
6313
|
* <p>Enables the processing of files that contain only one column.</p>
|
|
6314
6314
|
* @public
|
|
6315
6315
|
*/
|
|
6316
|
-
AllowSingleColumn?: boolean;
|
|
6316
|
+
AllowSingleColumn?: boolean | undefined;
|
|
6317
6317
|
/**
|
|
6318
6318
|
* <p>Specifies the configuration of custom datatypes.</p>
|
|
6319
6319
|
* @public
|
|
6320
6320
|
*/
|
|
6321
|
-
CustomDatatypeConfigured?: boolean;
|
|
6321
|
+
CustomDatatypeConfigured?: boolean | undefined;
|
|
6322
6322
|
/**
|
|
6323
6323
|
* <p>Specifies a list of supported custom datatypes.</p>
|
|
6324
6324
|
* @public
|
|
6325
6325
|
*/
|
|
6326
|
-
CustomDatatypes?: string[];
|
|
6326
|
+
CustomDatatypes?: string[] | undefined;
|
|
6327
6327
|
/**
|
|
6328
6328
|
* <p>Sets the SerDe for processing CSV in the classifier, which will be applied in the Data Catalog. Valid values are <code>OpenCSVSerDe</code>, <code>LazySimpleSerDe</code>, and <code>None</code>. You can specify the <code>None</code> value when you want the crawler to do the detection.</p>
|
|
6329
6329
|
* @public
|
|
6330
6330
|
*/
|
|
6331
|
-
Serde?: CsvSerdeOption;
|
|
6331
|
+
Serde?: CsvSerdeOption | undefined;
|
|
6332
6332
|
}
|
|
6333
6333
|
/**
|
|
6334
6334
|
* <p>Specifies a grok classifier to update when passed to
|
|
@@ -6346,17 +6346,17 @@ export interface UpdateGrokClassifierRequest {
|
|
|
6346
6346
|
* Amazon CloudWatch Logs, and so on.</p>
|
|
6347
6347
|
* @public
|
|
6348
6348
|
*/
|
|
6349
|
-
Classification?: string;
|
|
6349
|
+
Classification?: string | undefined;
|
|
6350
6350
|
/**
|
|
6351
6351
|
* <p>The grok pattern used by this classifier.</p>
|
|
6352
6352
|
* @public
|
|
6353
6353
|
*/
|
|
6354
|
-
GrokPattern?: string;
|
|
6354
|
+
GrokPattern?: string | undefined;
|
|
6355
6355
|
/**
|
|
6356
6356
|
* <p>Optional custom grok patterns used by this classifier.</p>
|
|
6357
6357
|
* @public
|
|
6358
6358
|
*/
|
|
6359
|
-
CustomPatterns?: string;
|
|
6359
|
+
CustomPatterns?: string | undefined;
|
|
6360
6360
|
}
|
|
6361
6361
|
/**
|
|
6362
6362
|
* <p>Specifies a JSON classifier to be updated.</p>
|
|
@@ -6373,7 +6373,7 @@ export interface UpdateJsonClassifierRequest {
|
|
|
6373
6373
|
* Glue supports a subset of JsonPath, as described in <a href="https://docs.aws.amazon.com/glue/latest/dg/custom-classifier.html#custom-classifier-json">Writing JsonPath Custom Classifiers</a>.</p>
|
|
6374
6374
|
* @public
|
|
6375
6375
|
*/
|
|
6376
|
-
JsonPath?: string;
|
|
6376
|
+
JsonPath?: string | undefined;
|
|
6377
6377
|
}
|
|
6378
6378
|
/**
|
|
6379
6379
|
* <p>Specifies an XML classifier to be updated.</p>
|
|
@@ -6389,7 +6389,7 @@ export interface UpdateXMLClassifierRequest {
|
|
|
6389
6389
|
* <p>An identifier of the data format that the classifier matches.</p>
|
|
6390
6390
|
* @public
|
|
6391
6391
|
*/
|
|
6392
|
-
Classification?: string;
|
|
6392
|
+
Classification?: string | undefined;
|
|
6393
6393
|
/**
|
|
6394
6394
|
* <p>The XML tag designating the element that contains each record in an XML document being
|
|
6395
6395
|
* parsed. This cannot identify a self-closing element (closed by <code>/></code>). An empty
|
|
@@ -6398,7 +6398,7 @@ export interface UpdateXMLClassifierRequest {
|
|
|
6398
6398
|
* <code><row item_a="A" item_b="B" /></code> is not).</p>
|
|
6399
6399
|
* @public
|
|
6400
6400
|
*/
|
|
6401
|
-
RowTag?: string;
|
|
6401
|
+
RowTag?: string | undefined;
|
|
6402
6402
|
}
|
|
6403
6403
|
/**
|
|
6404
6404
|
* @public
|
|
@@ -6408,22 +6408,22 @@ export interface UpdateClassifierRequest {
|
|
|
6408
6408
|
* <p>A <code>GrokClassifier</code> object with updated fields.</p>
|
|
6409
6409
|
* @public
|
|
6410
6410
|
*/
|
|
6411
|
-
GrokClassifier?: UpdateGrokClassifierRequest;
|
|
6411
|
+
GrokClassifier?: UpdateGrokClassifierRequest | undefined;
|
|
6412
6412
|
/**
|
|
6413
6413
|
* <p>An <code>XMLClassifier</code> object with updated fields.</p>
|
|
6414
6414
|
* @public
|
|
6415
6415
|
*/
|
|
6416
|
-
XMLClassifier?: UpdateXMLClassifierRequest;
|
|
6416
|
+
XMLClassifier?: UpdateXMLClassifierRequest | undefined;
|
|
6417
6417
|
/**
|
|
6418
6418
|
* <p>A <code>JsonClassifier</code> object with updated fields.</p>
|
|
6419
6419
|
* @public
|
|
6420
6420
|
*/
|
|
6421
|
-
JsonClassifier?: UpdateJsonClassifierRequest;
|
|
6421
|
+
JsonClassifier?: UpdateJsonClassifierRequest | undefined;
|
|
6422
6422
|
/**
|
|
6423
6423
|
* <p>A <code>CsvClassifier</code> object with updated fields.</p>
|
|
6424
6424
|
* @public
|
|
6425
6425
|
*/
|
|
6426
|
-
CsvClassifier?: UpdateCsvClassifierRequest;
|
|
6426
|
+
CsvClassifier?: UpdateCsvClassifierRequest | undefined;
|
|
6427
6427
|
}
|
|
6428
6428
|
/**
|
|
6429
6429
|
* @public
|
|
@@ -6441,7 +6441,7 @@ export declare class VersionMismatchException extends __BaseException {
|
|
|
6441
6441
|
* <p>A message describing the problem.</p>
|
|
6442
6442
|
* @public
|
|
6443
6443
|
*/
|
|
6444
|
-
Message?: string;
|
|
6444
|
+
Message?: string | undefined;
|
|
6445
6445
|
/**
|
|
6446
6446
|
* @internal
|
|
6447
6447
|
*/
|
|
@@ -6456,7 +6456,7 @@ export interface UpdateColumnStatisticsForPartitionRequest {
|
|
|
6456
6456
|
* If none is supplied, the Amazon Web Services account ID is used by default.</p>
|
|
6457
6457
|
* @public
|
|
6458
6458
|
*/
|
|
6459
|
-
CatalogId?: string;
|
|
6459
|
+
CatalogId?: string | undefined;
|
|
6460
6460
|
/**
|
|
6461
6461
|
* <p>The name of the catalog database where the partitions reside.</p>
|
|
6462
6462
|
* @public
|
|
@@ -6487,12 +6487,12 @@ export interface ColumnStatisticsError {
|
|
|
6487
6487
|
* <p>The <code>ColumnStatistics</code> of the column.</p>
|
|
6488
6488
|
* @public
|
|
6489
6489
|
*/
|
|
6490
|
-
ColumnStatistics?: ColumnStatistics;
|
|
6490
|
+
ColumnStatistics?: ColumnStatistics | undefined;
|
|
6491
6491
|
/**
|
|
6492
6492
|
* <p>An error message with the reason for the failure of an operation.</p>
|
|
6493
6493
|
* @public
|
|
6494
6494
|
*/
|
|
6495
|
-
Error?: ErrorDetail;
|
|
6495
|
+
Error?: ErrorDetail | undefined;
|
|
6496
6496
|
}
|
|
6497
6497
|
/**
|
|
6498
6498
|
* @public
|
|
@@ -6502,7 +6502,7 @@ export interface UpdateColumnStatisticsForPartitionResponse {
|
|
|
6502
6502
|
* <p>Error occurred during updating column statistics data.</p>
|
|
6503
6503
|
* @public
|
|
6504
6504
|
*/
|
|
6505
|
-
Errors?: ColumnStatisticsError[];
|
|
6505
|
+
Errors?: ColumnStatisticsError[] | undefined;
|
|
6506
6506
|
}
|
|
6507
6507
|
/**
|
|
6508
6508
|
* @public
|
|
@@ -6513,7 +6513,7 @@ export interface UpdateColumnStatisticsForTableRequest {
|
|
|
6513
6513
|
* If none is supplied, the Amazon Web Services account ID is used by default.</p>
|
|
6514
6514
|
* @public
|
|
6515
6515
|
*/
|
|
6516
|
-
CatalogId?: string;
|
|
6516
|
+
CatalogId?: string | undefined;
|
|
6517
6517
|
/**
|
|
6518
6518
|
* <p>The name of the catalog database where the partitions reside.</p>
|
|
6519
6519
|
* @public
|
|
@@ -6538,7 +6538,7 @@ export interface UpdateColumnStatisticsForTableResponse {
|
|
|
6538
6538
|
* <p>List of ColumnStatisticsErrors.</p>
|
|
6539
6539
|
* @public
|
|
6540
6540
|
*/
|
|
6541
|
-
Errors?: ColumnStatisticsError[];
|
|
6541
|
+
Errors?: ColumnStatisticsError[] | undefined;
|
|
6542
6542
|
}
|
|
6543
6543
|
/**
|
|
6544
6544
|
* @public
|
|
@@ -6558,32 +6558,32 @@ export interface UpdateColumnStatisticsTaskSettingsRequest {
|
|
|
6558
6558
|
* <p>The role used for running the column statistics.</p>
|
|
6559
6559
|
* @public
|
|
6560
6560
|
*/
|
|
6561
|
-
Role?: string;
|
|
6561
|
+
Role?: string | undefined;
|
|
6562
6562
|
/**
|
|
6563
6563
|
* <p>A schedule for running the column statistics, specified in CRON syntax.</p>
|
|
6564
6564
|
* @public
|
|
6565
6565
|
*/
|
|
6566
|
-
Schedule?: string;
|
|
6566
|
+
Schedule?: string | undefined;
|
|
6567
6567
|
/**
|
|
6568
6568
|
* <p>A list of column names for which to run statistics.</p>
|
|
6569
6569
|
* @public
|
|
6570
6570
|
*/
|
|
6571
|
-
ColumnNameList?: string[];
|
|
6571
|
+
ColumnNameList?: string[] | undefined;
|
|
6572
6572
|
/**
|
|
6573
6573
|
* <p>The percentage of data to sample.</p>
|
|
6574
6574
|
* @public
|
|
6575
6575
|
*/
|
|
6576
|
-
SampleSize?: number;
|
|
6576
|
+
SampleSize?: number | undefined;
|
|
6577
6577
|
/**
|
|
6578
6578
|
* <p>The ID of the Data Catalog in which the database resides.</p>
|
|
6579
6579
|
* @public
|
|
6580
6580
|
*/
|
|
6581
|
-
CatalogID?: string;
|
|
6581
|
+
CatalogID?: string | undefined;
|
|
6582
6582
|
/**
|
|
6583
6583
|
* <p>Name of the security configuration that is used to encrypt CloudWatch logs.</p>
|
|
6584
6584
|
* @public
|
|
6585
6585
|
*/
|
|
6586
|
-
SecurityConfiguration?: string;
|
|
6586
|
+
SecurityConfiguration?: string | undefined;
|
|
6587
6587
|
}
|
|
6588
6588
|
/**
|
|
6589
6589
|
* @public
|
|
@@ -6599,7 +6599,7 @@ export interface UpdateConnectionRequest {
|
|
|
6599
6599
|
* account ID is used by default.</p>
|
|
6600
6600
|
* @public
|
|
6601
6601
|
*/
|
|
6602
|
-
CatalogId?: string;
|
|
6602
|
+
CatalogId?: string | undefined;
|
|
6603
6603
|
/**
|
|
6604
6604
|
* <p>The name of the connection definition to update.</p>
|
|
6605
6605
|
* @public
|
|
@@ -6631,30 +6631,30 @@ export interface UpdateCrawlerRequest {
|
|
|
6631
6631
|
* to access customer resources.</p>
|
|
6632
6632
|
* @public
|
|
6633
6633
|
*/
|
|
6634
|
-
Role?: string;
|
|
6634
|
+
Role?: string | undefined;
|
|
6635
6635
|
/**
|
|
6636
6636
|
* <p>The Glue database where results are stored, such as:
|
|
6637
6637
|
* <code>arn:aws:daylight:us-east-1::database/sometable/*</code>.</p>
|
|
6638
6638
|
* @public
|
|
6639
6639
|
*/
|
|
6640
|
-
DatabaseName?: string;
|
|
6640
|
+
DatabaseName?: string | undefined;
|
|
6641
6641
|
/**
|
|
6642
6642
|
* <p>A description of the new crawler.</p>
|
|
6643
6643
|
* @public
|
|
6644
6644
|
*/
|
|
6645
|
-
Description?: string;
|
|
6645
|
+
Description?: string | undefined;
|
|
6646
6646
|
/**
|
|
6647
6647
|
* <p>A list of targets to crawl.</p>
|
|
6648
6648
|
* @public
|
|
6649
6649
|
*/
|
|
6650
|
-
Targets?: CrawlerTargets;
|
|
6650
|
+
Targets?: CrawlerTargets | undefined;
|
|
6651
6651
|
/**
|
|
6652
6652
|
* <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 Schedules for Jobs and Crawlers</a>. For example, to run
|
|
6653
6653
|
* something every day at 12:15 UTC, you would specify:
|
|
6654
6654
|
* <code>cron(15 12 * * ? *)</code>.</p>
|
|
6655
6655
|
* @public
|
|
6656
6656
|
*/
|
|
6657
|
-
Schedule?: string;
|
|
6657
|
+
Schedule?: string | undefined;
|
|
6658
6658
|
/**
|
|
6659
6659
|
* <p>A list of custom classifiers that the user
|
|
6660
6660
|
* has registered. By default, all built-in classifiers are included in a crawl,
|
|
@@ -6662,45 +6662,45 @@ export interface UpdateCrawlerRequest {
|
|
|
6662
6662
|
* for a given classification.</p>
|
|
6663
6663
|
* @public
|
|
6664
6664
|
*/
|
|
6665
|
-
Classifiers?: string[];
|
|
6665
|
+
Classifiers?: string[] | undefined;
|
|
6666
6666
|
/**
|
|
6667
6667
|
* <p>The table prefix used for catalog tables that are created.</p>
|
|
6668
6668
|
* @public
|
|
6669
6669
|
*/
|
|
6670
|
-
TablePrefix?: string;
|
|
6670
|
+
TablePrefix?: string | undefined;
|
|
6671
6671
|
/**
|
|
6672
6672
|
* <p>The policy for the crawler's update and deletion behavior.</p>
|
|
6673
6673
|
* @public
|
|
6674
6674
|
*/
|
|
6675
|
-
SchemaChangePolicy?: SchemaChangePolicy;
|
|
6675
|
+
SchemaChangePolicy?: SchemaChangePolicy | undefined;
|
|
6676
6676
|
/**
|
|
6677
6677
|
* <p>A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.</p>
|
|
6678
6678
|
* @public
|
|
6679
6679
|
*/
|
|
6680
|
-
RecrawlPolicy?: RecrawlPolicy;
|
|
6680
|
+
RecrawlPolicy?: RecrawlPolicy | undefined;
|
|
6681
6681
|
/**
|
|
6682
6682
|
* <p>Specifies data lineage configuration settings for the crawler.</p>
|
|
6683
6683
|
* @public
|
|
6684
6684
|
*/
|
|
6685
|
-
LineageConfiguration?: LineageConfiguration;
|
|
6685
|
+
LineageConfiguration?: LineageConfiguration | undefined;
|
|
6686
6686
|
/**
|
|
6687
6687
|
* <p>Specifies Lake Formation configuration settings for the crawler.</p>
|
|
6688
6688
|
* @public
|
|
6689
6689
|
*/
|
|
6690
|
-
LakeFormationConfiguration?: LakeFormationConfiguration;
|
|
6690
|
+
LakeFormationConfiguration?: LakeFormationConfiguration | undefined;
|
|
6691
6691
|
/**
|
|
6692
6692
|
* <p>Crawler configuration information. This versioned JSON string allows users
|
|
6693
6693
|
* to specify aspects of a crawler's behavior.
|
|
6694
6694
|
* For more information, see <a href="https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html">Setting crawler configuration options</a>.</p>
|
|
6695
6695
|
* @public
|
|
6696
6696
|
*/
|
|
6697
|
-
Configuration?: string;
|
|
6697
|
+
Configuration?: string | undefined;
|
|
6698
6698
|
/**
|
|
6699
6699
|
* <p>The name of the <code>SecurityConfiguration</code> structure to be used by this
|
|
6700
6700
|
* crawler.</p>
|
|
6701
6701
|
* @public
|
|
6702
6702
|
*/
|
|
6703
|
-
CrawlerSecurityConfiguration?: string;
|
|
6703
|
+
CrawlerSecurityConfiguration?: string | undefined;
|
|
6704
6704
|
}
|
|
6705
6705
|
/**
|
|
6706
6706
|
* @public
|
|
@@ -6722,7 +6722,7 @@ export interface UpdateCrawlerScheduleRequest {
|
|
|
6722
6722
|
* <code>cron(15 12 * * ? *)</code>.</p>
|
|
6723
6723
|
* @public
|
|
6724
6724
|
*/
|
|
6725
|
-
Schedule?: string;
|
|
6725
|
+
Schedule?: string | undefined;
|
|
6726
6726
|
}
|
|
6727
6727
|
/**
|
|
6728
6728
|
* @public
|
|
@@ -6738,7 +6738,7 @@ export interface UpdateDatabaseRequest {
|
|
|
6738
6738
|
* the Amazon Web Services account ID is used by default.</p>
|
|
6739
6739
|
* @public
|
|
6740
6740
|
*/
|
|
6741
|
-
CatalogId?: string;
|
|
6741
|
+
CatalogId?: string | undefined;
|
|
6742
6742
|
/**
|
|
6743
6743
|
* <p>The name of the database to update in the catalog. For Hive
|
|
6744
6744
|
* compatibility, this is folded to lowercase.</p>
|
|
@@ -6770,12 +6770,12 @@ export interface UpdateDataQualityRulesetRequest {
|
|
|
6770
6770
|
* <p>A description of the ruleset.</p>
|
|
6771
6771
|
* @public
|
|
6772
6772
|
*/
|
|
6773
|
-
Description?: string;
|
|
6773
|
+
Description?: string | undefined;
|
|
6774
6774
|
/**
|
|
6775
6775
|
* <p>A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.</p>
|
|
6776
6776
|
* @public
|
|
6777
6777
|
*/
|
|
6778
|
-
Ruleset?: string;
|
|
6778
|
+
Ruleset?: string | undefined;
|
|
6779
6779
|
}
|
|
6780
6780
|
/**
|
|
6781
6781
|
* @public
|
|
@@ -6785,17 +6785,17 @@ export interface UpdateDataQualityRulesetResponse {
|
|
|
6785
6785
|
* <p>The name of the data quality ruleset.</p>
|
|
6786
6786
|
* @public
|
|
6787
6787
|
*/
|
|
6788
|
-
Name?: string;
|
|
6788
|
+
Name?: string | undefined;
|
|
6789
6789
|
/**
|
|
6790
6790
|
* <p>A description of the ruleset.</p>
|
|
6791
6791
|
* @public
|
|
6792
6792
|
*/
|
|
6793
|
-
Description?: string;
|
|
6793
|
+
Description?: string | undefined;
|
|
6794
6794
|
/**
|
|
6795
6795
|
* <p>A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.</p>
|
|
6796
6796
|
* @public
|
|
6797
6797
|
*/
|
|
6798
|
-
Ruleset?: string;
|
|
6798
|
+
Ruleset?: string | undefined;
|
|
6799
6799
|
}
|
|
6800
6800
|
/**
|
|
6801
6801
|
* <p>Custom libraries to be loaded into a development endpoint.</p>
|
|
@@ -6813,7 +6813,7 @@ export interface DevEndpointCustomLibraries {
|
|
|
6813
6813
|
* </note>
|
|
6814
6814
|
* @public
|
|
6815
6815
|
*/
|
|
6816
|
-
ExtraPythonLibsS3Path?: string;
|
|
6816
|
+
ExtraPythonLibsS3Path?: string | undefined;
|
|
6817
6817
|
/**
|
|
6818
6818
|
* <p>The path to one or more Java <code>.jar</code> files in an S3 bucket that should be loaded
|
|
6819
6819
|
* in your <code>DevEndpoint</code>.</p>
|
|
@@ -6822,7 +6822,7 @@ export interface DevEndpointCustomLibraries {
|
|
|
6822
6822
|
* </note>
|
|
6823
6823
|
* @public
|
|
6824
6824
|
*/
|
|
6825
|
-
ExtraJarsS3Path?: string;
|
|
6825
|
+
ExtraJarsS3Path?: string | undefined;
|
|
6826
6826
|
}
|
|
6827
6827
|
/**
|
|
6828
6828
|
* @internal
|