@aws-sdk/client-redshift-data 3.169.0 → 3.170.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/RedshiftData.d.ts +184 -55
  3. package/dist-types/ts3.4/RedshiftDataClient.d.ts +190 -83
  4. package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CancelStatementCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/DescribeStatementCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/GetStatementResultCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/ListStatementsCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/index.d.ts +10 -10
  15. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  16. package/dist-types/ts3.4/index.d.ts +6 -6
  17. package/dist-types/ts3.4/models/RedshiftDataServiceException.d.ts +8 -6
  18. package/dist-types/ts3.4/models/index.d.ts +1 -1
  19. package/dist-types/ts3.4/models/models_0.d.ts +619 -578
  20. package/dist-types/ts3.4/pagination/DescribeTablePaginator.d.ts +11 -4
  21. package/dist-types/ts3.4/pagination/GetStatementResultPaginator.d.ts +11 -4
  22. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  23. package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +11 -4
  24. package/dist-types/ts3.4/pagination/ListSchemasPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ListStatementsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  28. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +125 -32
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  33. package/package.json +34 -34
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeStatementRequest, DescribeStatementResponse } from "../models/models_0";
4
- import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
- export interface DescribeStatementCommandInput extends DescribeStatementRequest {
6
- }
7
- export interface DescribeStatementCommandOutput extends DescribeStatementResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeStatementCommand extends $Command<DescribeStatementCommandInput, DescribeStatementCommandOutput, RedshiftDataClientResolvedConfig> {
11
- readonly input: DescribeStatementCommandInput;
12
- constructor(input: DescribeStatementCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeStatementCommandInput, DescribeStatementCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeStatementRequest,
10
+ DescribeStatementResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RedshiftDataClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RedshiftDataClient";
17
+ export interface DescribeStatementCommandInput
18
+ extends DescribeStatementRequest {}
19
+ export interface DescribeStatementCommandOutput
20
+ extends DescribeStatementResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeStatementCommand extends $Command<
24
+ DescribeStatementCommandInput,
25
+ DescribeStatementCommandOutput,
26
+ RedshiftDataClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeStatementCommandInput;
29
+ constructor(input: DescribeStatementCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: RedshiftDataClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeStatementCommandInput, DescribeStatementCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeTableRequest, DescribeTableResponse } from "../models/models_0";
4
- import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
- export interface DescribeTableCommandInput extends DescribeTableRequest {
6
- }
7
- export interface DescribeTableCommandOutput extends DescribeTableResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeTableCommand extends $Command<DescribeTableCommandInput, DescribeTableCommandOutput, RedshiftDataClientResolvedConfig> {
11
- readonly input: DescribeTableCommandInput;
12
- constructor(input: DescribeTableCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTableCommandInput, DescribeTableCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeTableRequest,
10
+ DescribeTableResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RedshiftDataClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RedshiftDataClient";
17
+ export interface DescribeTableCommandInput extends DescribeTableRequest {}
18
+ export interface DescribeTableCommandOutput
19
+ extends DescribeTableResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DescribeTableCommand extends $Command<
23
+ DescribeTableCommandInput,
24
+ DescribeTableCommandOutput,
25
+ RedshiftDataClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeTableCommandInput;
28
+ constructor(input: DescribeTableCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RedshiftDataClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeTableCommandInput, DescribeTableCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ExecuteStatementInput, ExecuteStatementOutput } from "../models/models_0";
4
- import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
- export interface ExecuteStatementCommandInput extends ExecuteStatementInput {
6
- }
7
- export interface ExecuteStatementCommandOutput extends ExecuteStatementOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ExecuteStatementCommand extends $Command<ExecuteStatementCommandInput, ExecuteStatementCommandOutput, RedshiftDataClientResolvedConfig> {
11
- readonly input: ExecuteStatementCommandInput;
12
- constructor(input: ExecuteStatementCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteStatementCommandInput, ExecuteStatementCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ExecuteStatementInput,
10
+ ExecuteStatementOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ RedshiftDataClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RedshiftDataClient";
17
+ export interface ExecuteStatementCommandInput extends ExecuteStatementInput {}
18
+ export interface ExecuteStatementCommandOutput
19
+ extends ExecuteStatementOutput,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ExecuteStatementCommand extends $Command<
23
+ ExecuteStatementCommandInput,
24
+ ExecuteStatementCommandOutput,
25
+ RedshiftDataClientResolvedConfig
26
+ > {
27
+ readonly input: ExecuteStatementCommandInput;
28
+ constructor(input: ExecuteStatementCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RedshiftDataClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ExecuteStatementCommandInput, ExecuteStatementCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetStatementResultRequest, GetStatementResultResponse } from "../models/models_0";
4
- import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
- export interface GetStatementResultCommandInput extends GetStatementResultRequest {
6
- }
7
- export interface GetStatementResultCommandOutput extends GetStatementResultResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetStatementResultCommand extends $Command<GetStatementResultCommandInput, GetStatementResultCommandOutput, RedshiftDataClientResolvedConfig> {
11
- readonly input: GetStatementResultCommandInput;
12
- constructor(input: GetStatementResultCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetStatementResultCommandInput, GetStatementResultCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetStatementResultRequest,
10
+ GetStatementResultResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RedshiftDataClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RedshiftDataClient";
17
+ export interface GetStatementResultCommandInput
18
+ extends GetStatementResultRequest {}
19
+ export interface GetStatementResultCommandOutput
20
+ extends GetStatementResultResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetStatementResultCommand extends $Command<
24
+ GetStatementResultCommandInput,
25
+ GetStatementResultCommandOutput,
26
+ RedshiftDataClientResolvedConfig
27
+ > {
28
+ readonly input: GetStatementResultCommandInput;
29
+ constructor(input: GetStatementResultCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: RedshiftDataClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetStatementResultCommandInput, GetStatementResultCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListDatabasesRequest, ListDatabasesResponse } from "../models/models_0";
4
- import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
- export interface ListDatabasesCommandInput extends ListDatabasesRequest {
6
- }
7
- export interface ListDatabasesCommandOutput extends ListDatabasesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListDatabasesCommand extends $Command<ListDatabasesCommandInput, ListDatabasesCommandOutput, RedshiftDataClientResolvedConfig> {
11
- readonly input: ListDatabasesCommandInput;
12
- constructor(input: ListDatabasesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatabasesCommandInput, ListDatabasesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListDatabasesRequest,
10
+ ListDatabasesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RedshiftDataClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RedshiftDataClient";
17
+ export interface ListDatabasesCommandInput extends ListDatabasesRequest {}
18
+ export interface ListDatabasesCommandOutput
19
+ extends ListDatabasesResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListDatabasesCommand extends $Command<
23
+ ListDatabasesCommandInput,
24
+ ListDatabasesCommandOutput,
25
+ RedshiftDataClientResolvedConfig
26
+ > {
27
+ readonly input: ListDatabasesCommandInput;
28
+ constructor(input: ListDatabasesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RedshiftDataClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListDatabasesCommandInput, ListDatabasesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListSchemasRequest, ListSchemasResponse } from "../models/models_0";
4
- import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
- export interface ListSchemasCommandInput extends ListSchemasRequest {
6
- }
7
- export interface ListSchemasCommandOutput extends ListSchemasResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListSchemasCommand extends $Command<ListSchemasCommandInput, ListSchemasCommandOutput, RedshiftDataClientResolvedConfig> {
11
- readonly input: ListSchemasCommandInput;
12
- constructor(input: ListSchemasCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSchemasCommandInput, ListSchemasCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { ListSchemasRequest, ListSchemasResponse } from "../models/models_0";
9
+ import {
10
+ RedshiftDataClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RedshiftDataClient";
14
+ export interface ListSchemasCommandInput extends ListSchemasRequest {}
15
+ export interface ListSchemasCommandOutput
16
+ extends ListSchemasResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListSchemasCommand extends $Command<
20
+ ListSchemasCommandInput,
21
+ ListSchemasCommandOutput,
22
+ RedshiftDataClientResolvedConfig
23
+ > {
24
+ readonly input: ListSchemasCommandInput;
25
+ constructor(input: ListSchemasCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RedshiftDataClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListSchemasCommandInput, ListSchemasCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListStatementsRequest, ListStatementsResponse } from "../models/models_0";
4
- import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
- export interface ListStatementsCommandInput extends ListStatementsRequest {
6
- }
7
- export interface ListStatementsCommandOutput extends ListStatementsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListStatementsCommand extends $Command<ListStatementsCommandInput, ListStatementsCommandOutput, RedshiftDataClientResolvedConfig> {
11
- readonly input: ListStatementsCommandInput;
12
- constructor(input: ListStatementsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListStatementsCommandInput, ListStatementsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListStatementsRequest,
10
+ ListStatementsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RedshiftDataClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RedshiftDataClient";
17
+ export interface ListStatementsCommandInput extends ListStatementsRequest {}
18
+ export interface ListStatementsCommandOutput
19
+ extends ListStatementsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListStatementsCommand extends $Command<
23
+ ListStatementsCommandInput,
24
+ ListStatementsCommandOutput,
25
+ RedshiftDataClientResolvedConfig
26
+ > {
27
+ readonly input: ListStatementsCommandInput;
28
+ constructor(input: ListStatementsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RedshiftDataClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListStatementsCommandInput, ListStatementsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListTablesRequest, ListTablesResponse } from "../models/models_0";
4
- import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
- export interface ListTablesCommandInput extends ListTablesRequest {
6
- }
7
- export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTablesCommand extends $Command<ListTablesCommandInput, ListTablesCommandOutput, RedshiftDataClientResolvedConfig> {
11
- readonly input: ListTablesCommandInput;
12
- constructor(input: ListTablesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTablesCommandInput, ListTablesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { ListTablesRequest, ListTablesResponse } from "../models/models_0";
9
+ import {
10
+ RedshiftDataClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RedshiftDataClient";
14
+ export interface ListTablesCommandInput extends ListTablesRequest {}
15
+ export interface ListTablesCommandOutput
16
+ extends ListTablesResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListTablesCommand extends $Command<
20
+ ListTablesCommandInput,
21
+ ListTablesCommandOutput,
22
+ RedshiftDataClientResolvedConfig
23
+ > {
24
+ readonly input: ListTablesCommandInput;
25
+ constructor(input: ListTablesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RedshiftDataClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListTablesCommandInput, ListTablesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,10 +1,10 @@
1
- export * from "./BatchExecuteStatementCommand";
2
- export * from "./CancelStatementCommand";
3
- export * from "./DescribeStatementCommand";
4
- export * from "./DescribeTableCommand";
5
- export * from "./ExecuteStatementCommand";
6
- export * from "./GetStatementResultCommand";
7
- export * from "./ListDatabasesCommand";
8
- export * from "./ListSchemasCommand";
9
- export * from "./ListStatementsCommand";
10
- export * from "./ListTablesCommand";
1
+ export * from "./BatchExecuteStatementCommand";
2
+ export * from "./CancelStatementCommand";
3
+ export * from "./DescribeStatementCommand";
4
+ export * from "./DescribeTableCommand";
5
+ export * from "./ExecuteStatementCommand";
6
+ export * from "./GetStatementResultCommand";
7
+ export * from "./ListDatabasesCommand";
8
+ export * from "./ListSchemasCommand";
9
+ export * from "./ListStatementsCommand";
10
+ export * from "./ListTablesCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./RedshiftData";
2
- export * from "./RedshiftDataClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { RedshiftDataServiceException } from "./models/RedshiftDataServiceException";
1
+ export * from "./RedshiftData";
2
+ export * from "./RedshiftDataClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { RedshiftDataServiceException } from "./models/RedshiftDataServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class RedshiftDataServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class RedshiftDataServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";