@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/RedshiftData.d.ts +184 -55
- package/dist-types/ts3.4/RedshiftDataClient.d.ts +190 -83
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CancelStatementCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeStatementCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetStatementResultCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListStatementsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +10 -10
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/RedshiftDataServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +619 -578
- package/dist-types/ts3.4/pagination/DescribeTablePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetStatementResultPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSchemasPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListStatementsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +125 -32
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|