@aws-sdk/client-redshift-data 3.478.0 → 3.484.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 (45) hide show
  1. package/dist-cjs/commands/BatchExecuteStatementCommand.js +18 -41
  2. package/dist-cjs/commands/CancelStatementCommand.js +18 -41
  3. package/dist-cjs/commands/DescribeStatementCommand.js +18 -41
  4. package/dist-cjs/commands/DescribeTableCommand.js +18 -41
  5. package/dist-cjs/commands/ExecuteStatementCommand.js +18 -41
  6. package/dist-cjs/commands/GetStatementResultCommand.js +18 -41
  7. package/dist-cjs/commands/ListDatabasesCommand.js +18 -41
  8. package/dist-cjs/commands/ListSchemasCommand.js +18 -41
  9. package/dist-cjs/commands/ListStatementsCommand.js +18 -41
  10. package/dist-cjs/commands/ListTablesCommand.js +18 -41
  11. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  12. package/dist-es/commands/BatchExecuteStatementCommand.js +18 -41
  13. package/dist-es/commands/CancelStatementCommand.js +18 -41
  14. package/dist-es/commands/DescribeStatementCommand.js +18 -41
  15. package/dist-es/commands/DescribeTableCommand.js +18 -41
  16. package/dist-es/commands/ExecuteStatementCommand.js +18 -41
  17. package/dist-es/commands/GetStatementResultCommand.js +18 -41
  18. package/dist-es/commands/ListDatabasesCommand.js +18 -41
  19. package/dist-es/commands/ListSchemasCommand.js +18 -41
  20. package/dist-es/commands/ListStatementsCommand.js +18 -41
  21. package/dist-es/commands/ListTablesCommand.js +18 -41
  22. package/dist-es/endpoint/EndpointParameters.js +6 -0
  23. package/dist-types/commands/BatchExecuteStatementCommand.d.ts +6 -21
  24. package/dist-types/commands/CancelStatementCommand.d.ts +6 -21
  25. package/dist-types/commands/DescribeStatementCommand.d.ts +6 -21
  26. package/dist-types/commands/DescribeTableCommand.d.ts +6 -21
  27. package/dist-types/commands/ExecuteStatementCommand.d.ts +6 -21
  28. package/dist-types/commands/GetStatementResultCommand.d.ts +6 -21
  29. package/dist-types/commands/ListDatabasesCommand.d.ts +6 -21
  30. package/dist-types/commands/ListSchemasCommand.d.ts +6 -21
  31. package/dist-types/commands/ListStatementsCommand.d.ts +6 -21
  32. package/dist-types/commands/ListTablesCommand.d.ts +6 -21
  33. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  34. package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +12 -24
  35. package/dist-types/ts3.4/commands/CancelStatementCommand.d.ts +14 -23
  36. package/dist-types/ts3.4/commands/DescribeStatementCommand.d.ts +14 -23
  37. package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +14 -23
  38. package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +14 -23
  39. package/dist-types/ts3.4/commands/GetStatementResultCommand.d.ts +14 -23
  40. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +14 -23
  41. package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +14 -23
  42. package/dist-types/ts3.4/commands/ListStatementsCommand.d.ts +14 -23
  43. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +14 -23
  44. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  45. package/package.json +11 -11
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  BatchExecuteStatementInput,
11
5
  BatchExecuteStatementOutput,
@@ -21,22 +15,16 @@ export interface BatchExecuteStatementCommandInput
21
15
  export interface BatchExecuteStatementCommandOutput
22
16
  extends BatchExecuteStatementOutput,
23
17
  __MetadataBearer {}
24
- export declare class BatchExecuteStatementCommand extends $Command<
25
- BatchExecuteStatementCommandInput,
26
- BatchExecuteStatementCommandOutput,
27
- RedshiftDataClientResolvedConfig
28
- > {
29
- readonly input: BatchExecuteStatementCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: BatchExecuteStatementCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: RedshiftDataClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const BatchExecuteStatementCommand_base: {
19
+ new (
20
+ input: BatchExecuteStatementCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  BatchExecuteStatementCommandInput,
38
- BatchExecuteStatementCommandOutput
23
+ BatchExecuteStatementCommandOutput,
24
+ RedshiftDataClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class BatchExecuteStatementCommand extends BatchExecuteStatementCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CancelStatementRequest,
11
5
  CancelStatementResponse,
@@ -20,19 +14,16 @@ export interface CancelStatementCommandInput extends CancelStatementRequest {}
20
14
  export interface CancelStatementCommandOutput
21
15
  extends CancelStatementResponse,
22
16
  __MetadataBearer {}
23
- export declare class CancelStatementCommand extends $Command<
24
- CancelStatementCommandInput,
25
- CancelStatementCommandOutput,
26
- RedshiftDataClientResolvedConfig
27
- > {
28
- readonly input: CancelStatementCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: CancelStatementCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: RedshiftDataClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<CancelStatementCommandInput, CancelStatementCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const CancelStatementCommand_base: {
18
+ new (
19
+ input: CancelStatementCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ CancelStatementCommandInput,
22
+ CancelStatementCommandOutput,
23
+ RedshiftDataClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class CancelStatementCommand extends CancelStatementCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DescribeStatementRequest,
11
5
  DescribeStatementResponse,
@@ -21,19 +15,16 @@ export interface DescribeStatementCommandInput
21
15
  export interface DescribeStatementCommandOutput
22
16
  extends DescribeStatementResponse,
23
17
  __MetadataBearer {}
24
- export declare class DescribeStatementCommand extends $Command<
25
- DescribeStatementCommandInput,
26
- DescribeStatementCommandOutput,
27
- RedshiftDataClientResolvedConfig
28
- > {
29
- readonly input: DescribeStatementCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: DescribeStatementCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: RedshiftDataClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<DescribeStatementCommandInput, DescribeStatementCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const DescribeStatementCommand_base: {
19
+ new (
20
+ input: DescribeStatementCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DescribeStatementCommandInput,
23
+ DescribeStatementCommandOutput,
24
+ RedshiftDataClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class DescribeStatementCommand extends DescribeStatementCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DescribeTableRequest,
11
5
  DescribeTableResponse,
@@ -20,19 +14,16 @@ export interface DescribeTableCommandInput extends DescribeTableRequest {}
20
14
  export interface DescribeTableCommandOutput
21
15
  extends DescribeTableResponse,
22
16
  __MetadataBearer {}
23
- export declare class DescribeTableCommand extends $Command<
24
- DescribeTableCommandInput,
25
- DescribeTableCommandOutput,
26
- RedshiftDataClientResolvedConfig
27
- > {
28
- readonly input: DescribeTableCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: DescribeTableCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: RedshiftDataClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<DescribeTableCommandInput, DescribeTableCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const DescribeTableCommand_base: {
18
+ new (
19
+ input: DescribeTableCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ DescribeTableCommandInput,
22
+ DescribeTableCommandOutput,
23
+ RedshiftDataClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class DescribeTableCommand extends DescribeTableCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  ExecuteStatementInput,
11
5
  ExecuteStatementOutput,
@@ -20,19 +14,16 @@ export interface ExecuteStatementCommandInput extends ExecuteStatementInput {}
20
14
  export interface ExecuteStatementCommandOutput
21
15
  extends ExecuteStatementOutput,
22
16
  __MetadataBearer {}
23
- export declare class ExecuteStatementCommand extends $Command<
24
- ExecuteStatementCommandInput,
25
- ExecuteStatementCommandOutput,
26
- RedshiftDataClientResolvedConfig
27
- > {
28
- readonly input: ExecuteStatementCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: ExecuteStatementCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: RedshiftDataClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<ExecuteStatementCommandInput, ExecuteStatementCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const ExecuteStatementCommand_base: {
18
+ new (
19
+ input: ExecuteStatementCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ ExecuteStatementCommandInput,
22
+ ExecuteStatementCommandOutput,
23
+ RedshiftDataClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class ExecuteStatementCommand extends ExecuteStatementCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  GetStatementResultRequest,
11
5
  GetStatementResultResponse,
@@ -21,19 +15,16 @@ export interface GetStatementResultCommandInput
21
15
  export interface GetStatementResultCommandOutput
22
16
  extends GetStatementResultResponse,
23
17
  __MetadataBearer {}
24
- export declare class GetStatementResultCommand extends $Command<
25
- GetStatementResultCommandInput,
26
- GetStatementResultCommandOutput,
27
- RedshiftDataClientResolvedConfig
28
- > {
29
- readonly input: GetStatementResultCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: GetStatementResultCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: RedshiftDataClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<GetStatementResultCommandInput, GetStatementResultCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const GetStatementResultCommand_base: {
19
+ new (
20
+ input: GetStatementResultCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetStatementResultCommandInput,
23
+ GetStatementResultCommandOutput,
24
+ RedshiftDataClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class GetStatementResultCommand extends GetStatementResultCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  ListDatabasesRequest,
11
5
  ListDatabasesResponse,
@@ -20,19 +14,16 @@ export interface ListDatabasesCommandInput extends ListDatabasesRequest {}
20
14
  export interface ListDatabasesCommandOutput
21
15
  extends ListDatabasesResponse,
22
16
  __MetadataBearer {}
23
- export declare class ListDatabasesCommand extends $Command<
24
- ListDatabasesCommandInput,
25
- ListDatabasesCommandOutput,
26
- RedshiftDataClientResolvedConfig
27
- > {
28
- readonly input: ListDatabasesCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: ListDatabasesCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: RedshiftDataClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<ListDatabasesCommandInput, ListDatabasesCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const ListDatabasesCommand_base: {
18
+ new (
19
+ input: ListDatabasesCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ ListDatabasesCommandInput,
22
+ ListDatabasesCommandOutput,
23
+ RedshiftDataClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class ListDatabasesCommand extends ListDatabasesCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { ListSchemasRequest, ListSchemasResponse } from "../models/models_0";
10
4
  import {
11
5
  RedshiftDataClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface ListSchemasCommandInput extends ListSchemasRequest {}
17
11
  export interface ListSchemasCommandOutput
18
12
  extends ListSchemasResponse,
19
13
  __MetadataBearer {}
20
- export declare class ListSchemasCommand extends $Command<
21
- ListSchemasCommandInput,
22
- ListSchemasCommandOutput,
23
- RedshiftDataClientResolvedConfig
24
- > {
25
- readonly input: ListSchemasCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: ListSchemasCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: RedshiftDataClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<ListSchemasCommandInput, ListSchemasCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const ListSchemasCommand_base: {
15
+ new (
16
+ input: ListSchemasCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListSchemasCommandInput,
19
+ ListSchemasCommandOutput,
20
+ RedshiftDataClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class ListSchemasCommand extends ListSchemasCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  ListStatementsRequest,
11
5
  ListStatementsResponse,
@@ -20,19 +14,16 @@ export interface ListStatementsCommandInput extends ListStatementsRequest {}
20
14
  export interface ListStatementsCommandOutput
21
15
  extends ListStatementsResponse,
22
16
  __MetadataBearer {}
23
- export declare class ListStatementsCommand extends $Command<
24
- ListStatementsCommandInput,
25
- ListStatementsCommandOutput,
26
- RedshiftDataClientResolvedConfig
27
- > {
28
- readonly input: ListStatementsCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: ListStatementsCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: RedshiftDataClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<ListStatementsCommandInput, ListStatementsCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const ListStatementsCommand_base: {
18
+ new (
19
+ input: ListStatementsCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ ListStatementsCommandInput,
22
+ ListStatementsCommandOutput,
23
+ RedshiftDataClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class ListStatementsCommand extends ListStatementsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  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";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { ListTablesRequest, ListTablesResponse } from "../models/models_0";
10
4
  import {
11
5
  RedshiftDataClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface ListTablesCommandInput extends ListTablesRequest {}
17
11
  export interface ListTablesCommandOutput
18
12
  extends ListTablesResponse,
19
13
  __MetadataBearer {}
20
- export declare class ListTablesCommand extends $Command<
21
- ListTablesCommandInput,
22
- ListTablesCommandOutput,
23
- RedshiftDataClientResolvedConfig
24
- > {
25
- readonly input: ListTablesCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: ListTablesCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: RedshiftDataClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<ListTablesCommandInput, ListTablesCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const ListTablesCommand_base: {
15
+ new (
16
+ input: ListTablesCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListTablesCommandInput,
19
+ ListTablesCommandOutput,
20
+ RedshiftDataClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class ListTablesCommand extends ListTablesCommand_base {}
@@ -25,6 +25,24 @@ export declare const resolveClientEndpointParameters: <T>(
25
25
  ClientInputEndpointParameters & {
26
26
  defaultSigningName: string;
27
27
  };
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
28
46
  export interface EndpointParameters extends __EndpointParameters {
29
47
  Region?: string;
30
48
  UseDualStack?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-redshift-data",
3
3
  "description": "AWS SDK for JavaScript Redshift Data Client for Node.js, Browser and React Native",
4
- "version": "3.478.0",
4
+ "version": "3.484.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,40 +20,40 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.478.0",
24
- "@aws-sdk/core": "3.477.0",
25
- "@aws-sdk/credential-provider-node": "3.478.0",
23
+ "@aws-sdk/client-sts": "3.484.0",
24
+ "@aws-sdk/core": "3.481.0",
25
+ "@aws-sdk/credential-provider-node": "3.484.0",
26
26
  "@aws-sdk/middleware-host-header": "3.468.0",
27
27
  "@aws-sdk/middleware-logger": "3.468.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.468.0",
29
29
  "@aws-sdk/middleware-signing": "3.468.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.478.0",
31
- "@aws-sdk/region-config-resolver": "3.470.0",
31
+ "@aws-sdk/region-config-resolver": "3.484.0",
32
32
  "@aws-sdk/types": "3.468.0",
33
33
  "@aws-sdk/util-endpoints": "3.478.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.468.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.470.0",
36
- "@smithy/config-resolver": "^2.0.21",
37
- "@smithy/core": "^1.2.0",
36
+ "@smithy/config-resolver": "^2.0.22",
37
+ "@smithy/core": "^1.2.1",
38
38
  "@smithy/fetch-http-handler": "^2.3.1",
39
39
  "@smithy/hash-node": "^2.0.17",
40
40
  "@smithy/invalid-dependency": "^2.0.15",
41
41
  "@smithy/middleware-content-length": "^2.0.17",
42
42
  "@smithy/middleware-endpoint": "^2.2.3",
43
- "@smithy/middleware-retry": "^2.0.24",
43
+ "@smithy/middleware-retry": "^2.0.25",
44
44
  "@smithy/middleware-serde": "^2.0.15",
45
45
  "@smithy/middleware-stack": "^2.0.9",
46
46
  "@smithy/node-config-provider": "^2.1.8",
47
47
  "@smithy/node-http-handler": "^2.2.1",
48
48
  "@smithy/protocol-http": "^3.0.11",
49
- "@smithy/smithy-client": "^2.1.18",
49
+ "@smithy/smithy-client": "^2.2.0",
50
50
  "@smithy/types": "^2.7.0",
51
51
  "@smithy/url-parser": "^2.0.15",
52
52
  "@smithy/util-base64": "^2.0.1",
53
53
  "@smithy/util-body-length-browser": "^2.0.1",
54
54
  "@smithy/util-body-length-node": "^2.1.0",
55
- "@smithy/util-defaults-mode-browser": "^2.0.22",
56
- "@smithy/util-defaults-mode-node": "^2.0.29",
55
+ "@smithy/util-defaults-mode-browser": "^2.0.23",
56
+ "@smithy/util-defaults-mode-node": "^2.0.31",
57
57
  "@smithy/util-endpoints": "^1.0.7",
58
58
  "@smithy/util-retry": "^2.0.8",
59
59
  "@smithy/util-utf8": "^2.0.2",