@aws-sdk/client-glue 3.451.0 → 3.453.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 +40 -0
- package/dist-cjs/Glue.js +10 -0
- package/dist-cjs/commands/GetColumnStatisticsTaskRunCommand.js +51 -0
- package/dist-cjs/commands/GetColumnStatisticsTaskRunsCommand.js +51 -0
- package/dist-cjs/commands/ListColumnStatisticsTaskRunsCommand.js +51 -0
- package/dist-cjs/commands/StartColumnStatisticsTaskRunCommand.js +51 -0
- package/dist-cjs/commands/StopColumnStatisticsTaskRunCommand.js +51 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_1.js +8 -9
- package/dist-cjs/models/models_2.js +51 -1
- package/dist-cjs/pagination/GetColumnStatisticsTaskRunsPaginator.js +29 -0
- package/dist-cjs/pagination/ListColumnStatisticsTaskRunsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -1
- package/dist-cjs/protocols/Aws_json1_1.js +317 -8
- package/dist-es/Glue.js +10 -0
- package/dist-es/commands/GetColumnStatisticsTaskRunCommand.js +47 -0
- package/dist-es/commands/GetColumnStatisticsTaskRunsCommand.js +47 -0
- package/dist-es/commands/ListColumnStatisticsTaskRunsCommand.js +47 -0
- package/dist-es/commands/StartColumnStatisticsTaskRunCommand.js +47 -0
- package/dist-es/commands/StopColumnStatisticsTaskRunCommand.js +47 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_1.js +7 -8
- package/dist-es/models/models_2.js +47 -0
- package/dist-es/pagination/GetColumnStatisticsTaskRunsPaginator.js +25 -0
- package/dist-es/pagination/ListColumnStatisticsTaskRunsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -1
- package/dist-es/protocols/Aws_json1_1.js +300 -1
- package/dist-types/Glue.d.ts +35 -0
- package/dist-types/GlueClient.d.ts +7 -2
- package/dist-types/commands/GetColumnStatisticsTaskRunCommand.d.ts +103 -0
- package/dist-types/commands/GetColumnStatisticsTaskRunsCommand.d.ts +103 -0
- package/dist-types/commands/GetStatementCommand.d.ts +2 -1
- package/dist-types/commands/GetTableCommand.d.ts +1 -2
- package/dist-types/commands/ListColumnStatisticsTaskRunsCommand.d.ts +80 -0
- package/dist-types/commands/StartColumnStatisticsTaskRunCommand.d.ts +99 -0
- package/dist-types/commands/StopColumnStatisticsTaskRunCommand.d.ts +84 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_1.d.ts +171 -147
- package/dist-types/models/models_2.d.ts +299 -1
- package/dist-types/pagination/GetColumnStatisticsTaskRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListColumnStatisticsTaskRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -1
- package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
- package/dist-types/ts3.4/Glue.d.ts +85 -0
- package/dist-types/ts3.4/GlueClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/GetColumnStatisticsTaskRunCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetColumnStatisticsTaskRunsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetStatementCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetTableCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListColumnStatisticsTaskRunsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StopColumnStatisticsTaskRunCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_1.d.ts +45 -40
- package/dist-types/ts3.4/models/models_2.d.ts +98 -1
- package/dist-types/ts3.4/pagination/GetColumnStatisticsTaskRunsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListColumnStatisticsTaskRunsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -1
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
- package/package.json +1 -1
|
@@ -78,6 +78,8 @@ import { GetClassifierCommandInput, GetClassifierCommandOutput } from "../comman
|
|
|
78
78
|
import { GetClassifiersCommandInput, GetClassifiersCommandOutput } from "../commands/GetClassifiersCommand";
|
|
79
79
|
import { GetColumnStatisticsForPartitionCommandInput, GetColumnStatisticsForPartitionCommandOutput } from "../commands/GetColumnStatisticsForPartitionCommand";
|
|
80
80
|
import { GetColumnStatisticsForTableCommandInput, GetColumnStatisticsForTableCommandOutput } from "../commands/GetColumnStatisticsForTableCommand";
|
|
81
|
+
import { GetColumnStatisticsTaskRunCommandInput, GetColumnStatisticsTaskRunCommandOutput } from "../commands/GetColumnStatisticsTaskRunCommand";
|
|
82
|
+
import { GetColumnStatisticsTaskRunsCommandInput, GetColumnStatisticsTaskRunsCommandOutput } from "../commands/GetColumnStatisticsTaskRunsCommand";
|
|
81
83
|
import { GetConnectionCommandInput, GetConnectionCommandOutput } from "../commands/GetConnectionCommand";
|
|
82
84
|
import { GetConnectionsCommandInput, GetConnectionsCommandOutput } from "../commands/GetConnectionsCommand";
|
|
83
85
|
import { GetCrawlerCommandInput, GetCrawlerCommandOutput } from "../commands/GetCrawlerCommand";
|
|
@@ -138,6 +140,7 @@ import { GetWorkflowRunPropertiesCommandInput, GetWorkflowRunPropertiesCommandOu
|
|
|
138
140
|
import { GetWorkflowRunsCommandInput, GetWorkflowRunsCommandOutput } from "../commands/GetWorkflowRunsCommand";
|
|
139
141
|
import { ImportCatalogToGlueCommandInput, ImportCatalogToGlueCommandOutput } from "../commands/ImportCatalogToGlueCommand";
|
|
140
142
|
import { ListBlueprintsCommandInput, ListBlueprintsCommandOutput } from "../commands/ListBlueprintsCommand";
|
|
143
|
+
import { ListColumnStatisticsTaskRunsCommandInput, ListColumnStatisticsTaskRunsCommandOutput } from "../commands/ListColumnStatisticsTaskRunsCommand";
|
|
141
144
|
import { ListCrawlersCommandInput, ListCrawlersCommandOutput } from "../commands/ListCrawlersCommand";
|
|
142
145
|
import { ListCrawlsCommandInput, ListCrawlsCommandOutput } from "../commands/ListCrawlsCommand";
|
|
143
146
|
import { ListCustomEntityTypesCommandInput, ListCustomEntityTypesCommandOutput } from "../commands/ListCustomEntityTypesCommand";
|
|
@@ -168,6 +171,7 @@ import { ResumeWorkflowRunCommandInput, ResumeWorkflowRunCommandOutput } from ".
|
|
|
168
171
|
import { RunStatementCommandInput, RunStatementCommandOutput } from "../commands/RunStatementCommand";
|
|
169
172
|
import { SearchTablesCommandInput, SearchTablesCommandOutput } from "../commands/SearchTablesCommand";
|
|
170
173
|
import { StartBlueprintRunCommandInput, StartBlueprintRunCommandOutput } from "../commands/StartBlueprintRunCommand";
|
|
174
|
+
import { StartColumnStatisticsTaskRunCommandInput, StartColumnStatisticsTaskRunCommandOutput } from "../commands/StartColumnStatisticsTaskRunCommand";
|
|
171
175
|
import { StartCrawlerCommandInput, StartCrawlerCommandOutput } from "../commands/StartCrawlerCommand";
|
|
172
176
|
import { StartCrawlerScheduleCommandInput, StartCrawlerScheduleCommandOutput } from "../commands/StartCrawlerScheduleCommand";
|
|
173
177
|
import { StartDataQualityRuleRecommendationRunCommandInput, StartDataQualityRuleRecommendationRunCommandOutput } from "../commands/StartDataQualityRuleRecommendationRunCommand";
|
|
@@ -179,6 +183,7 @@ import { StartMLEvaluationTaskRunCommandInput, StartMLEvaluationTaskRunCommandOu
|
|
|
179
183
|
import { StartMLLabelingSetGenerationTaskRunCommandInput, StartMLLabelingSetGenerationTaskRunCommandOutput } from "../commands/StartMLLabelingSetGenerationTaskRunCommand";
|
|
180
184
|
import { StartTriggerCommandInput, StartTriggerCommandOutput } from "../commands/StartTriggerCommand";
|
|
181
185
|
import { StartWorkflowRunCommandInput, StartWorkflowRunCommandOutput } from "../commands/StartWorkflowRunCommand";
|
|
186
|
+
import { StopColumnStatisticsTaskRunCommandInput, StopColumnStatisticsTaskRunCommandOutput } from "../commands/StopColumnStatisticsTaskRunCommand";
|
|
182
187
|
import { StopCrawlerCommandInput, StopCrawlerCommandOutput } from "../commands/StopCrawlerCommand";
|
|
183
188
|
import { StopCrawlerScheduleCommandInput, StopCrawlerScheduleCommandOutput } from "../commands/StopCrawlerScheduleCommand";
|
|
184
189
|
import { StopSessionCommandInput, StopSessionCommandOutput } from "../commands/StopSessionCommand";
|
|
@@ -520,6 +525,14 @@ export declare const se_GetColumnStatisticsForPartitionCommand: (input: GetColum
|
|
|
520
525
|
* serializeAws_json1_1GetColumnStatisticsForTableCommand
|
|
521
526
|
*/
|
|
522
527
|
export declare const se_GetColumnStatisticsForTableCommand: (input: GetColumnStatisticsForTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
528
|
+
/**
|
|
529
|
+
* serializeAws_json1_1GetColumnStatisticsTaskRunCommand
|
|
530
|
+
*/
|
|
531
|
+
export declare const se_GetColumnStatisticsTaskRunCommand: (input: GetColumnStatisticsTaskRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
532
|
+
/**
|
|
533
|
+
* serializeAws_json1_1GetColumnStatisticsTaskRunsCommand
|
|
534
|
+
*/
|
|
535
|
+
export declare const se_GetColumnStatisticsTaskRunsCommand: (input: GetColumnStatisticsTaskRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
523
536
|
/**
|
|
524
537
|
* serializeAws_json1_1GetConnectionCommand
|
|
525
538
|
*/
|
|
@@ -760,6 +773,10 @@ export declare const se_ImportCatalogToGlueCommand: (input: ImportCatalogToGlueC
|
|
|
760
773
|
* serializeAws_json1_1ListBlueprintsCommand
|
|
761
774
|
*/
|
|
762
775
|
export declare const se_ListBlueprintsCommand: (input: ListBlueprintsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
776
|
+
/**
|
|
777
|
+
* serializeAws_json1_1ListColumnStatisticsTaskRunsCommand
|
|
778
|
+
*/
|
|
779
|
+
export declare const se_ListColumnStatisticsTaskRunsCommand: (input: ListColumnStatisticsTaskRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
763
780
|
/**
|
|
764
781
|
* serializeAws_json1_1ListCrawlersCommand
|
|
765
782
|
*/
|
|
@@ -880,6 +897,10 @@ export declare const se_SearchTablesCommand: (input: SearchTablesCommandInput, c
|
|
|
880
897
|
* serializeAws_json1_1StartBlueprintRunCommand
|
|
881
898
|
*/
|
|
882
899
|
export declare const se_StartBlueprintRunCommand: (input: StartBlueprintRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
900
|
+
/**
|
|
901
|
+
* serializeAws_json1_1StartColumnStatisticsTaskRunCommand
|
|
902
|
+
*/
|
|
903
|
+
export declare const se_StartColumnStatisticsTaskRunCommand: (input: StartColumnStatisticsTaskRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
883
904
|
/**
|
|
884
905
|
* serializeAws_json1_1StartCrawlerCommand
|
|
885
906
|
*/
|
|
@@ -924,6 +945,10 @@ export declare const se_StartTriggerCommand: (input: StartTriggerCommandInput, c
|
|
|
924
945
|
* serializeAws_json1_1StartWorkflowRunCommand
|
|
925
946
|
*/
|
|
926
947
|
export declare const se_StartWorkflowRunCommand: (input: StartWorkflowRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
948
|
+
/**
|
|
949
|
+
* serializeAws_json1_1StopColumnStatisticsTaskRunCommand
|
|
950
|
+
*/
|
|
951
|
+
export declare const se_StopColumnStatisticsTaskRunCommand: (input: StopColumnStatisticsTaskRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
927
952
|
/**
|
|
928
953
|
* serializeAws_json1_1StopCrawlerCommand
|
|
929
954
|
*/
|
|
@@ -1352,6 +1377,14 @@ export declare const de_GetColumnStatisticsForPartitionCommand: (output: __HttpR
|
|
|
1352
1377
|
* deserializeAws_json1_1GetColumnStatisticsForTableCommand
|
|
1353
1378
|
*/
|
|
1354
1379
|
export declare const de_GetColumnStatisticsForTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetColumnStatisticsForTableCommandOutput>;
|
|
1380
|
+
/**
|
|
1381
|
+
* deserializeAws_json1_1GetColumnStatisticsTaskRunCommand
|
|
1382
|
+
*/
|
|
1383
|
+
export declare const de_GetColumnStatisticsTaskRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetColumnStatisticsTaskRunCommandOutput>;
|
|
1384
|
+
/**
|
|
1385
|
+
* deserializeAws_json1_1GetColumnStatisticsTaskRunsCommand
|
|
1386
|
+
*/
|
|
1387
|
+
export declare const de_GetColumnStatisticsTaskRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetColumnStatisticsTaskRunsCommandOutput>;
|
|
1355
1388
|
/**
|
|
1356
1389
|
* deserializeAws_json1_1GetConnectionCommand
|
|
1357
1390
|
*/
|
|
@@ -1592,6 +1625,10 @@ export declare const de_ImportCatalogToGlueCommand: (output: __HttpResponse, con
|
|
|
1592
1625
|
* deserializeAws_json1_1ListBlueprintsCommand
|
|
1593
1626
|
*/
|
|
1594
1627
|
export declare const de_ListBlueprintsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBlueprintsCommandOutput>;
|
|
1628
|
+
/**
|
|
1629
|
+
* deserializeAws_json1_1ListColumnStatisticsTaskRunsCommand
|
|
1630
|
+
*/
|
|
1631
|
+
export declare const de_ListColumnStatisticsTaskRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListColumnStatisticsTaskRunsCommandOutput>;
|
|
1595
1632
|
/**
|
|
1596
1633
|
* deserializeAws_json1_1ListCrawlersCommand
|
|
1597
1634
|
*/
|
|
@@ -1712,6 +1749,10 @@ export declare const de_SearchTablesCommand: (output: __HttpResponse, context: _
|
|
|
1712
1749
|
* deserializeAws_json1_1StartBlueprintRunCommand
|
|
1713
1750
|
*/
|
|
1714
1751
|
export declare const de_StartBlueprintRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartBlueprintRunCommandOutput>;
|
|
1752
|
+
/**
|
|
1753
|
+
* deserializeAws_json1_1StartColumnStatisticsTaskRunCommand
|
|
1754
|
+
*/
|
|
1755
|
+
export declare const de_StartColumnStatisticsTaskRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartColumnStatisticsTaskRunCommandOutput>;
|
|
1715
1756
|
/**
|
|
1716
1757
|
* deserializeAws_json1_1StartCrawlerCommand
|
|
1717
1758
|
*/
|
|
@@ -1756,6 +1797,10 @@ export declare const de_StartTriggerCommand: (output: __HttpResponse, context: _
|
|
|
1756
1797
|
* deserializeAws_json1_1StartWorkflowRunCommand
|
|
1757
1798
|
*/
|
|
1758
1799
|
export declare const de_StartWorkflowRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartWorkflowRunCommandOutput>;
|
|
1800
|
+
/**
|
|
1801
|
+
* deserializeAws_json1_1StopColumnStatisticsTaskRunCommand
|
|
1802
|
+
*/
|
|
1803
|
+
export declare const de_StopColumnStatisticsTaskRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopColumnStatisticsTaskRunCommandOutput>;
|
|
1759
1804
|
/**
|
|
1760
1805
|
* deserializeAws_json1_1StopCrawlerCommand
|
|
1761
1806
|
*/
|
|
@@ -311,6 +311,14 @@ import {
|
|
|
311
311
|
GetColumnStatisticsForTableCommandInput,
|
|
312
312
|
GetColumnStatisticsForTableCommandOutput,
|
|
313
313
|
} from "./commands/GetColumnStatisticsForTableCommand";
|
|
314
|
+
import {
|
|
315
|
+
GetColumnStatisticsTaskRunCommandInput,
|
|
316
|
+
GetColumnStatisticsTaskRunCommandOutput,
|
|
317
|
+
} from "./commands/GetColumnStatisticsTaskRunCommand";
|
|
318
|
+
import {
|
|
319
|
+
GetColumnStatisticsTaskRunsCommandInput,
|
|
320
|
+
GetColumnStatisticsTaskRunsCommandOutput,
|
|
321
|
+
} from "./commands/GetColumnStatisticsTaskRunsCommand";
|
|
314
322
|
import {
|
|
315
323
|
GetConnectionCommandInput,
|
|
316
324
|
GetConnectionCommandOutput,
|
|
@@ -551,6 +559,10 @@ import {
|
|
|
551
559
|
ListBlueprintsCommandInput,
|
|
552
560
|
ListBlueprintsCommandOutput,
|
|
553
561
|
} from "./commands/ListBlueprintsCommand";
|
|
562
|
+
import {
|
|
563
|
+
ListColumnStatisticsTaskRunsCommandInput,
|
|
564
|
+
ListColumnStatisticsTaskRunsCommandOutput,
|
|
565
|
+
} from "./commands/ListColumnStatisticsTaskRunsCommand";
|
|
554
566
|
import {
|
|
555
567
|
ListCrawlersCommandInput,
|
|
556
568
|
ListCrawlersCommandOutput,
|
|
@@ -671,6 +683,10 @@ import {
|
|
|
671
683
|
StartBlueprintRunCommandInput,
|
|
672
684
|
StartBlueprintRunCommandOutput,
|
|
673
685
|
} from "./commands/StartBlueprintRunCommand";
|
|
686
|
+
import {
|
|
687
|
+
StartColumnStatisticsTaskRunCommandInput,
|
|
688
|
+
StartColumnStatisticsTaskRunCommandOutput,
|
|
689
|
+
} from "./commands/StartColumnStatisticsTaskRunCommand";
|
|
674
690
|
import {
|
|
675
691
|
StartCrawlerCommandInput,
|
|
676
692
|
StartCrawlerCommandOutput,
|
|
@@ -715,6 +731,10 @@ import {
|
|
|
715
731
|
StartWorkflowRunCommandInput,
|
|
716
732
|
StartWorkflowRunCommandOutput,
|
|
717
733
|
} from "./commands/StartWorkflowRunCommand";
|
|
734
|
+
import {
|
|
735
|
+
StopColumnStatisticsTaskRunCommandInput,
|
|
736
|
+
StopColumnStatisticsTaskRunCommandOutput,
|
|
737
|
+
} from "./commands/StopColumnStatisticsTaskRunCommand";
|
|
718
738
|
import {
|
|
719
739
|
StopCrawlerCommandInput,
|
|
720
740
|
StopCrawlerCommandOutput,
|
|
@@ -1865,6 +1885,32 @@ export interface Glue {
|
|
|
1865
1885
|
options: __HttpHandlerOptions,
|
|
1866
1886
|
cb: (err: any, data?: GetColumnStatisticsForTableCommandOutput) => void
|
|
1867
1887
|
): void;
|
|
1888
|
+
getColumnStatisticsTaskRun(
|
|
1889
|
+
args: GetColumnStatisticsTaskRunCommandInput,
|
|
1890
|
+
options?: __HttpHandlerOptions
|
|
1891
|
+
): Promise<GetColumnStatisticsTaskRunCommandOutput>;
|
|
1892
|
+
getColumnStatisticsTaskRun(
|
|
1893
|
+
args: GetColumnStatisticsTaskRunCommandInput,
|
|
1894
|
+
cb: (err: any, data?: GetColumnStatisticsTaskRunCommandOutput) => void
|
|
1895
|
+
): void;
|
|
1896
|
+
getColumnStatisticsTaskRun(
|
|
1897
|
+
args: GetColumnStatisticsTaskRunCommandInput,
|
|
1898
|
+
options: __HttpHandlerOptions,
|
|
1899
|
+
cb: (err: any, data?: GetColumnStatisticsTaskRunCommandOutput) => void
|
|
1900
|
+
): void;
|
|
1901
|
+
getColumnStatisticsTaskRuns(
|
|
1902
|
+
args: GetColumnStatisticsTaskRunsCommandInput,
|
|
1903
|
+
options?: __HttpHandlerOptions
|
|
1904
|
+
): Promise<GetColumnStatisticsTaskRunsCommandOutput>;
|
|
1905
|
+
getColumnStatisticsTaskRuns(
|
|
1906
|
+
args: GetColumnStatisticsTaskRunsCommandInput,
|
|
1907
|
+
cb: (err: any, data?: GetColumnStatisticsTaskRunsCommandOutput) => void
|
|
1908
|
+
): void;
|
|
1909
|
+
getColumnStatisticsTaskRuns(
|
|
1910
|
+
args: GetColumnStatisticsTaskRunsCommandInput,
|
|
1911
|
+
options: __HttpHandlerOptions,
|
|
1912
|
+
cb: (err: any, data?: GetColumnStatisticsTaskRunsCommandOutput) => void
|
|
1913
|
+
): void;
|
|
1868
1914
|
getConnection(
|
|
1869
1915
|
args: GetConnectionCommandInput,
|
|
1870
1916
|
options?: __HttpHandlerOptions
|
|
@@ -2657,6 +2703,19 @@ export interface Glue {
|
|
|
2657
2703
|
options: __HttpHandlerOptions,
|
|
2658
2704
|
cb: (err: any, data?: ListBlueprintsCommandOutput) => void
|
|
2659
2705
|
): void;
|
|
2706
|
+
listColumnStatisticsTaskRuns(
|
|
2707
|
+
args: ListColumnStatisticsTaskRunsCommandInput,
|
|
2708
|
+
options?: __HttpHandlerOptions
|
|
2709
|
+
): Promise<ListColumnStatisticsTaskRunsCommandOutput>;
|
|
2710
|
+
listColumnStatisticsTaskRuns(
|
|
2711
|
+
args: ListColumnStatisticsTaskRunsCommandInput,
|
|
2712
|
+
cb: (err: any, data?: ListColumnStatisticsTaskRunsCommandOutput) => void
|
|
2713
|
+
): void;
|
|
2714
|
+
listColumnStatisticsTaskRuns(
|
|
2715
|
+
args: ListColumnStatisticsTaskRunsCommandInput,
|
|
2716
|
+
options: __HttpHandlerOptions,
|
|
2717
|
+
cb: (err: any, data?: ListColumnStatisticsTaskRunsCommandOutput) => void
|
|
2718
|
+
): void;
|
|
2660
2719
|
listCrawlers(
|
|
2661
2720
|
args: ListCrawlersCommandInput,
|
|
2662
2721
|
options?: __HttpHandlerOptions
|
|
@@ -3059,6 +3118,19 @@ export interface Glue {
|
|
|
3059
3118
|
options: __HttpHandlerOptions,
|
|
3060
3119
|
cb: (err: any, data?: StartBlueprintRunCommandOutput) => void
|
|
3061
3120
|
): void;
|
|
3121
|
+
startColumnStatisticsTaskRun(
|
|
3122
|
+
args: StartColumnStatisticsTaskRunCommandInput,
|
|
3123
|
+
options?: __HttpHandlerOptions
|
|
3124
|
+
): Promise<StartColumnStatisticsTaskRunCommandOutput>;
|
|
3125
|
+
startColumnStatisticsTaskRun(
|
|
3126
|
+
args: StartColumnStatisticsTaskRunCommandInput,
|
|
3127
|
+
cb: (err: any, data?: StartColumnStatisticsTaskRunCommandOutput) => void
|
|
3128
|
+
): void;
|
|
3129
|
+
startColumnStatisticsTaskRun(
|
|
3130
|
+
args: StartColumnStatisticsTaskRunCommandInput,
|
|
3131
|
+
options: __HttpHandlerOptions,
|
|
3132
|
+
cb: (err: any, data?: StartColumnStatisticsTaskRunCommandOutput) => void
|
|
3133
|
+
): void;
|
|
3062
3134
|
startCrawler(
|
|
3063
3135
|
args: StartCrawlerCommandInput,
|
|
3064
3136
|
options?: __HttpHandlerOptions
|
|
@@ -3220,6 +3292,19 @@ export interface Glue {
|
|
|
3220
3292
|
options: __HttpHandlerOptions,
|
|
3221
3293
|
cb: (err: any, data?: StartWorkflowRunCommandOutput) => void
|
|
3222
3294
|
): void;
|
|
3295
|
+
stopColumnStatisticsTaskRun(
|
|
3296
|
+
args: StopColumnStatisticsTaskRunCommandInput,
|
|
3297
|
+
options?: __HttpHandlerOptions
|
|
3298
|
+
): Promise<StopColumnStatisticsTaskRunCommandOutput>;
|
|
3299
|
+
stopColumnStatisticsTaskRun(
|
|
3300
|
+
args: StopColumnStatisticsTaskRunCommandInput,
|
|
3301
|
+
cb: (err: any, data?: StopColumnStatisticsTaskRunCommandOutput) => void
|
|
3302
|
+
): void;
|
|
3303
|
+
stopColumnStatisticsTaskRun(
|
|
3304
|
+
args: StopColumnStatisticsTaskRunCommandInput,
|
|
3305
|
+
options: __HttpHandlerOptions,
|
|
3306
|
+
cb: (err: any, data?: StopColumnStatisticsTaskRunCommandOutput) => void
|
|
3307
|
+
): void;
|
|
3223
3308
|
stopCrawler(
|
|
3224
3309
|
args: StopCrawlerCommandInput,
|
|
3225
3310
|
options?: __HttpHandlerOptions
|
|
@@ -357,6 +357,14 @@ import {
|
|
|
357
357
|
GetColumnStatisticsForTableCommandInput,
|
|
358
358
|
GetColumnStatisticsForTableCommandOutput,
|
|
359
359
|
} from "./commands/GetColumnStatisticsForTableCommand";
|
|
360
|
+
import {
|
|
361
|
+
GetColumnStatisticsTaskRunCommandInput,
|
|
362
|
+
GetColumnStatisticsTaskRunCommandOutput,
|
|
363
|
+
} from "./commands/GetColumnStatisticsTaskRunCommand";
|
|
364
|
+
import {
|
|
365
|
+
GetColumnStatisticsTaskRunsCommandInput,
|
|
366
|
+
GetColumnStatisticsTaskRunsCommandOutput,
|
|
367
|
+
} from "./commands/GetColumnStatisticsTaskRunsCommand";
|
|
360
368
|
import {
|
|
361
369
|
GetConnectionCommandInput,
|
|
362
370
|
GetConnectionCommandOutput,
|
|
@@ -597,6 +605,10 @@ import {
|
|
|
597
605
|
ListBlueprintsCommandInput,
|
|
598
606
|
ListBlueprintsCommandOutput,
|
|
599
607
|
} from "./commands/ListBlueprintsCommand";
|
|
608
|
+
import {
|
|
609
|
+
ListColumnStatisticsTaskRunsCommandInput,
|
|
610
|
+
ListColumnStatisticsTaskRunsCommandOutput,
|
|
611
|
+
} from "./commands/ListColumnStatisticsTaskRunsCommand";
|
|
600
612
|
import {
|
|
601
613
|
ListCrawlersCommandInput,
|
|
602
614
|
ListCrawlersCommandOutput,
|
|
@@ -717,6 +729,10 @@ import {
|
|
|
717
729
|
StartBlueprintRunCommandInput,
|
|
718
730
|
StartBlueprintRunCommandOutput,
|
|
719
731
|
} from "./commands/StartBlueprintRunCommand";
|
|
732
|
+
import {
|
|
733
|
+
StartColumnStatisticsTaskRunCommandInput,
|
|
734
|
+
StartColumnStatisticsTaskRunCommandOutput,
|
|
735
|
+
} from "./commands/StartColumnStatisticsTaskRunCommand";
|
|
720
736
|
import {
|
|
721
737
|
StartCrawlerCommandInput,
|
|
722
738
|
StartCrawlerCommandOutput,
|
|
@@ -761,6 +777,10 @@ import {
|
|
|
761
777
|
StartWorkflowRunCommandInput,
|
|
762
778
|
StartWorkflowRunCommandOutput,
|
|
763
779
|
} from "./commands/StartWorkflowRunCommand";
|
|
780
|
+
import {
|
|
781
|
+
StopColumnStatisticsTaskRunCommandInput,
|
|
782
|
+
StopColumnStatisticsTaskRunCommandOutput,
|
|
783
|
+
} from "./commands/StopColumnStatisticsTaskRunCommand";
|
|
764
784
|
import {
|
|
765
785
|
StopCrawlerCommandInput,
|
|
766
786
|
StopCrawlerCommandOutput,
|
|
@@ -963,6 +983,8 @@ export type ServiceInputTypes =
|
|
|
963
983
|
| GetClassifiersCommandInput
|
|
964
984
|
| GetColumnStatisticsForPartitionCommandInput
|
|
965
985
|
| GetColumnStatisticsForTableCommandInput
|
|
986
|
+
| GetColumnStatisticsTaskRunCommandInput
|
|
987
|
+
| GetColumnStatisticsTaskRunsCommandInput
|
|
966
988
|
| GetConnectionCommandInput
|
|
967
989
|
| GetConnectionsCommandInput
|
|
968
990
|
| GetCrawlerCommandInput
|
|
@@ -1023,6 +1045,7 @@ export type ServiceInputTypes =
|
|
|
1023
1045
|
| GetWorkflowRunsCommandInput
|
|
1024
1046
|
| ImportCatalogToGlueCommandInput
|
|
1025
1047
|
| ListBlueprintsCommandInput
|
|
1048
|
+
| ListColumnStatisticsTaskRunsCommandInput
|
|
1026
1049
|
| ListCrawlersCommandInput
|
|
1027
1050
|
| ListCrawlsCommandInput
|
|
1028
1051
|
| ListCustomEntityTypesCommandInput
|
|
@@ -1053,6 +1076,7 @@ export type ServiceInputTypes =
|
|
|
1053
1076
|
| RunStatementCommandInput
|
|
1054
1077
|
| SearchTablesCommandInput
|
|
1055
1078
|
| StartBlueprintRunCommandInput
|
|
1079
|
+
| StartColumnStatisticsTaskRunCommandInput
|
|
1056
1080
|
| StartCrawlerCommandInput
|
|
1057
1081
|
| StartCrawlerScheduleCommandInput
|
|
1058
1082
|
| StartDataQualityRuleRecommendationRunCommandInput
|
|
@@ -1064,6 +1088,7 @@ export type ServiceInputTypes =
|
|
|
1064
1088
|
| StartMLLabelingSetGenerationTaskRunCommandInput
|
|
1065
1089
|
| StartTriggerCommandInput
|
|
1066
1090
|
| StartWorkflowRunCommandInput
|
|
1091
|
+
| StopColumnStatisticsTaskRunCommandInput
|
|
1067
1092
|
| StopCrawlerCommandInput
|
|
1068
1093
|
| StopCrawlerScheduleCommandInput
|
|
1069
1094
|
| StopSessionCommandInput
|
|
@@ -1172,6 +1197,8 @@ export type ServiceOutputTypes =
|
|
|
1172
1197
|
| GetClassifiersCommandOutput
|
|
1173
1198
|
| GetColumnStatisticsForPartitionCommandOutput
|
|
1174
1199
|
| GetColumnStatisticsForTableCommandOutput
|
|
1200
|
+
| GetColumnStatisticsTaskRunCommandOutput
|
|
1201
|
+
| GetColumnStatisticsTaskRunsCommandOutput
|
|
1175
1202
|
| GetConnectionCommandOutput
|
|
1176
1203
|
| GetConnectionsCommandOutput
|
|
1177
1204
|
| GetCrawlerCommandOutput
|
|
@@ -1232,6 +1259,7 @@ export type ServiceOutputTypes =
|
|
|
1232
1259
|
| GetWorkflowRunsCommandOutput
|
|
1233
1260
|
| ImportCatalogToGlueCommandOutput
|
|
1234
1261
|
| ListBlueprintsCommandOutput
|
|
1262
|
+
| ListColumnStatisticsTaskRunsCommandOutput
|
|
1235
1263
|
| ListCrawlersCommandOutput
|
|
1236
1264
|
| ListCrawlsCommandOutput
|
|
1237
1265
|
| ListCustomEntityTypesCommandOutput
|
|
@@ -1262,6 +1290,7 @@ export type ServiceOutputTypes =
|
|
|
1262
1290
|
| RunStatementCommandOutput
|
|
1263
1291
|
| SearchTablesCommandOutput
|
|
1264
1292
|
| StartBlueprintRunCommandOutput
|
|
1293
|
+
| StartColumnStatisticsTaskRunCommandOutput
|
|
1265
1294
|
| StartCrawlerCommandOutput
|
|
1266
1295
|
| StartCrawlerScheduleCommandOutput
|
|
1267
1296
|
| StartDataQualityRuleRecommendationRunCommandOutput
|
|
@@ -1273,6 +1302,7 @@ export type ServiceOutputTypes =
|
|
|
1273
1302
|
| StartMLLabelingSetGenerationTaskRunCommandOutput
|
|
1274
1303
|
| StartTriggerCommandOutput
|
|
1275
1304
|
| StartWorkflowRunCommandOutput
|
|
1305
|
+
| StopColumnStatisticsTaskRunCommandOutput
|
|
1276
1306
|
| StopCrawlerCommandOutput
|
|
1277
1307
|
| StopCrawlerScheduleCommandOutput
|
|
1278
1308
|
| StopSessionCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GlueClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../GlueClient";
|
|
14
|
+
import {
|
|
15
|
+
GetColumnStatisticsTaskRunRequest,
|
|
16
|
+
GetColumnStatisticsTaskRunResponse,
|
|
17
|
+
} from "../models/models_1";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetColumnStatisticsTaskRunCommandInput
|
|
20
|
+
extends GetColumnStatisticsTaskRunRequest {}
|
|
21
|
+
export interface GetColumnStatisticsTaskRunCommandOutput
|
|
22
|
+
extends GetColumnStatisticsTaskRunResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetColumnStatisticsTaskRunCommand extends $Command<
|
|
25
|
+
GetColumnStatisticsTaskRunCommandInput,
|
|
26
|
+
GetColumnStatisticsTaskRunCommandOutput,
|
|
27
|
+
GlueClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetColumnStatisticsTaskRunCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetColumnStatisticsTaskRunCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: GlueClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetColumnStatisticsTaskRunCommandInput,
|
|
38
|
+
GetColumnStatisticsTaskRunCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GlueClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../GlueClient";
|
|
14
|
+
import {
|
|
15
|
+
GetColumnStatisticsTaskRunsRequest,
|
|
16
|
+
GetColumnStatisticsTaskRunsResponse,
|
|
17
|
+
} from "../models/models_1";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetColumnStatisticsTaskRunsCommandInput
|
|
20
|
+
extends GetColumnStatisticsTaskRunsRequest {}
|
|
21
|
+
export interface GetColumnStatisticsTaskRunsCommandOutput
|
|
22
|
+
extends GetColumnStatisticsTaskRunsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetColumnStatisticsTaskRunsCommand extends $Command<
|
|
25
|
+
GetColumnStatisticsTaskRunsCommandInput,
|
|
26
|
+
GetColumnStatisticsTaskRunsCommandOutput,
|
|
27
|
+
GlueClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetColumnStatisticsTaskRunsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetColumnStatisticsTaskRunsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: GlueClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetColumnStatisticsTaskRunsCommandInput,
|
|
38
|
+
GetColumnStatisticsTaskRunsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -11,7 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../GlueClient";
|
|
14
|
-
import { GetStatementRequest
|
|
14
|
+
import { GetStatementRequest } from "../models/models_1";
|
|
15
|
+
import { GetStatementResponse } from "../models/models_2";
|
|
15
16
|
export { __MetadataBearer, $Command };
|
|
16
17
|
export interface GetStatementCommandInput extends GetStatementRequest {}
|
|
17
18
|
export interface GetStatementCommandOutput
|
|
@@ -11,8 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../GlueClient";
|
|
14
|
-
import { GetTableRequest } from "../models/
|
|
15
|
-
import { GetTableResponse } from "../models/models_2";
|
|
14
|
+
import { GetTableRequest, GetTableResponse } from "../models/models_2";
|
|
16
15
|
export { __MetadataBearer, $Command };
|
|
17
16
|
export interface GetTableCommandInput extends GetTableRequest {}
|
|
18
17
|
export interface GetTableCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GlueClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../GlueClient";
|
|
14
|
+
import {
|
|
15
|
+
ListColumnStatisticsTaskRunsRequest,
|
|
16
|
+
ListColumnStatisticsTaskRunsResponse,
|
|
17
|
+
} from "../models/models_2";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListColumnStatisticsTaskRunsCommandInput
|
|
20
|
+
extends ListColumnStatisticsTaskRunsRequest {}
|
|
21
|
+
export interface ListColumnStatisticsTaskRunsCommandOutput
|
|
22
|
+
extends ListColumnStatisticsTaskRunsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListColumnStatisticsTaskRunsCommand extends $Command<
|
|
25
|
+
ListColumnStatisticsTaskRunsCommandInput,
|
|
26
|
+
ListColumnStatisticsTaskRunsCommandOutput,
|
|
27
|
+
GlueClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListColumnStatisticsTaskRunsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListColumnStatisticsTaskRunsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: GlueClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListColumnStatisticsTaskRunsCommandInput,
|
|
38
|
+
ListColumnStatisticsTaskRunsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GlueClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../GlueClient";
|
|
14
|
+
import {
|
|
15
|
+
StartColumnStatisticsTaskRunRequest,
|
|
16
|
+
StartColumnStatisticsTaskRunResponse,
|
|
17
|
+
} from "../models/models_2";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartColumnStatisticsTaskRunCommandInput
|
|
20
|
+
extends StartColumnStatisticsTaskRunRequest {}
|
|
21
|
+
export interface StartColumnStatisticsTaskRunCommandOutput
|
|
22
|
+
extends StartColumnStatisticsTaskRunResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class StartColumnStatisticsTaskRunCommand extends $Command<
|
|
25
|
+
StartColumnStatisticsTaskRunCommandInput,
|
|
26
|
+
StartColumnStatisticsTaskRunCommandOutput,
|
|
27
|
+
GlueClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: StartColumnStatisticsTaskRunCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: StartColumnStatisticsTaskRunCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: GlueClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
StartColumnStatisticsTaskRunCommandInput,
|
|
38
|
+
StartColumnStatisticsTaskRunCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GlueClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../GlueClient";
|
|
14
|
+
import {
|
|
15
|
+
StopColumnStatisticsTaskRunRequest,
|
|
16
|
+
StopColumnStatisticsTaskRunResponse,
|
|
17
|
+
} from "../models/models_2";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StopColumnStatisticsTaskRunCommandInput
|
|
20
|
+
extends StopColumnStatisticsTaskRunRequest {}
|
|
21
|
+
export interface StopColumnStatisticsTaskRunCommandOutput
|
|
22
|
+
extends StopColumnStatisticsTaskRunResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class StopColumnStatisticsTaskRunCommand extends $Command<
|
|
25
|
+
StopColumnStatisticsTaskRunCommandInput,
|
|
26
|
+
StopColumnStatisticsTaskRunCommandOutput,
|
|
27
|
+
GlueClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: StopColumnStatisticsTaskRunCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: StopColumnStatisticsTaskRunCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: GlueClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
StopColumnStatisticsTaskRunCommandInput,
|
|
38
|
+
StopColumnStatisticsTaskRunCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -76,6 +76,8 @@ export * from "./GetClassifierCommand";
|
|
|
76
76
|
export * from "./GetClassifiersCommand";
|
|
77
77
|
export * from "./GetColumnStatisticsForPartitionCommand";
|
|
78
78
|
export * from "./GetColumnStatisticsForTableCommand";
|
|
79
|
+
export * from "./GetColumnStatisticsTaskRunCommand";
|
|
80
|
+
export * from "./GetColumnStatisticsTaskRunsCommand";
|
|
79
81
|
export * from "./GetConnectionCommand";
|
|
80
82
|
export * from "./GetConnectionsCommand";
|
|
81
83
|
export * from "./GetCrawlerCommand";
|
|
@@ -136,6 +138,7 @@ export * from "./GetWorkflowRunPropertiesCommand";
|
|
|
136
138
|
export * from "./GetWorkflowRunsCommand";
|
|
137
139
|
export * from "./ImportCatalogToGlueCommand";
|
|
138
140
|
export * from "./ListBlueprintsCommand";
|
|
141
|
+
export * from "./ListColumnStatisticsTaskRunsCommand";
|
|
139
142
|
export * from "./ListCrawlersCommand";
|
|
140
143
|
export * from "./ListCrawlsCommand";
|
|
141
144
|
export * from "./ListCustomEntityTypesCommand";
|
|
@@ -166,6 +169,7 @@ export * from "./ResumeWorkflowRunCommand";
|
|
|
166
169
|
export * from "./RunStatementCommand";
|
|
167
170
|
export * from "./SearchTablesCommand";
|
|
168
171
|
export * from "./StartBlueprintRunCommand";
|
|
172
|
+
export * from "./StartColumnStatisticsTaskRunCommand";
|
|
169
173
|
export * from "./StartCrawlerCommand";
|
|
170
174
|
export * from "./StartCrawlerScheduleCommand";
|
|
171
175
|
export * from "./StartDataQualityRuleRecommendationRunCommand";
|
|
@@ -177,6 +181,7 @@ export * from "./StartMLEvaluationTaskRunCommand";
|
|
|
177
181
|
export * from "./StartMLLabelingSetGenerationTaskRunCommand";
|
|
178
182
|
export * from "./StartTriggerCommand";
|
|
179
183
|
export * from "./StartWorkflowRunCommand";
|
|
184
|
+
export * from "./StopColumnStatisticsTaskRunCommand";
|
|
180
185
|
export * from "./StopCrawlerCommand";
|
|
181
186
|
export * from "./StopCrawlerScheduleCommand";
|
|
182
187
|
export * from "./StopSessionCommand";
|