@aws-sdk/client-glue 3.682.0 → 3.686.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/README.md +49 -1
- package/dist-cjs/index.js +298 -33
- package/dist-es/Glue.js +12 -0
- package/dist-es/commands/CreateColumnStatisticsTaskSettingsCommand.js +22 -0
- package/dist-es/commands/DeleteColumnStatisticsTaskSettingsCommand.js +22 -0
- package/dist-es/commands/GetColumnStatisticsTaskSettingsCommand.js +22 -0
- package/dist-es/commands/StartColumnStatisticsTaskRunScheduleCommand.js +22 -0
- package/dist-es/commands/StopColumnStatisticsTaskRunScheduleCommand.js +22 -0
- package/dist-es/commands/UpdateColumnStatisticsTaskSettingsCommand.js +22 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_1.js +17 -9
- package/dist-es/models/models_2.js +9 -13
- package/dist-es/protocols/Aws_json1_1.js +162 -5
- package/dist-types/Glue.d.ts +42 -0
- package/dist-types/GlueClient.d.ts +8 -2
- package/dist-types/commands/CreateColumnStatisticsTaskSettingsCommand.d.ts +102 -0
- package/dist-types/commands/DeleteColumnStatisticsTaskSettingsCommand.d.ts +79 -0
- package/dist-types/commands/GetColumnStatisticsTaskRunCommand.d.ts +1 -0
- package/dist-types/commands/GetColumnStatisticsTaskRunsCommand.d.ts +1 -0
- package/dist-types/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +95 -0
- package/dist-types/commands/GetMLTaskRunCommand.d.ts +2 -1
- package/dist-types/commands/GetMLTaskRunsCommand.d.ts +1 -1
- package/dist-types/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +82 -0
- package/dist-types/commands/StopColumnStatisticsTaskRunScheduleCommand.d.ts +79 -0
- package/dist-types/commands/UpdateColumnStatisticsTaskSettingsCommand.d.ts +93 -0
- package/dist-types/commands/UpdateDevEndpointCommand.d.ts +1 -1
- package/dist-types/commands/UpdateJobCommand.d.ts +1 -2
- package/dist-types/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
- package/dist-types/commands/UpdateMLTransformCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePartitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRegistryCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSchemaCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSourceControlFromJobCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_1.d.ts +181 -259
- package/dist-types/models/models_2.d.ts +374 -444
- package/dist-types/models/models_3.d.ts +404 -3
- package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
- package/dist-types/ts3.4/Glue.d.ts +132 -0
- package/dist-types/ts3.4/GlueClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateColumnStatisticsTaskSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteColumnStatisticsTaskSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMLTaskRunCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetMLTaskRunsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopColumnStatisticsTaskRunScheduleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateColumnStatisticsTaskSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDevEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateMLTransformCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePartitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSourceControlFromJobCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_1.d.ts +53 -65
- package/dist-types/ts3.4/models/models_2.d.ts +91 -97
- package/dist-types/ts3.4/models/models_3.d.ts +91 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
- package/package.json +35 -35
package/dist-types/Glue.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ import { CancelStatementCommandInput, CancelStatementCommandOutput } from "./com
|
|
|
24
24
|
import { CheckSchemaVersionValidityCommandInput, CheckSchemaVersionValidityCommandOutput } from "./commands/CheckSchemaVersionValidityCommand";
|
|
25
25
|
import { CreateBlueprintCommandInput, CreateBlueprintCommandOutput } from "./commands/CreateBlueprintCommand";
|
|
26
26
|
import { CreateClassifierCommandInput, CreateClassifierCommandOutput } from "./commands/CreateClassifierCommand";
|
|
27
|
+
import { CreateColumnStatisticsTaskSettingsCommandInput, CreateColumnStatisticsTaskSettingsCommandOutput } from "./commands/CreateColumnStatisticsTaskSettingsCommand";
|
|
27
28
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
|
|
28
29
|
import { CreateCrawlerCommandInput, CreateCrawlerCommandOutput } from "./commands/CreateCrawlerCommand";
|
|
29
30
|
import { CreateCustomEntityTypeCommandInput, CreateCustomEntityTypeCommandOutput } from "./commands/CreateCustomEntityTypeCommand";
|
|
@@ -49,6 +50,7 @@ import { DeleteBlueprintCommandInput, DeleteBlueprintCommandOutput } from "./com
|
|
|
49
50
|
import { DeleteClassifierCommandInput, DeleteClassifierCommandOutput } from "./commands/DeleteClassifierCommand";
|
|
50
51
|
import { DeleteColumnStatisticsForPartitionCommandInput, DeleteColumnStatisticsForPartitionCommandOutput } from "./commands/DeleteColumnStatisticsForPartitionCommand";
|
|
51
52
|
import { DeleteColumnStatisticsForTableCommandInput, DeleteColumnStatisticsForTableCommandOutput } from "./commands/DeleteColumnStatisticsForTableCommand";
|
|
53
|
+
import { DeleteColumnStatisticsTaskSettingsCommandInput, DeleteColumnStatisticsTaskSettingsCommandOutput } from "./commands/DeleteColumnStatisticsTaskSettingsCommand";
|
|
52
54
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
|
|
53
55
|
import { DeleteCrawlerCommandInput, DeleteCrawlerCommandOutput } from "./commands/DeleteCrawlerCommand";
|
|
54
56
|
import { DeleteCustomEntityTypeCommandInput, DeleteCustomEntityTypeCommandOutput } from "./commands/DeleteCustomEntityTypeCommand";
|
|
@@ -82,6 +84,7 @@ import { GetColumnStatisticsForPartitionCommandInput, GetColumnStatisticsForPart
|
|
|
82
84
|
import { GetColumnStatisticsForTableCommandInput, GetColumnStatisticsForTableCommandOutput } from "./commands/GetColumnStatisticsForTableCommand";
|
|
83
85
|
import { GetColumnStatisticsTaskRunCommandInput, GetColumnStatisticsTaskRunCommandOutput } from "./commands/GetColumnStatisticsTaskRunCommand";
|
|
84
86
|
import { GetColumnStatisticsTaskRunsCommandInput, GetColumnStatisticsTaskRunsCommandOutput } from "./commands/GetColumnStatisticsTaskRunsCommand";
|
|
87
|
+
import { GetColumnStatisticsTaskSettingsCommandInput, GetColumnStatisticsTaskSettingsCommandOutput } from "./commands/GetColumnStatisticsTaskSettingsCommand";
|
|
85
88
|
import { GetConnectionCommandInput, GetConnectionCommandOutput } from "./commands/GetConnectionCommand";
|
|
86
89
|
import { GetConnectionsCommandInput, GetConnectionsCommandOutput } from "./commands/GetConnectionsCommand";
|
|
87
90
|
import { GetCrawlerCommandInput, GetCrawlerCommandOutput } from "./commands/GetCrawlerCommand";
|
|
@@ -181,6 +184,7 @@ import { RunStatementCommandInput, RunStatementCommandOutput } from "./commands/
|
|
|
181
184
|
import { SearchTablesCommandInput, SearchTablesCommandOutput } from "./commands/SearchTablesCommand";
|
|
182
185
|
import { StartBlueprintRunCommandInput, StartBlueprintRunCommandOutput } from "./commands/StartBlueprintRunCommand";
|
|
183
186
|
import { StartColumnStatisticsTaskRunCommandInput, StartColumnStatisticsTaskRunCommandOutput } from "./commands/StartColumnStatisticsTaskRunCommand";
|
|
187
|
+
import { StartColumnStatisticsTaskRunScheduleCommandInput, StartColumnStatisticsTaskRunScheduleCommandOutput } from "./commands/StartColumnStatisticsTaskRunScheduleCommand";
|
|
184
188
|
import { StartCrawlerCommandInput, StartCrawlerCommandOutput } from "./commands/StartCrawlerCommand";
|
|
185
189
|
import { StartCrawlerScheduleCommandInput, StartCrawlerScheduleCommandOutput } from "./commands/StartCrawlerScheduleCommand";
|
|
186
190
|
import { StartDataQualityRuleRecommendationRunCommandInput, StartDataQualityRuleRecommendationRunCommandOutput } from "./commands/StartDataQualityRuleRecommendationRunCommand";
|
|
@@ -193,6 +197,7 @@ import { StartMLLabelingSetGenerationTaskRunCommandInput, StartMLLabelingSetGene
|
|
|
193
197
|
import { StartTriggerCommandInput, StartTriggerCommandOutput } from "./commands/StartTriggerCommand";
|
|
194
198
|
import { StartWorkflowRunCommandInput, StartWorkflowRunCommandOutput } from "./commands/StartWorkflowRunCommand";
|
|
195
199
|
import { StopColumnStatisticsTaskRunCommandInput, StopColumnStatisticsTaskRunCommandOutput } from "./commands/StopColumnStatisticsTaskRunCommand";
|
|
200
|
+
import { StopColumnStatisticsTaskRunScheduleCommandInput, StopColumnStatisticsTaskRunScheduleCommandOutput } from "./commands/StopColumnStatisticsTaskRunScheduleCommand";
|
|
196
201
|
import { StopCrawlerCommandInput, StopCrawlerCommandOutput } from "./commands/StopCrawlerCommand";
|
|
197
202
|
import { StopCrawlerScheduleCommandInput, StopCrawlerScheduleCommandOutput } from "./commands/StopCrawlerScheduleCommand";
|
|
198
203
|
import { StopSessionCommandInput, StopSessionCommandOutput } from "./commands/StopSessionCommand";
|
|
@@ -205,6 +210,7 @@ import { UpdateBlueprintCommandInput, UpdateBlueprintCommandOutput } from "./com
|
|
|
205
210
|
import { UpdateClassifierCommandInput, UpdateClassifierCommandOutput } from "./commands/UpdateClassifierCommand";
|
|
206
211
|
import { UpdateColumnStatisticsForPartitionCommandInput, UpdateColumnStatisticsForPartitionCommandOutput } from "./commands/UpdateColumnStatisticsForPartitionCommand";
|
|
207
212
|
import { UpdateColumnStatisticsForTableCommandInput, UpdateColumnStatisticsForTableCommandOutput } from "./commands/UpdateColumnStatisticsForTableCommand";
|
|
213
|
+
import { UpdateColumnStatisticsTaskSettingsCommandInput, UpdateColumnStatisticsTaskSettingsCommandOutput } from "./commands/UpdateColumnStatisticsTaskSettingsCommand";
|
|
208
214
|
import { UpdateConnectionCommandInput, UpdateConnectionCommandOutput } from "./commands/UpdateConnectionCommand";
|
|
209
215
|
import { UpdateCrawlerCommandInput, UpdateCrawlerCommandOutput } from "./commands/UpdateCrawlerCommand";
|
|
210
216
|
import { UpdateCrawlerScheduleCommandInput, UpdateCrawlerScheduleCommandOutput } from "./commands/UpdateCrawlerScheduleCommand";
|
|
@@ -377,6 +383,12 @@ export interface Glue {
|
|
|
377
383
|
createClassifier(args: CreateClassifierCommandInput, options?: __HttpHandlerOptions): Promise<CreateClassifierCommandOutput>;
|
|
378
384
|
createClassifier(args: CreateClassifierCommandInput, cb: (err: any, data?: CreateClassifierCommandOutput) => void): void;
|
|
379
385
|
createClassifier(args: CreateClassifierCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClassifierCommandOutput) => void): void;
|
|
386
|
+
/**
|
|
387
|
+
* @see {@link CreateColumnStatisticsTaskSettingsCommand}
|
|
388
|
+
*/
|
|
389
|
+
createColumnStatisticsTaskSettings(args: CreateColumnStatisticsTaskSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateColumnStatisticsTaskSettingsCommandOutput>;
|
|
390
|
+
createColumnStatisticsTaskSettings(args: CreateColumnStatisticsTaskSettingsCommandInput, cb: (err: any, data?: CreateColumnStatisticsTaskSettingsCommandOutput) => void): void;
|
|
391
|
+
createColumnStatisticsTaskSettings(args: CreateColumnStatisticsTaskSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateColumnStatisticsTaskSettingsCommandOutput) => void): void;
|
|
380
392
|
/**
|
|
381
393
|
* @see {@link CreateConnectionCommand}
|
|
382
394
|
*/
|
|
@@ -528,6 +540,12 @@ export interface Glue {
|
|
|
528
540
|
deleteColumnStatisticsForTable(args: DeleteColumnStatisticsForTableCommandInput, options?: __HttpHandlerOptions): Promise<DeleteColumnStatisticsForTableCommandOutput>;
|
|
529
541
|
deleteColumnStatisticsForTable(args: DeleteColumnStatisticsForTableCommandInput, cb: (err: any, data?: DeleteColumnStatisticsForTableCommandOutput) => void): void;
|
|
530
542
|
deleteColumnStatisticsForTable(args: DeleteColumnStatisticsForTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteColumnStatisticsForTableCommandOutput) => void): void;
|
|
543
|
+
/**
|
|
544
|
+
* @see {@link DeleteColumnStatisticsTaskSettingsCommand}
|
|
545
|
+
*/
|
|
546
|
+
deleteColumnStatisticsTaskSettings(args: DeleteColumnStatisticsTaskSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteColumnStatisticsTaskSettingsCommandOutput>;
|
|
547
|
+
deleteColumnStatisticsTaskSettings(args: DeleteColumnStatisticsTaskSettingsCommandInput, cb: (err: any, data?: DeleteColumnStatisticsTaskSettingsCommandOutput) => void): void;
|
|
548
|
+
deleteColumnStatisticsTaskSettings(args: DeleteColumnStatisticsTaskSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteColumnStatisticsTaskSettingsCommandOutput) => void): void;
|
|
531
549
|
/**
|
|
532
550
|
* @see {@link DeleteConnectionCommand}
|
|
533
551
|
*/
|
|
@@ -729,6 +747,12 @@ export interface Glue {
|
|
|
729
747
|
getColumnStatisticsTaskRuns(args: GetColumnStatisticsTaskRunsCommandInput, options?: __HttpHandlerOptions): Promise<GetColumnStatisticsTaskRunsCommandOutput>;
|
|
730
748
|
getColumnStatisticsTaskRuns(args: GetColumnStatisticsTaskRunsCommandInput, cb: (err: any, data?: GetColumnStatisticsTaskRunsCommandOutput) => void): void;
|
|
731
749
|
getColumnStatisticsTaskRuns(args: GetColumnStatisticsTaskRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetColumnStatisticsTaskRunsCommandOutput) => void): void;
|
|
750
|
+
/**
|
|
751
|
+
* @see {@link GetColumnStatisticsTaskSettingsCommand}
|
|
752
|
+
*/
|
|
753
|
+
getColumnStatisticsTaskSettings(args: GetColumnStatisticsTaskSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetColumnStatisticsTaskSettingsCommandOutput>;
|
|
754
|
+
getColumnStatisticsTaskSettings(args: GetColumnStatisticsTaskSettingsCommandInput, cb: (err: any, data?: GetColumnStatisticsTaskSettingsCommandOutput) => void): void;
|
|
755
|
+
getColumnStatisticsTaskSettings(args: GetColumnStatisticsTaskSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetColumnStatisticsTaskSettingsCommandOutput) => void): void;
|
|
732
756
|
/**
|
|
733
757
|
* @see {@link GetConnectionCommand}
|
|
734
758
|
*/
|
|
@@ -1359,6 +1383,12 @@ export interface Glue {
|
|
|
1359
1383
|
startColumnStatisticsTaskRun(args: StartColumnStatisticsTaskRunCommandInput, options?: __HttpHandlerOptions): Promise<StartColumnStatisticsTaskRunCommandOutput>;
|
|
1360
1384
|
startColumnStatisticsTaskRun(args: StartColumnStatisticsTaskRunCommandInput, cb: (err: any, data?: StartColumnStatisticsTaskRunCommandOutput) => void): void;
|
|
1361
1385
|
startColumnStatisticsTaskRun(args: StartColumnStatisticsTaskRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartColumnStatisticsTaskRunCommandOutput) => void): void;
|
|
1386
|
+
/**
|
|
1387
|
+
* @see {@link StartColumnStatisticsTaskRunScheduleCommand}
|
|
1388
|
+
*/
|
|
1389
|
+
startColumnStatisticsTaskRunSchedule(args: StartColumnStatisticsTaskRunScheduleCommandInput, options?: __HttpHandlerOptions): Promise<StartColumnStatisticsTaskRunScheduleCommandOutput>;
|
|
1390
|
+
startColumnStatisticsTaskRunSchedule(args: StartColumnStatisticsTaskRunScheduleCommandInput, cb: (err: any, data?: StartColumnStatisticsTaskRunScheduleCommandOutput) => void): void;
|
|
1391
|
+
startColumnStatisticsTaskRunSchedule(args: StartColumnStatisticsTaskRunScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartColumnStatisticsTaskRunScheduleCommandOutput) => void): void;
|
|
1362
1392
|
/**
|
|
1363
1393
|
* @see {@link StartCrawlerCommand}
|
|
1364
1394
|
*/
|
|
@@ -1431,6 +1461,12 @@ export interface Glue {
|
|
|
1431
1461
|
stopColumnStatisticsTaskRun(args: StopColumnStatisticsTaskRunCommandInput, options?: __HttpHandlerOptions): Promise<StopColumnStatisticsTaskRunCommandOutput>;
|
|
1432
1462
|
stopColumnStatisticsTaskRun(args: StopColumnStatisticsTaskRunCommandInput, cb: (err: any, data?: StopColumnStatisticsTaskRunCommandOutput) => void): void;
|
|
1433
1463
|
stopColumnStatisticsTaskRun(args: StopColumnStatisticsTaskRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopColumnStatisticsTaskRunCommandOutput) => void): void;
|
|
1464
|
+
/**
|
|
1465
|
+
* @see {@link StopColumnStatisticsTaskRunScheduleCommand}
|
|
1466
|
+
*/
|
|
1467
|
+
stopColumnStatisticsTaskRunSchedule(args: StopColumnStatisticsTaskRunScheduleCommandInput, options?: __HttpHandlerOptions): Promise<StopColumnStatisticsTaskRunScheduleCommandOutput>;
|
|
1468
|
+
stopColumnStatisticsTaskRunSchedule(args: StopColumnStatisticsTaskRunScheduleCommandInput, cb: (err: any, data?: StopColumnStatisticsTaskRunScheduleCommandOutput) => void): void;
|
|
1469
|
+
stopColumnStatisticsTaskRunSchedule(args: StopColumnStatisticsTaskRunScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopColumnStatisticsTaskRunScheduleCommandOutput) => void): void;
|
|
1434
1470
|
/**
|
|
1435
1471
|
* @see {@link StopCrawlerCommand}
|
|
1436
1472
|
*/
|
|
@@ -1505,6 +1541,12 @@ export interface Glue {
|
|
|
1505
1541
|
updateColumnStatisticsForTable(args: UpdateColumnStatisticsForTableCommandInput, options?: __HttpHandlerOptions): Promise<UpdateColumnStatisticsForTableCommandOutput>;
|
|
1506
1542
|
updateColumnStatisticsForTable(args: UpdateColumnStatisticsForTableCommandInput, cb: (err: any, data?: UpdateColumnStatisticsForTableCommandOutput) => void): void;
|
|
1507
1543
|
updateColumnStatisticsForTable(args: UpdateColumnStatisticsForTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateColumnStatisticsForTableCommandOutput) => void): void;
|
|
1544
|
+
/**
|
|
1545
|
+
* @see {@link UpdateColumnStatisticsTaskSettingsCommand}
|
|
1546
|
+
*/
|
|
1547
|
+
updateColumnStatisticsTaskSettings(args: UpdateColumnStatisticsTaskSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateColumnStatisticsTaskSettingsCommandOutput>;
|
|
1548
|
+
updateColumnStatisticsTaskSettings(args: UpdateColumnStatisticsTaskSettingsCommandInput, cb: (err: any, data?: UpdateColumnStatisticsTaskSettingsCommandOutput) => void): void;
|
|
1549
|
+
updateColumnStatisticsTaskSettings(args: UpdateColumnStatisticsTaskSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateColumnStatisticsTaskSettingsCommandOutput) => void): void;
|
|
1508
1550
|
/**
|
|
1509
1551
|
* @see {@link UpdateConnectionCommand}
|
|
1510
1552
|
*/
|
|
@@ -32,6 +32,7 @@ import { CancelStatementCommandInput, CancelStatementCommandOutput } from "./com
|
|
|
32
32
|
import { CheckSchemaVersionValidityCommandInput, CheckSchemaVersionValidityCommandOutput } from "./commands/CheckSchemaVersionValidityCommand";
|
|
33
33
|
import { CreateBlueprintCommandInput, CreateBlueprintCommandOutput } from "./commands/CreateBlueprintCommand";
|
|
34
34
|
import { CreateClassifierCommandInput, CreateClassifierCommandOutput } from "./commands/CreateClassifierCommand";
|
|
35
|
+
import { CreateColumnStatisticsTaskSettingsCommandInput, CreateColumnStatisticsTaskSettingsCommandOutput } from "./commands/CreateColumnStatisticsTaskSettingsCommand";
|
|
35
36
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
|
|
36
37
|
import { CreateCrawlerCommandInput, CreateCrawlerCommandOutput } from "./commands/CreateCrawlerCommand";
|
|
37
38
|
import { CreateCustomEntityTypeCommandInput, CreateCustomEntityTypeCommandOutput } from "./commands/CreateCustomEntityTypeCommand";
|
|
@@ -57,6 +58,7 @@ import { DeleteBlueprintCommandInput, DeleteBlueprintCommandOutput } from "./com
|
|
|
57
58
|
import { DeleteClassifierCommandInput, DeleteClassifierCommandOutput } from "./commands/DeleteClassifierCommand";
|
|
58
59
|
import { DeleteColumnStatisticsForPartitionCommandInput, DeleteColumnStatisticsForPartitionCommandOutput } from "./commands/DeleteColumnStatisticsForPartitionCommand";
|
|
59
60
|
import { DeleteColumnStatisticsForTableCommandInput, DeleteColumnStatisticsForTableCommandOutput } from "./commands/DeleteColumnStatisticsForTableCommand";
|
|
61
|
+
import { DeleteColumnStatisticsTaskSettingsCommandInput, DeleteColumnStatisticsTaskSettingsCommandOutput } from "./commands/DeleteColumnStatisticsTaskSettingsCommand";
|
|
60
62
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
|
|
61
63
|
import { DeleteCrawlerCommandInput, DeleteCrawlerCommandOutput } from "./commands/DeleteCrawlerCommand";
|
|
62
64
|
import { DeleteCustomEntityTypeCommandInput, DeleteCustomEntityTypeCommandOutput } from "./commands/DeleteCustomEntityTypeCommand";
|
|
@@ -90,6 +92,7 @@ import { GetColumnStatisticsForPartitionCommandInput, GetColumnStatisticsForPart
|
|
|
90
92
|
import { GetColumnStatisticsForTableCommandInput, GetColumnStatisticsForTableCommandOutput } from "./commands/GetColumnStatisticsForTableCommand";
|
|
91
93
|
import { GetColumnStatisticsTaskRunCommandInput, GetColumnStatisticsTaskRunCommandOutput } from "./commands/GetColumnStatisticsTaskRunCommand";
|
|
92
94
|
import { GetColumnStatisticsTaskRunsCommandInput, GetColumnStatisticsTaskRunsCommandOutput } from "./commands/GetColumnStatisticsTaskRunsCommand";
|
|
95
|
+
import { GetColumnStatisticsTaskSettingsCommandInput, GetColumnStatisticsTaskSettingsCommandOutput } from "./commands/GetColumnStatisticsTaskSettingsCommand";
|
|
93
96
|
import { GetConnectionCommandInput, GetConnectionCommandOutput } from "./commands/GetConnectionCommand";
|
|
94
97
|
import { GetConnectionsCommandInput, GetConnectionsCommandOutput } from "./commands/GetConnectionsCommand";
|
|
95
98
|
import { GetCrawlerCommandInput, GetCrawlerCommandOutput } from "./commands/GetCrawlerCommand";
|
|
@@ -189,6 +192,7 @@ import { RunStatementCommandInput, RunStatementCommandOutput } from "./commands/
|
|
|
189
192
|
import { SearchTablesCommandInput, SearchTablesCommandOutput } from "./commands/SearchTablesCommand";
|
|
190
193
|
import { StartBlueprintRunCommandInput, StartBlueprintRunCommandOutput } from "./commands/StartBlueprintRunCommand";
|
|
191
194
|
import { StartColumnStatisticsTaskRunCommandInput, StartColumnStatisticsTaskRunCommandOutput } from "./commands/StartColumnStatisticsTaskRunCommand";
|
|
195
|
+
import { StartColumnStatisticsTaskRunScheduleCommandInput, StartColumnStatisticsTaskRunScheduleCommandOutput } from "./commands/StartColumnStatisticsTaskRunScheduleCommand";
|
|
192
196
|
import { StartCrawlerCommandInput, StartCrawlerCommandOutput } from "./commands/StartCrawlerCommand";
|
|
193
197
|
import { StartCrawlerScheduleCommandInput, StartCrawlerScheduleCommandOutput } from "./commands/StartCrawlerScheduleCommand";
|
|
194
198
|
import { StartDataQualityRuleRecommendationRunCommandInput, StartDataQualityRuleRecommendationRunCommandOutput } from "./commands/StartDataQualityRuleRecommendationRunCommand";
|
|
@@ -201,6 +205,7 @@ import { StartMLLabelingSetGenerationTaskRunCommandInput, StartMLLabelingSetGene
|
|
|
201
205
|
import { StartTriggerCommandInput, StartTriggerCommandOutput } from "./commands/StartTriggerCommand";
|
|
202
206
|
import { StartWorkflowRunCommandInput, StartWorkflowRunCommandOutput } from "./commands/StartWorkflowRunCommand";
|
|
203
207
|
import { StopColumnStatisticsTaskRunCommandInput, StopColumnStatisticsTaskRunCommandOutput } from "./commands/StopColumnStatisticsTaskRunCommand";
|
|
208
|
+
import { StopColumnStatisticsTaskRunScheduleCommandInput, StopColumnStatisticsTaskRunScheduleCommandOutput } from "./commands/StopColumnStatisticsTaskRunScheduleCommand";
|
|
204
209
|
import { StopCrawlerCommandInput, StopCrawlerCommandOutput } from "./commands/StopCrawlerCommand";
|
|
205
210
|
import { StopCrawlerScheduleCommandInput, StopCrawlerScheduleCommandOutput } from "./commands/StopCrawlerScheduleCommand";
|
|
206
211
|
import { StopSessionCommandInput, StopSessionCommandOutput } from "./commands/StopSessionCommand";
|
|
@@ -213,6 +218,7 @@ import { UpdateBlueprintCommandInput, UpdateBlueprintCommandOutput } from "./com
|
|
|
213
218
|
import { UpdateClassifierCommandInput, UpdateClassifierCommandOutput } from "./commands/UpdateClassifierCommand";
|
|
214
219
|
import { UpdateColumnStatisticsForPartitionCommandInput, UpdateColumnStatisticsForPartitionCommandOutput } from "./commands/UpdateColumnStatisticsForPartitionCommand";
|
|
215
220
|
import { UpdateColumnStatisticsForTableCommandInput, UpdateColumnStatisticsForTableCommandOutput } from "./commands/UpdateColumnStatisticsForTableCommand";
|
|
221
|
+
import { UpdateColumnStatisticsTaskSettingsCommandInput, UpdateColumnStatisticsTaskSettingsCommandOutput } from "./commands/UpdateColumnStatisticsTaskSettingsCommand";
|
|
216
222
|
import { UpdateConnectionCommandInput, UpdateConnectionCommandOutput } from "./commands/UpdateConnectionCommand";
|
|
217
223
|
import { UpdateCrawlerCommandInput, UpdateCrawlerCommandOutput } from "./commands/UpdateCrawlerCommand";
|
|
218
224
|
import { UpdateCrawlerScheduleCommandInput, UpdateCrawlerScheduleCommandOutput } from "./commands/UpdateCrawlerScheduleCommand";
|
|
@@ -238,11 +244,11 @@ export { __Client };
|
|
|
238
244
|
/**
|
|
239
245
|
* @public
|
|
240
246
|
*/
|
|
241
|
-
export type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDataQualityResultCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTableOptimizerCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchPutDataQualityStatisticAnnotationCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelDataQualityRuleRecommendationRunCommandInput | CancelDataQualityRulesetEvaluationRunCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDataQualityRulesetCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTableOptimizerCommandInput | CreateTriggerCommandInput | CreateUsageProfileCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDataQualityRulesetCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableOptimizerCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUsageProfileCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetColumnStatisticsTaskRunCommandInput | GetColumnStatisticsTaskRunsCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDataQualityModelCommandInput | GetDataQualityModelResultCommandInput | GetDataQualityResultCommandInput | GetDataQualityRuleRecommendationRunCommandInput | GetDataQualityRulesetCommandInput | GetDataQualityRulesetEvaluationRunCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableOptimizerCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUsageProfileCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListColumnStatisticsTaskRunsCommandInput | ListCrawlersCommandInput | ListCrawlsCommandInput | ListCustomEntityTypesCommandInput | ListDataQualityResultsCommandInput | ListDataQualityRuleRecommendationRunsCommandInput | ListDataQualityRulesetEvaluationRunsCommandInput | ListDataQualityRulesetsCommandInput | ListDataQualityStatisticAnnotationsCommandInput | ListDataQualityStatisticsCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTableOptimizerRunsCommandInput | ListTriggersCommandInput | ListUsageProfilesCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutDataQualityProfileAnnotationCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartColumnStatisticsTaskRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartDataQualityRuleRecommendationRunCommandInput | StartDataQualityRulesetEvaluationRunCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopColumnStatisticsTaskRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | TestConnectionCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDataQualityRulesetCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateJobFromSourceControlCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateSourceControlFromJobCommandInput | UpdateTableCommandInput | UpdateTableOptimizerCommandInput | UpdateTriggerCommandInput | UpdateUsageProfileCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
247
|
+
export type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDataQualityResultCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTableOptimizerCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchPutDataQualityStatisticAnnotationCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelDataQualityRuleRecommendationRunCommandInput | CancelDataQualityRulesetEvaluationRunCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateColumnStatisticsTaskSettingsCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDataQualityRulesetCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTableOptimizerCommandInput | CreateTriggerCommandInput | CreateUsageProfileCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteColumnStatisticsTaskSettingsCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDataQualityRulesetCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableOptimizerCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUsageProfileCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetColumnStatisticsTaskRunCommandInput | GetColumnStatisticsTaskRunsCommandInput | GetColumnStatisticsTaskSettingsCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDataQualityModelCommandInput | GetDataQualityModelResultCommandInput | GetDataQualityResultCommandInput | GetDataQualityRuleRecommendationRunCommandInput | GetDataQualityRulesetCommandInput | GetDataQualityRulesetEvaluationRunCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableOptimizerCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUsageProfileCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListColumnStatisticsTaskRunsCommandInput | ListCrawlersCommandInput | ListCrawlsCommandInput | ListCustomEntityTypesCommandInput | ListDataQualityResultsCommandInput | ListDataQualityRuleRecommendationRunsCommandInput | ListDataQualityRulesetEvaluationRunsCommandInput | ListDataQualityRulesetsCommandInput | ListDataQualityStatisticAnnotationsCommandInput | ListDataQualityStatisticsCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTableOptimizerRunsCommandInput | ListTriggersCommandInput | ListUsageProfilesCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutDataQualityProfileAnnotationCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartColumnStatisticsTaskRunCommandInput | StartColumnStatisticsTaskRunScheduleCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartDataQualityRuleRecommendationRunCommandInput | StartDataQualityRulesetEvaluationRunCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopColumnStatisticsTaskRunCommandInput | StopColumnStatisticsTaskRunScheduleCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | TestConnectionCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateColumnStatisticsTaskSettingsCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDataQualityRulesetCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateJobFromSourceControlCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateSourceControlFromJobCommandInput | UpdateTableCommandInput | UpdateTableOptimizerCommandInput | UpdateTriggerCommandInput | UpdateUsageProfileCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
242
248
|
/**
|
|
243
249
|
* @public
|
|
244
250
|
*/
|
|
245
|
-
export type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDataQualityResultCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTableOptimizerCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchPutDataQualityStatisticAnnotationCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelDataQualityRuleRecommendationRunCommandOutput | CancelDataQualityRulesetEvaluationRunCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDataQualityRulesetCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTableOptimizerCommandOutput | CreateTriggerCommandOutput | CreateUsageProfileCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDataQualityRulesetCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableOptimizerCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUsageProfileCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetColumnStatisticsTaskRunCommandOutput | GetColumnStatisticsTaskRunsCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDataQualityModelCommandOutput | GetDataQualityModelResultCommandOutput | GetDataQualityResultCommandOutput | GetDataQualityRuleRecommendationRunCommandOutput | GetDataQualityRulesetCommandOutput | GetDataQualityRulesetEvaluationRunCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableOptimizerCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUsageProfileCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListColumnStatisticsTaskRunsCommandOutput | ListCrawlersCommandOutput | ListCrawlsCommandOutput | ListCustomEntityTypesCommandOutput | ListDataQualityResultsCommandOutput | ListDataQualityRuleRecommendationRunsCommandOutput | ListDataQualityRulesetEvaluationRunsCommandOutput | ListDataQualityRulesetsCommandOutput | ListDataQualityStatisticAnnotationsCommandOutput | ListDataQualityStatisticsCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTableOptimizerRunsCommandOutput | ListTriggersCommandOutput | ListUsageProfilesCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutDataQualityProfileAnnotationCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartColumnStatisticsTaskRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartDataQualityRuleRecommendationRunCommandOutput | StartDataQualityRulesetEvaluationRunCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopColumnStatisticsTaskRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | TestConnectionCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDataQualityRulesetCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateJobFromSourceControlCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateSourceControlFromJobCommandOutput | UpdateTableCommandOutput | UpdateTableOptimizerCommandOutput | UpdateTriggerCommandOutput | UpdateUsageProfileCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
251
|
+
export type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDataQualityResultCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTableOptimizerCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchPutDataQualityStatisticAnnotationCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelDataQualityRuleRecommendationRunCommandOutput | CancelDataQualityRulesetEvaluationRunCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateColumnStatisticsTaskSettingsCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDataQualityRulesetCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTableOptimizerCommandOutput | CreateTriggerCommandOutput | CreateUsageProfileCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteColumnStatisticsTaskSettingsCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDataQualityRulesetCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableOptimizerCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUsageProfileCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetColumnStatisticsTaskRunCommandOutput | GetColumnStatisticsTaskRunsCommandOutput | GetColumnStatisticsTaskSettingsCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDataQualityModelCommandOutput | GetDataQualityModelResultCommandOutput | GetDataQualityResultCommandOutput | GetDataQualityRuleRecommendationRunCommandOutput | GetDataQualityRulesetCommandOutput | GetDataQualityRulesetEvaluationRunCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableOptimizerCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUsageProfileCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListColumnStatisticsTaskRunsCommandOutput | ListCrawlersCommandOutput | ListCrawlsCommandOutput | ListCustomEntityTypesCommandOutput | ListDataQualityResultsCommandOutput | ListDataQualityRuleRecommendationRunsCommandOutput | ListDataQualityRulesetEvaluationRunsCommandOutput | ListDataQualityRulesetsCommandOutput | ListDataQualityStatisticAnnotationsCommandOutput | ListDataQualityStatisticsCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTableOptimizerRunsCommandOutput | ListTriggersCommandOutput | ListUsageProfilesCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutDataQualityProfileAnnotationCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartColumnStatisticsTaskRunCommandOutput | StartColumnStatisticsTaskRunScheduleCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartDataQualityRuleRecommendationRunCommandOutput | StartDataQualityRulesetEvaluationRunCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopColumnStatisticsTaskRunCommandOutput | StopColumnStatisticsTaskRunScheduleCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | TestConnectionCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateColumnStatisticsTaskSettingsCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDataQualityRulesetCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateJobFromSourceControlCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateSourceControlFromJobCommandOutput | UpdateTableCommandOutput | UpdateTableOptimizerCommandOutput | UpdateTriggerCommandOutput | UpdateUsageProfileCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
246
252
|
/**
|
|
247
253
|
* @public
|
|
248
254
|
*/
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { CreateColumnStatisticsTaskSettingsRequest, CreateColumnStatisticsTaskSettingsResponse } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateColumnStatisticsTaskSettingsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateColumnStatisticsTaskSettingsCommandInput extends CreateColumnStatisticsTaskSettingsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateColumnStatisticsTaskSettingsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateColumnStatisticsTaskSettingsCommandOutput extends CreateColumnStatisticsTaskSettingsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateColumnStatisticsTaskSettingsCommand_base: {
|
|
25
|
+
new (input: CreateColumnStatisticsTaskSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<CreateColumnStatisticsTaskSettingsCommandInput, CreateColumnStatisticsTaskSettingsCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateColumnStatisticsTaskSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<CreateColumnStatisticsTaskSettingsCommandInput, CreateColumnStatisticsTaskSettingsCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates settings for a column statistics task.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, CreateColumnStatisticsTaskSettingsCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, CreateColumnStatisticsTaskSettingsCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // CreateColumnStatisticsTaskSettingsRequest
|
|
38
|
+
* DatabaseName: "STRING_VALUE", // required
|
|
39
|
+
* TableName: "STRING_VALUE", // required
|
|
40
|
+
* Role: "STRING_VALUE", // required
|
|
41
|
+
* Schedule: "STRING_VALUE",
|
|
42
|
+
* ColumnNameList: [ // ColumnNameList
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
45
|
+
* SampleSize: Number("double"),
|
|
46
|
+
* CatalogID: "STRING_VALUE",
|
|
47
|
+
* SecurityConfiguration: "STRING_VALUE",
|
|
48
|
+
* Tags: { // TagsMap
|
|
49
|
+
* "<keys>": "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* };
|
|
52
|
+
* const command = new CreateColumnStatisticsTaskSettingsCommand(input);
|
|
53
|
+
* const response = await client.send(command);
|
|
54
|
+
* // {};
|
|
55
|
+
*
|
|
56
|
+
* ```
|
|
57
|
+
*
|
|
58
|
+
* @param CreateColumnStatisticsTaskSettingsCommandInput - {@link CreateColumnStatisticsTaskSettingsCommandInput}
|
|
59
|
+
* @returns {@link CreateColumnStatisticsTaskSettingsCommandOutput}
|
|
60
|
+
* @see {@link CreateColumnStatisticsTaskSettingsCommandInput} for command's `input` shape.
|
|
61
|
+
* @see {@link CreateColumnStatisticsTaskSettingsCommandOutput} for command's `response` shape.
|
|
62
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
65
|
+
* <p>Access to a resource was denied.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
68
|
+
* <p>A resource to be created or added already exists.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ColumnStatisticsTaskRunningException} (client fault)
|
|
71
|
+
* <p>An exception thrown when you try to start another job while running a column stats generation job.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
74
|
+
* <p>A specified entity does not exist</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
77
|
+
* <p>The input provided was not valid.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
80
|
+
* <p>The operation timed out.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ResourceNumberLimitExceededException} (client fault)
|
|
83
|
+
* <p>A resource numerical limit was exceeded.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link GlueServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
87
|
+
*
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export declare class CreateColumnStatisticsTaskSettingsCommand extends CreateColumnStatisticsTaskSettingsCommand_base {
|
|
91
|
+
/** @internal type navigation helper, not in runtime. */
|
|
92
|
+
protected static __types: {
|
|
93
|
+
api: {
|
|
94
|
+
input: CreateColumnStatisticsTaskSettingsRequest;
|
|
95
|
+
output: {};
|
|
96
|
+
};
|
|
97
|
+
sdk: {
|
|
98
|
+
input: CreateColumnStatisticsTaskSettingsCommandInput;
|
|
99
|
+
output: CreateColumnStatisticsTaskSettingsCommandOutput;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { DeleteColumnStatisticsTaskSettingsRequest, DeleteColumnStatisticsTaskSettingsResponse } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteColumnStatisticsTaskSettingsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteColumnStatisticsTaskSettingsCommandInput extends DeleteColumnStatisticsTaskSettingsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteColumnStatisticsTaskSettingsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteColumnStatisticsTaskSettingsCommandOutput extends DeleteColumnStatisticsTaskSettingsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteColumnStatisticsTaskSettingsCommand_base: {
|
|
25
|
+
new (input: DeleteColumnStatisticsTaskSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteColumnStatisticsTaskSettingsCommandInput, DeleteColumnStatisticsTaskSettingsCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteColumnStatisticsTaskSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteColumnStatisticsTaskSettingsCommandInput, DeleteColumnStatisticsTaskSettingsCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes settings for a column statistics task.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, DeleteColumnStatisticsTaskSettingsCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, DeleteColumnStatisticsTaskSettingsCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // DeleteColumnStatisticsTaskSettingsRequest
|
|
38
|
+
* DatabaseName: "STRING_VALUE", // required
|
|
39
|
+
* TableName: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new DeleteColumnStatisticsTaskSettingsCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @param DeleteColumnStatisticsTaskSettingsCommandInput - {@link DeleteColumnStatisticsTaskSettingsCommandInput}
|
|
48
|
+
* @returns {@link DeleteColumnStatisticsTaskSettingsCommandOutput}
|
|
49
|
+
* @see {@link DeleteColumnStatisticsTaskSettingsCommandInput} for command's `input` shape.
|
|
50
|
+
* @see {@link DeleteColumnStatisticsTaskSettingsCommandOutput} for command's `response` shape.
|
|
51
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
54
|
+
* <p>A specified entity does not exist</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
57
|
+
* <p>The input provided was not valid.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
60
|
+
* <p>The operation timed out.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link GlueServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
64
|
+
*
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class DeleteColumnStatisticsTaskSettingsCommand extends DeleteColumnStatisticsTaskSettingsCommand_base {
|
|
68
|
+
/** @internal type navigation helper, not in runtime. */
|
|
69
|
+
protected static __types: {
|
|
70
|
+
api: {
|
|
71
|
+
input: DeleteColumnStatisticsTaskSettingsRequest;
|
|
72
|
+
output: {};
|
|
73
|
+
};
|
|
74
|
+
sdk: {
|
|
75
|
+
input: DeleteColumnStatisticsTaskSettingsCommandInput;
|
|
76
|
+
output: DeleteColumnStatisticsTaskSettingsCommandOutput;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
}
|
|
@@ -54,6 +54,7 @@ declare const GetColumnStatisticsTaskRunCommand_base: {
|
|
|
54
54
|
* // SecurityConfiguration: "STRING_VALUE",
|
|
55
55
|
* // NumberOfWorkers: Number("int"),
|
|
56
56
|
* // WorkerType: "STRING_VALUE",
|
|
57
|
+
* // ComputationType: "FULL" || "INCREMENTAL",
|
|
57
58
|
* // Status: "STARTING" || "RUNNING" || "SUCCEEDED" || "FAILED" || "STOPPED",
|
|
58
59
|
* // CreationTime: new Date("TIMESTAMP"),
|
|
59
60
|
* // LastUpdated: new Date("TIMESTAMP"),
|
|
@@ -58,6 +58,7 @@ declare const GetColumnStatisticsTaskRunsCommand_base: {
|
|
|
58
58
|
* // SecurityConfiguration: "STRING_VALUE",
|
|
59
59
|
* // NumberOfWorkers: Number("int"),
|
|
60
60
|
* // WorkerType: "STRING_VALUE",
|
|
61
|
+
* // ComputationType: "FULL" || "INCREMENTAL",
|
|
61
62
|
* // Status: "STARTING" || "RUNNING" || "SUCCEEDED" || "FAILED" || "STOPPED",
|
|
62
63
|
* // CreationTime: new Date("TIMESTAMP"),
|
|
63
64
|
* // LastUpdated: new Date("TIMESTAMP"),
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { GetColumnStatisticsTaskSettingsRequest, GetColumnStatisticsTaskSettingsResponse } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetColumnStatisticsTaskSettingsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetColumnStatisticsTaskSettingsCommandInput extends GetColumnStatisticsTaskSettingsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetColumnStatisticsTaskSettingsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetColumnStatisticsTaskSettingsCommandOutput extends GetColumnStatisticsTaskSettingsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetColumnStatisticsTaskSettingsCommand_base: {
|
|
25
|
+
new (input: GetColumnStatisticsTaskSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<GetColumnStatisticsTaskSettingsCommandInput, GetColumnStatisticsTaskSettingsCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetColumnStatisticsTaskSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<GetColumnStatisticsTaskSettingsCommandInput, GetColumnStatisticsTaskSettingsCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets settings for a column statistics task.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, GetColumnStatisticsTaskSettingsCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, GetColumnStatisticsTaskSettingsCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // GetColumnStatisticsTaskSettingsRequest
|
|
38
|
+
* DatabaseName: "STRING_VALUE", // required
|
|
39
|
+
* TableName: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new GetColumnStatisticsTaskSettingsCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // GetColumnStatisticsTaskSettingsResponse
|
|
44
|
+
* // ColumnStatisticsTaskSettings: { // ColumnStatisticsTaskSettings
|
|
45
|
+
* // DatabaseName: "STRING_VALUE",
|
|
46
|
+
* // TableName: "STRING_VALUE",
|
|
47
|
+
* // Schedule: { // Schedule
|
|
48
|
+
* // ScheduleExpression: "STRING_VALUE",
|
|
49
|
+
* // State: "SCHEDULED" || "NOT_SCHEDULED" || "TRANSITIONING",
|
|
50
|
+
* // },
|
|
51
|
+
* // ColumnNameList: [ // ColumnNameList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // CatalogID: "STRING_VALUE",
|
|
55
|
+
* // Role: "STRING_VALUE",
|
|
56
|
+
* // SampleSize: Number("double"),
|
|
57
|
+
* // SecurityConfiguration: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
61
|
+
* ```
|
|
62
|
+
*
|
|
63
|
+
* @param GetColumnStatisticsTaskSettingsCommandInput - {@link GetColumnStatisticsTaskSettingsCommandInput}
|
|
64
|
+
* @returns {@link GetColumnStatisticsTaskSettingsCommandOutput}
|
|
65
|
+
* @see {@link GetColumnStatisticsTaskSettingsCommandInput} for command's `input` shape.
|
|
66
|
+
* @see {@link GetColumnStatisticsTaskSettingsCommandOutput} for command's `response` shape.
|
|
67
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
70
|
+
* <p>A specified entity does not exist</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
73
|
+
* <p>The input provided was not valid.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
76
|
+
* <p>The operation timed out.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link GlueServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
80
|
+
*
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class GetColumnStatisticsTaskSettingsCommand extends GetColumnStatisticsTaskSettingsCommand_base {
|
|
84
|
+
/** @internal type navigation helper, not in runtime. */
|
|
85
|
+
protected static __types: {
|
|
86
|
+
api: {
|
|
87
|
+
input: GetColumnStatisticsTaskSettingsRequest;
|
|
88
|
+
output: GetColumnStatisticsTaskSettingsResponse;
|
|
89
|
+
};
|
|
90
|
+
sdk: {
|
|
91
|
+
input: GetColumnStatisticsTaskSettingsCommandInput;
|
|
92
|
+
output: GetColumnStatisticsTaskSettingsCommandOutput;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetMLTaskRunRequest
|
|
4
|
+
import { GetMLTaskRunRequest } from "../models/models_1";
|
|
5
|
+
import { GetMLTaskRunResponse } from "../models/models_2";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetMLTaskRunsRequest, GetMLTaskRunsResponse } from "../models/
|
|
4
|
+
import { GetMLTaskRunsRequest, GetMLTaskRunsResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|