@@ -127,6 +127,11 @@ import {
127
127
CreateClassifierCommandInput ,
128
128
CreateClassifierCommandOutput ,
129
129
} from "./commands/CreateClassifierCommand" ;
130
+ import {
131
+ CreateColumnStatisticsTaskSettingsCommand ,
132
+ CreateColumnStatisticsTaskSettingsCommandInput ,
133
+ CreateColumnStatisticsTaskSettingsCommandOutput ,
134
+ } from "./commands/CreateColumnStatisticsTaskSettingsCommand" ;
130
135
import {
131
136
CreateConnectionCommand ,
132
137
CreateConnectionCommandInput ,
@@ -244,6 +249,11 @@ import {
244
249
DeleteColumnStatisticsForTableCommandInput ,
245
250
DeleteColumnStatisticsForTableCommandOutput ,
246
251
} from "./commands/DeleteColumnStatisticsForTableCommand" ;
252
+ import {
253
+ DeleteColumnStatisticsTaskSettingsCommand ,
254
+ DeleteColumnStatisticsTaskSettingsCommandInput ,
255
+ DeleteColumnStatisticsTaskSettingsCommandOutput ,
256
+ } from "./commands/DeleteColumnStatisticsTaskSettingsCommand" ;
247
257
import {
248
258
DeleteConnectionCommand ,
249
259
DeleteConnectionCommandInput ,
@@ -401,6 +411,11 @@ import {
401
411
GetColumnStatisticsTaskRunsCommandInput ,
402
412
GetColumnStatisticsTaskRunsCommandOutput ,
403
413
} from "./commands/GetColumnStatisticsTaskRunsCommand" ;
414
+ import {
415
+ GetColumnStatisticsTaskSettingsCommand ,
416
+ GetColumnStatisticsTaskSettingsCommandInput ,
417
+ GetColumnStatisticsTaskSettingsCommandOutput ,
418
+ } from "./commands/GetColumnStatisticsTaskSettingsCommand" ;
404
419
import {
405
420
GetConnectionCommand ,
406
421
GetConnectionCommandInput ,
@@ -812,6 +827,11 @@ import {
812
827
StartColumnStatisticsTaskRunCommandInput ,
813
828
StartColumnStatisticsTaskRunCommandOutput ,
814
829
} from "./commands/StartColumnStatisticsTaskRunCommand" ;
830
+ import {
831
+ StartColumnStatisticsTaskRunScheduleCommand ,
832
+ StartColumnStatisticsTaskRunScheduleCommandInput ,
833
+ StartColumnStatisticsTaskRunScheduleCommandOutput ,
834
+ } from "./commands/StartColumnStatisticsTaskRunScheduleCommand" ;
815
835
import {
816
836
StartCrawlerCommand ,
817
837
StartCrawlerCommandInput ,
@@ -868,6 +888,11 @@ import {
868
888
StopColumnStatisticsTaskRunCommandInput ,
869
889
StopColumnStatisticsTaskRunCommandOutput ,
870
890
} from "./commands/StopColumnStatisticsTaskRunCommand" ;
891
+ import {
892
+ StopColumnStatisticsTaskRunScheduleCommand ,
893
+ StopColumnStatisticsTaskRunScheduleCommandInput ,
894
+ StopColumnStatisticsTaskRunScheduleCommandOutput ,
895
+ } from "./commands/StopColumnStatisticsTaskRunScheduleCommand" ;
871
896
import { StopCrawlerCommand , StopCrawlerCommandInput , StopCrawlerCommandOutput } from "./commands/StopCrawlerCommand" ;
872
897
import {
873
898
StopCrawlerScheduleCommand ,
@@ -912,6 +937,11 @@ import {
912
937
UpdateColumnStatisticsForTableCommandInput ,
913
938
UpdateColumnStatisticsForTableCommandOutput ,
914
939
} from "./commands/UpdateColumnStatisticsForTableCommand" ;
940
+ import {
941
+ UpdateColumnStatisticsTaskSettingsCommand ,
942
+ UpdateColumnStatisticsTaskSettingsCommandInput ,
943
+ UpdateColumnStatisticsTaskSettingsCommandOutput ,
944
+ } from "./commands/UpdateColumnStatisticsTaskSettingsCommand" ;
915
945
import {
916
946
UpdateConnectionCommand ,
917
947
UpdateConnectionCommandInput ,
@@ -1027,6 +1057,7 @@ const commands = {
1027
1057
CheckSchemaVersionValidityCommand,
1028
1058
CreateBlueprintCommand,
1029
1059
CreateClassifierCommand,
1060
+ CreateColumnStatisticsTaskSettingsCommand,
1030
1061
CreateConnectionCommand,
1031
1062
CreateCrawlerCommand,
1032
1063
CreateCustomEntityTypeCommand,
@@ -1052,6 +1083,7 @@ const commands = {
1052
1083
DeleteClassifierCommand,
1053
1084
DeleteColumnStatisticsForPartitionCommand,
1054
1085
DeleteColumnStatisticsForTableCommand,
1086
+ DeleteColumnStatisticsTaskSettingsCommand,
1055
1087
DeleteConnectionCommand,
1056
1088
DeleteCrawlerCommand,
1057
1089
DeleteCustomEntityTypeCommand,
@@ -1085,6 +1117,7 @@ const commands = {
1085
1117
GetColumnStatisticsForTableCommand,
1086
1118
GetColumnStatisticsTaskRunCommand,
1087
1119
GetColumnStatisticsTaskRunsCommand,
1120
+ GetColumnStatisticsTaskSettingsCommand,
1088
1121
GetConnectionCommand,
1089
1122
GetConnectionsCommand,
1090
1123
GetCrawlerCommand,
@@ -1184,6 +1217,7 @@ const commands = {
1184
1217
SearchTablesCommand,
1185
1218
StartBlueprintRunCommand,
1186
1219
StartColumnStatisticsTaskRunCommand,
1220
+ StartColumnStatisticsTaskRunScheduleCommand,
1187
1221
StartCrawlerCommand,
1188
1222
StartCrawlerScheduleCommand,
1189
1223
StartDataQualityRuleRecommendationRunCommand,
@@ -1196,6 +1230,7 @@ const commands = {
1196
1230
StartTriggerCommand,
1197
1231
StartWorkflowRunCommand,
1198
1232
StopColumnStatisticsTaskRunCommand,
1233
+ StopColumnStatisticsTaskRunScheduleCommand,
1199
1234
StopCrawlerCommand,
1200
1235
StopCrawlerScheduleCommand,
1201
1236
StopSessionCommand,
@@ -1208,6 +1243,7 @@ const commands = {
1208
1243
UpdateClassifierCommand,
1209
1244
UpdateColumnStatisticsForPartitionCommand,
1210
1245
UpdateColumnStatisticsForTableCommand,
1246
+ UpdateColumnStatisticsTaskSettingsCommand,
1211
1247
UpdateConnectionCommand,
1212
1248
UpdateCrawlerCommand,
1213
1249
UpdateCrawlerScheduleCommand,
@@ -1638,6 +1674,23 @@ export interface Glue {
1638
1674
cb : ( err : any , data ?: CreateClassifierCommandOutput ) => void
1639
1675
) : void ;
1640
1676
1677
+ /**
1678
+ * @see {@link CreateColumnStatisticsTaskSettingsCommand }
1679
+ */
1680
+ createColumnStatisticsTaskSettings (
1681
+ args : CreateColumnStatisticsTaskSettingsCommandInput ,
1682
+ options ?: __HttpHandlerOptions
1683
+ ) : Promise < CreateColumnStatisticsTaskSettingsCommandOutput > ;
1684
+ createColumnStatisticsTaskSettings (
1685
+ args : CreateColumnStatisticsTaskSettingsCommandInput ,
1686
+ cb : ( err : any , data ?: CreateColumnStatisticsTaskSettingsCommandOutput ) => void
1687
+ ) : void ;
1688
+ createColumnStatisticsTaskSettings (
1689
+ args : CreateColumnStatisticsTaskSettingsCommandInput ,
1690
+ options : __HttpHandlerOptions ,
1691
+ cb : ( err : any , data ?: CreateColumnStatisticsTaskSettingsCommandOutput ) => void
1692
+ ) : void ;
1693
+
1641
1694
/**
1642
1695
* @see {@link CreateConnectionCommand }
1643
1696
*/
@@ -2007,6 +2060,23 @@ export interface Glue {
2007
2060
cb : ( err : any , data ?: DeleteColumnStatisticsForTableCommandOutput ) => void
2008
2061
) : void ;
2009
2062
2063
+ /**
2064
+ * @see {@link DeleteColumnStatisticsTaskSettingsCommand }
2065
+ */
2066
+ deleteColumnStatisticsTaskSettings (
2067
+ args : DeleteColumnStatisticsTaskSettingsCommandInput ,
2068
+ options ?: __HttpHandlerOptions
2069
+ ) : Promise < DeleteColumnStatisticsTaskSettingsCommandOutput > ;
2070
+ deleteColumnStatisticsTaskSettings (
2071
+ args : DeleteColumnStatisticsTaskSettingsCommandInput ,
2072
+ cb : ( err : any , data ?: DeleteColumnStatisticsTaskSettingsCommandOutput ) => void
2073
+ ) : void ;
2074
+ deleteColumnStatisticsTaskSettings (
2075
+ args : DeleteColumnStatisticsTaskSettingsCommandInput ,
2076
+ options : __HttpHandlerOptions ,
2077
+ cb : ( err : any , data ?: DeleteColumnStatisticsTaskSettingsCommandOutput ) => void
2078
+ ) : void ;
2079
+
2010
2080
/**
2011
2081
* @see {@link DeleteConnectionCommand }
2012
2082
*/
@@ -2505,6 +2575,23 @@ export interface Glue {
2505
2575
cb : ( err : any , data ?: GetColumnStatisticsTaskRunsCommandOutput ) => void
2506
2576
) : void ;
2507
2577
2578
+ /**
2579
+ * @see {@link GetColumnStatisticsTaskSettingsCommand }
2580
+ */
2581
+ getColumnStatisticsTaskSettings (
2582
+ args : GetColumnStatisticsTaskSettingsCommandInput ,
2583
+ options ?: __HttpHandlerOptions
2584
+ ) : Promise < GetColumnStatisticsTaskSettingsCommandOutput > ;
2585
+ getColumnStatisticsTaskSettings (
2586
+ args : GetColumnStatisticsTaskSettingsCommandInput ,
2587
+ cb : ( err : any , data ?: GetColumnStatisticsTaskSettingsCommandOutput ) => void
2588
+ ) : void ;
2589
+ getColumnStatisticsTaskSettings (
2590
+ args : GetColumnStatisticsTaskSettingsCommandInput ,
2591
+ options : __HttpHandlerOptions ,
2592
+ cb : ( err : any , data ?: GetColumnStatisticsTaskSettingsCommandOutput ) => void
2593
+ ) : void ;
2594
+
2508
2595
/**
2509
2596
* @see {@link GetConnectionCommand }
2510
2597
*/
@@ -3981,6 +4068,23 @@ export interface Glue {
3981
4068
cb : ( err : any , data ?: StartColumnStatisticsTaskRunCommandOutput ) => void
3982
4069
) : void ;
3983
4070
4071
+ /**
4072
+ * @see {@link StartColumnStatisticsTaskRunScheduleCommand }
4073
+ */
4074
+ startColumnStatisticsTaskRunSchedule (
4075
+ args : StartColumnStatisticsTaskRunScheduleCommandInput ,
4076
+ options ?: __HttpHandlerOptions
4077
+ ) : Promise < StartColumnStatisticsTaskRunScheduleCommandOutput > ;
4078
+ startColumnStatisticsTaskRunSchedule (
4079
+ args : StartColumnStatisticsTaskRunScheduleCommandInput ,
4080
+ cb : ( err : any , data ?: StartColumnStatisticsTaskRunScheduleCommandOutput ) => void
4081
+ ) : void ;
4082
+ startColumnStatisticsTaskRunSchedule (
4083
+ args : StartColumnStatisticsTaskRunScheduleCommandInput ,
4084
+ options : __HttpHandlerOptions ,
4085
+ cb : ( err : any , data ?: StartColumnStatisticsTaskRunScheduleCommandOutput ) => void
4086
+ ) : void ;
4087
+
3984
4088
/**
3985
4089
* @see {@link StartCrawlerCommand }
3986
4090
*/
@@ -4167,6 +4271,23 @@ export interface Glue {
4167
4271
cb : ( err : any , data ?: StopColumnStatisticsTaskRunCommandOutput ) => void
4168
4272
) : void ;
4169
4273
4274
+ /**
4275
+ * @see {@link StopColumnStatisticsTaskRunScheduleCommand }
4276
+ */
4277
+ stopColumnStatisticsTaskRunSchedule (
4278
+ args : StopColumnStatisticsTaskRunScheduleCommandInput ,
4279
+ options ?: __HttpHandlerOptions
4280
+ ) : Promise < StopColumnStatisticsTaskRunScheduleCommandOutput > ;
4281
+ stopColumnStatisticsTaskRunSchedule (
4282
+ args : StopColumnStatisticsTaskRunScheduleCommandInput ,
4283
+ cb : ( err : any , data ?: StopColumnStatisticsTaskRunScheduleCommandOutput ) => void
4284
+ ) : void ;
4285
+ stopColumnStatisticsTaskRunSchedule (
4286
+ args : StopColumnStatisticsTaskRunScheduleCommandInput ,
4287
+ options : __HttpHandlerOptions ,
4288
+ cb : ( err : any , data ?: StopColumnStatisticsTaskRunScheduleCommandOutput ) => void
4289
+ ) : void ;
4290
+
4170
4291
/**
4171
4292
* @see {@link StopCrawlerCommand }
4172
4293
*/
@@ -4334,6 +4455,23 @@ export interface Glue {
4334
4455
cb : ( err : any , data ?: UpdateColumnStatisticsForTableCommandOutput ) => void
4335
4456
) : void ;
4336
4457
4458
+ /**
4459
+ * @see {@link UpdateColumnStatisticsTaskSettingsCommand }
4460
+ */
4461
+ updateColumnStatisticsTaskSettings (
4462
+ args : UpdateColumnStatisticsTaskSettingsCommandInput ,
4463
+ options ?: __HttpHandlerOptions
4464
+ ) : Promise < UpdateColumnStatisticsTaskSettingsCommandOutput > ;
4465
+ updateColumnStatisticsTaskSettings (
4466
+ args : UpdateColumnStatisticsTaskSettingsCommandInput ,
4467
+ cb : ( err : any , data ?: UpdateColumnStatisticsTaskSettingsCommandOutput ) => void
4468
+ ) : void ;
4469
+ updateColumnStatisticsTaskSettings (
4470
+ args : UpdateColumnStatisticsTaskSettingsCommandInput ,
4471
+ options : __HttpHandlerOptions ,
4472
+ cb : ( err : any , data ?: UpdateColumnStatisticsTaskSettingsCommandOutput ) => void
4473
+ ) : void ;
4474
+
4337
4475
/**
4338
4476
* @see {@link UpdateConnectionCommand }
4339
4477
*/
0 commit comments