forked from aws/aws-sdk-js-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
47 lines (47 loc) · 2.38 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
export * from "./AthenaClient";
export * from "./Athena";
export * from "./commands/BatchGetNamedQueryCommand";
export * from "./commands/BatchGetQueryExecutionCommand";
export * from "./commands/CreateDataCatalogCommand";
export * from "./commands/CreateNamedQueryCommand";
export * from "./commands/CreatePreparedStatementCommand";
export * from "./commands/CreateWorkGroupCommand";
export * from "./commands/DeleteDataCatalogCommand";
export * from "./commands/DeleteNamedQueryCommand";
export * from "./commands/DeletePreparedStatementCommand";
export * from "./commands/DeleteWorkGroupCommand";
export * from "./commands/GetDatabaseCommand";
export * from "./commands/GetDataCatalogCommand";
export * from "./commands/GetNamedQueryCommand";
export * from "./commands/GetPreparedStatementCommand";
export * from "./commands/GetQueryExecutionCommand";
export * from "./commands/GetQueryResultsCommand";
export * from "./pagination/GetQueryResultsPaginator";
export * from "./commands/GetTableMetadataCommand";
export * from "./commands/GetWorkGroupCommand";
export * from "./commands/ListDatabasesCommand";
export * from "./pagination/ListDatabasesPaginator";
export * from "./commands/ListDataCatalogsCommand";
export * from "./pagination/ListDataCatalogsPaginator";
export * from "./commands/ListEngineVersionsCommand";
export * from "./commands/ListNamedQueriesCommand";
export * from "./pagination/ListNamedQueriesPaginator";
export * from "./commands/ListPreparedStatementsCommand";
export * from "./pagination/ListPreparedStatementsPaginator";
export * from "./commands/ListQueryExecutionsCommand";
export * from "./pagination/ListQueryExecutionsPaginator";
export * from "./commands/ListTableMetadataCommand";
export * from "./pagination/ListTableMetadataPaginator";
export * from "./commands/ListTagsForResourceCommand";
export * from "./pagination/ListTagsForResourcePaginator";
export * from "./commands/ListWorkGroupsCommand";
export * from "./pagination/ListWorkGroupsPaginator";
export * from "./commands/StartQueryExecutionCommand";
export * from "./commands/StopQueryExecutionCommand";
export * from "./commands/TagResourceCommand";
export * from "./commands/UntagResourceCommand";
export * from "./commands/UpdateDataCatalogCommand";
export * from "./commands/UpdatePreparedStatementCommand";
export * from "./commands/UpdateWorkGroupCommand";
export * from "./pagination/Interfaces";
export * from "./models/index";