@aws-sdk/client-redshift-data 3.1077.0 → 3.1078.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 (41) hide show
  1. package/dist-cjs/index.js +19 -113
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/BatchExecuteStatementCommand.js +2 -14
  4. package/dist-es/commands/CancelStatementCommand.js +2 -14
  5. package/dist-es/commands/DescribeStatementCommand.js +2 -14
  6. package/dist-es/commands/DescribeTableCommand.js +2 -14
  7. package/dist-es/commands/ExecuteStatementCommand.js +2 -14
  8. package/dist-es/commands/GetStatementResultCommand.js +2 -14
  9. package/dist-es/commands/GetStatementResultV2Command.js +2 -14
  10. package/dist-es/commands/ListDatabasesCommand.js +2 -14
  11. package/dist-es/commands/ListSchemasCommand.js +2 -14
  12. package/dist-es/commands/ListStatementsCommand.js +2 -14
  13. package/dist-es/commands/ListTablesCommand.js +2 -14
  14. package/dist-es/index.js +1 -0
  15. package/dist-types/commandBuilder.d.ts +18 -0
  16. package/dist-types/commands/BatchExecuteStatementCommand.d.ts +3 -8
  17. package/dist-types/commands/CancelStatementCommand.d.ts +3 -8
  18. package/dist-types/commands/DescribeStatementCommand.d.ts +3 -8
  19. package/dist-types/commands/DescribeTableCommand.d.ts +3 -8
  20. package/dist-types/commands/ExecuteStatementCommand.d.ts +3 -8
  21. package/dist-types/commands/GetStatementResultCommand.d.ts +3 -8
  22. package/dist-types/commands/GetStatementResultV2Command.d.ts +3 -8
  23. package/dist-types/commands/ListDatabasesCommand.d.ts +3 -8
  24. package/dist-types/commands/ListSchemasCommand.d.ts +3 -8
  25. package/dist-types/commands/ListStatementsCommand.d.ts +3 -8
  26. package/dist-types/commands/ListTablesCommand.d.ts +3 -8
  27. package/dist-types/index.d.ts +1 -0
  28. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  29. package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +7 -16
  30. package/dist-types/ts3.4/commands/CancelStatementCommand.d.ts +7 -16
  31. package/dist-types/ts3.4/commands/DescribeStatementCommand.d.ts +7 -16
  32. package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +7 -16
  33. package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +7 -16
  34. package/dist-types/ts3.4/commands/GetStatementResultCommand.d.ts +7 -16
  35. package/dist-types/ts3.4/commands/GetStatementResultV2Command.d.ts +7 -16
  36. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +7 -16
  37. package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +7 -16
  38. package/dist-types/ts3.4/commands/ListStatementsCommand.d.ts +7 -16
  39. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +7 -16
  40. package/dist-types/ts3.4/index.d.ts +1 -0
  41. package/package.json +8 -8
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetStatementResultV2Request, GetStatementResultV2Response } from "../models/models_0";
4
- import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetStatementResultV2CommandInput extends GetStatementResultV2Re
22
19
  export interface GetStatementResultV2CommandOutput extends GetStatementResultV2Response, __MetadataBearer {
23
20
  }
24
21
  declare const GetStatementResultV2Command_base: {
25
- new (input: GetStatementResultV2CommandInput): import("@smithy/core/client").CommandImpl<GetStatementResultV2CommandInput, GetStatementResultV2CommandOutput, RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetStatementResultV2CommandInput): import("@smithy/core/client").CommandImpl<GetStatementResultV2CommandInput, GetStatementResultV2CommandOutput, RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetStatementResultV2CommandInput): import("@smithy/core/client").CommandImpl<GetStatementResultV2CommandInput, GetStatementResultV2CommandOutput, import("..").RedshiftDataClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetStatementResultV2CommandInput): import("@smithy/core/client").CommandImpl<GetStatementResultV2CommandInput, GetStatementResultV2CommandOutput, import("..").RedshiftDataClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Fetches the temporarily cached result of an SQL statement in CSV format. The <code>ExecuteStatement</code> or <code>BatchExecuteStatement</code> operation that ran the SQL statement must have specified <code>ResultFormat</code> as <code>CSV</code>. A token is returned to page through the statement results.</p> <p>For more information about the Amazon Redshift Data API and CLI usage examples, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html">Using the Amazon Redshift Data API</a> in the <i>Amazon Redshift Management Guide</i>. </p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListDatabasesRequest, ListDatabasesResponse } from "../models/models_0";
4
- import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListDatabasesCommandInput extends ListDatabasesRequest {
22
19
  export interface ListDatabasesCommandOutput extends ListDatabasesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListDatabasesCommand_base: {
25
- new (input: ListDatabasesCommandInput): import("@smithy/core/client").CommandImpl<ListDatabasesCommandInput, ListDatabasesCommandOutput, RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListDatabasesCommandInput): import("@smithy/core/client").CommandImpl<ListDatabasesCommandInput, ListDatabasesCommandOutput, RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListDatabasesCommandInput): import("@smithy/core/client").CommandImpl<ListDatabasesCommandInput, ListDatabasesCommandOutput, import("..").RedshiftDataClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListDatabasesCommandInput): import("@smithy/core/client").CommandImpl<ListDatabasesCommandInput, ListDatabasesCommandOutput, import("..").RedshiftDataClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>List the databases in a cluster. A token is returned to page through the database list. Depending on the authorization method, use one of the following combinations of request parameters: </p> <ul> <li> <p>Secrets Manager - when connecting to a cluster, provide the <code>secret-arn</code> of a secret stored in Secrets Manager which has <code>username</code> and <code>password</code>. The specified secret contains credentials to connect to the <code>database</code> you specify. When you are connecting to a cluster, you also supply the database name, If you provide a cluster identifier (<code>dbClusterIdentifier</code>), it must match the cluster identifier stored in the secret. When you are connecting to a serverless workgroup, you also supply the database name.</p> </li> <li> <p>Temporary credentials - when connecting to your data warehouse, choose one of the following options:</p> <ul> <li> <p>When connecting to a serverless workgroup, specify the workgroup name and database name. The database user name is derived from the IAM identity. For example, <code>arn:iam::123456789012:user:foo</code> has the database user name <code>IAM:foo</code>. Also, permission to call the <code>redshift-serverless:GetCredentials</code> operation is required.</p> </li> <li> <p>When connecting to a cluster as an IAM identity, specify the cluster identifier and the database name. The database user name is derived from the IAM identity. For example, <code>arn:iam::123456789012:user:foo</code> has the database user name <code>IAM:foo</code>. Also, permission to call the <code>redshift:GetClusterCredentialsWithIAM</code> operation is required.</p> </li> <li> <p>When connecting to a cluster as a database user, specify the cluster identifier, the database name, and the database user name. Also, permission to call the <code>redshift:GetClusterCredentials</code> operation is required.</p> </li> </ul> </li> </ul> <p>For more information about the Amazon Redshift Data API and CLI usage examples, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html">Using the Amazon Redshift Data API</a> in the <i>Amazon Redshift Management Guide</i>. </p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListSchemasRequest, ListSchemasResponse } from "../models/models_0";
4
- import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListSchemasCommandInput extends ListSchemasRequest {
22
19
  export interface ListSchemasCommandOutput extends ListSchemasResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListSchemasCommand_base: {
25
- new (input: ListSchemasCommandInput): import("@smithy/core/client").CommandImpl<ListSchemasCommandInput, ListSchemasCommandOutput, RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListSchemasCommandInput): import("@smithy/core/client").CommandImpl<ListSchemasCommandInput, ListSchemasCommandOutput, RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListSchemasCommandInput): import("@smithy/core/client").CommandImpl<ListSchemasCommandInput, ListSchemasCommandOutput, import("..").RedshiftDataClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListSchemasCommandInput): import("@smithy/core/client").CommandImpl<ListSchemasCommandInput, ListSchemasCommandOutput, import("..").RedshiftDataClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists the schemas in a database. A token is returned to page through the schema list. Depending on the authorization method, use one of the following combinations of request parameters: </p> <ul> <li> <p>Secrets Manager - when connecting to a cluster, provide the <code>secret-arn</code> of a secret stored in Secrets Manager which has <code>username</code> and <code>password</code>. The specified secret contains credentials to connect to the <code>database</code> you specify. When you are connecting to a cluster, you also supply the database name, If you provide a cluster identifier (<code>dbClusterIdentifier</code>), it must match the cluster identifier stored in the secret. When you are connecting to a serverless workgroup, you also supply the database name.</p> </li> <li> <p>Temporary credentials - when connecting to your data warehouse, choose one of the following options:</p> <ul> <li> <p>When connecting to a serverless workgroup, specify the workgroup name and database name. The database user name is derived from the IAM identity. For example, <code>arn:iam::123456789012:user:foo</code> has the database user name <code>IAM:foo</code>. Also, permission to call the <code>redshift-serverless:GetCredentials</code> operation is required.</p> </li> <li> <p>When connecting to a cluster as an IAM identity, specify the cluster identifier and the database name. The database user name is derived from the IAM identity. For example, <code>arn:iam::123456789012:user:foo</code> has the database user name <code>IAM:foo</code>. Also, permission to call the <code>redshift:GetClusterCredentialsWithIAM</code> operation is required.</p> </li> <li> <p>When connecting to a cluster as a database user, specify the cluster identifier, the database name, and the database user name. Also, permission to call the <code>redshift:GetClusterCredentials</code> operation is required.</p> </li> </ul> </li> </ul> <p>For more information about the Amazon Redshift Data API and CLI usage examples, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html">Using the Amazon Redshift Data API</a> in the <i>Amazon Redshift Management Guide</i>. </p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListStatementsRequest, ListStatementsResponse } from "../models/models_0";
4
- import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListStatementsCommandInput extends ListStatementsRequest {
22
19
  export interface ListStatementsCommandOutput extends ListStatementsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListStatementsCommand_base: {
25
- new (input: ListStatementsCommandInput): import("@smithy/core/client").CommandImpl<ListStatementsCommandInput, ListStatementsCommandOutput, RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListStatementsCommandInput]): import("@smithy/core/client").CommandImpl<ListStatementsCommandInput, ListStatementsCommandOutput, RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListStatementsCommandInput): import("@smithy/core/client").CommandImpl<ListStatementsCommandInput, ListStatementsCommandOutput, import("..").RedshiftDataClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListStatementsCommandInput]): import("@smithy/core/client").CommandImpl<ListStatementsCommandInput, ListStatementsCommandOutput, import("..").RedshiftDataClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>List of SQL statements. By default, only finished statements are shown. A token is returned to page through the statement list. </p> <p>When you use identity-enhanced role sessions to list statements, you must provide either the <code>cluster-identifier</code> or <code>workgroup-name</code> parameter. This ensures that the IdC user can only access the Amazon Redshift IdC applications they are assigned. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/trustedidentitypropagation-overview.html"> Trusted identity propagation overview</a>.</p> <p>For more information about the Amazon Redshift Data API and CLI usage examples, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html">Using the Amazon Redshift Data API</a> in the <i>Amazon Redshift Management Guide</i>. </p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListTablesRequest, ListTablesResponse } from "../models/models_0";
4
- import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTablesCommandInput extends ListTablesRequest {
22
19
  export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListTablesCommand_base: {
25
- new (input: ListTablesCommandInput): import("@smithy/core/client").CommandImpl<ListTablesCommandInput, ListTablesCommandOutput, RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTablesCommandInput): import("@smithy/core/client").CommandImpl<ListTablesCommandInput, ListTablesCommandOutput, RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTablesCommandInput): import("@smithy/core/client").CommandImpl<ListTablesCommandInput, ListTablesCommandOutput, import("..").RedshiftDataClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTablesCommandInput): import("@smithy/core/client").CommandImpl<ListTablesCommandInput, ListTablesCommandOutput, import("..").RedshiftDataClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>List the tables in a database. If neither <code>SchemaPattern</code> nor <code>TablePattern</code> are specified, then all tables in the database are returned. A token is returned to page through the table list. Depending on the authorization method, use one of the following combinations of request parameters: </p> <ul> <li> <p>Secrets Manager - when connecting to a cluster, provide the <code>secret-arn</code> of a secret stored in Secrets Manager which has <code>username</code> and <code>password</code>. The specified secret contains credentials to connect to the <code>database</code> you specify. When you are connecting to a cluster, you also supply the database name, If you provide a cluster identifier (<code>dbClusterIdentifier</code>), it must match the cluster identifier stored in the secret. When you are connecting to a serverless workgroup, you also supply the database name.</p> </li> <li> <p>Temporary credentials - when connecting to your data warehouse, choose one of the following options:</p> <ul> <li> <p>When connecting to a serverless workgroup, specify the workgroup name and database name. The database user name is derived from the IAM identity. For example, <code>arn:iam::123456789012:user:foo</code> has the database user name <code>IAM:foo</code>. Also, permission to call the <code>redshift-serverless:GetCredentials</code> operation is required.</p> </li> <li> <p>When connecting to a cluster as an IAM identity, specify the cluster identifier and the database name. The database user name is derived from the IAM identity. For example, <code>arn:iam::123456789012:user:foo</code> has the database user name <code>IAM:foo</code>. Also, permission to call the <code>redshift:GetClusterCredentialsWithIAM</code> operation is required.</p> </li> <li> <p>When connecting to a cluster as a database user, specify the cluster identifier, the database name, and the database user name. Also, permission to call the <code>redshift:GetClusterCredentials</code> operation is required.</p> </li> </ul> </li> </ul> <p>For more information about the Amazon Redshift Data API and CLI usage examples, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html">Using the Amazon Redshift Data API</a> in the <i>Amazon Redshift Management Guide</i>. </p>
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { RedshiftDataExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./pagination";
14
15
  export * from "./models/enums";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ RedshiftDataClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./RedshiftDataClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ RedshiftDataClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ RedshiftDataClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  BatchExecuteStatementInput,
5
4
  BatchExecuteStatementOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- RedshiftDataClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RedshiftDataClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface BatchExecuteStatementCommandInput
15
8
  extends BatchExecuteStatementInput {}
16
9
  export interface BatchExecuteStatementCommandOutput
@@ -22,22 +15,20 @@ declare const BatchExecuteStatementCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  BatchExecuteStatementCommandInput,
24
17
  BatchExecuteStatementCommandOutput,
25
- RedshiftDataClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").RedshiftDataClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: BatchExecuteStatementCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  BatchExecuteStatementCommandInput,
33
26
  BatchExecuteStatementCommandOutput,
34
- RedshiftDataClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").RedshiftDataClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class BatchExecuteStatementCommand extends BatchExecuteStatementCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  CancelStatementRequest,
5
4
  CancelStatementResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- RedshiftDataClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RedshiftDataClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CancelStatementCommandInput extends CancelStatementRequest {}
15
8
  export interface CancelStatementCommandOutput
16
9
  extends CancelStatementResponse,
@@ -21,22 +14,20 @@ declare const CancelStatementCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  CancelStatementCommandInput,
23
16
  CancelStatementCommandOutput,
24
- RedshiftDataClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").RedshiftDataClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: CancelStatementCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  CancelStatementCommandInput,
32
25
  CancelStatementCommandOutput,
33
- RedshiftDataClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").RedshiftDataClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class CancelStatementCommand extends CancelStatementCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  DescribeStatementRequest,
5
4
  DescribeStatementResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- RedshiftDataClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RedshiftDataClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribeStatementCommandInput
15
8
  extends DescribeStatementRequest {}
16
9
  export interface DescribeStatementCommandOutput
@@ -22,22 +15,20 @@ declare const DescribeStatementCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DescribeStatementCommandInput,
24
17
  DescribeStatementCommandOutput,
25
- RedshiftDataClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").RedshiftDataClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DescribeStatementCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DescribeStatementCommandInput,
33
26
  DescribeStatementCommandOutput,
34
- RedshiftDataClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").RedshiftDataClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DescribeStatementCommand extends DescribeStatementCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  DescribeTableRequest,
5
4
  DescribeTableResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- RedshiftDataClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RedshiftDataClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribeTableCommandInput extends DescribeTableRequest {}
15
8
  export interface DescribeTableCommandOutput
16
9
  extends DescribeTableResponse,
@@ -21,22 +14,20 @@ declare const DescribeTableCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  DescribeTableCommandInput,
23
16
  DescribeTableCommandOutput,
24
- RedshiftDataClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").RedshiftDataClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: DescribeTableCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  DescribeTableCommandInput,
32
25
  DescribeTableCommandOutput,
33
- RedshiftDataClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").RedshiftDataClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class DescribeTableCommand extends DescribeTableCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ExecuteStatementInput,
5
4
  ExecuteStatementOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- RedshiftDataClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RedshiftDataClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ExecuteStatementCommandInput extends ExecuteStatementInput {}
15
8
  export interface ExecuteStatementCommandOutput
16
9
  extends ExecuteStatementOutput,
@@ -21,22 +14,20 @@ declare const ExecuteStatementCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  ExecuteStatementCommandInput,
23
16
  ExecuteStatementCommandOutput,
24
- RedshiftDataClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").RedshiftDataClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: ExecuteStatementCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  ExecuteStatementCommandInput,
32
25
  ExecuteStatementCommandOutput,
33
- RedshiftDataClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").RedshiftDataClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class ExecuteStatementCommand extends ExecuteStatementCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  GetStatementResultRequest,
5
4
  GetStatementResultResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- RedshiftDataClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RedshiftDataClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetStatementResultCommandInput
15
8
  extends GetStatementResultRequest {}
16
9
  export interface GetStatementResultCommandOutput
@@ -22,22 +15,20 @@ declare const GetStatementResultCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetStatementResultCommandInput,
24
17
  GetStatementResultCommandOutput,
25
- RedshiftDataClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").RedshiftDataClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: GetStatementResultCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetStatementResultCommandInput,
33
26
  GetStatementResultCommandOutput,
34
- RedshiftDataClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").RedshiftDataClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetStatementResultCommand extends GetStatementResultCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  GetStatementResultV2Request,
5
4
  GetStatementResultV2Response,
6
5
  } from "../models/models_0";
7
- import {
8
- RedshiftDataClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RedshiftDataClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetStatementResultV2CommandInput
15
8
  extends GetStatementResultV2Request {}
16
9
  export interface GetStatementResultV2CommandOutput
@@ -22,22 +15,20 @@ declare const GetStatementResultV2Command_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetStatementResultV2CommandInput,
24
17
  GetStatementResultV2CommandOutput,
25
- RedshiftDataClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").RedshiftDataClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: GetStatementResultV2CommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetStatementResultV2CommandInput,
33
26
  GetStatementResultV2CommandOutput,
34
- RedshiftDataClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").RedshiftDataClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetStatementResultV2Command extends GetStatementResultV2Command_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListDatabasesRequest,
5
4
  ListDatabasesResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- RedshiftDataClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RedshiftDataClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListDatabasesCommandInput extends ListDatabasesRequest {}
15
8
  export interface ListDatabasesCommandOutput
16
9
  extends ListDatabasesResponse,
@@ -21,22 +14,20 @@ declare const ListDatabasesCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  ListDatabasesCommandInput,
23
16
  ListDatabasesCommandOutput,
24
- RedshiftDataClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").RedshiftDataClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: ListDatabasesCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  ListDatabasesCommandInput,
32
25
  ListDatabasesCommandOutput,
33
- RedshiftDataClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").RedshiftDataClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class ListDatabasesCommand extends ListDatabasesCommand_base {
42
33
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { ListSchemasRequest, ListSchemasResponse } from "../models/models_0";
4
- import {
5
- RedshiftDataClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RedshiftDataClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListSchemasCommandInput extends ListSchemasRequest {}
12
5
  export interface ListSchemasCommandOutput
13
6
  extends ListSchemasResponse,
@@ -18,22 +11,20 @@ declare const ListSchemasCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  ListSchemasCommandInput,
20
13
  ListSchemasCommandOutput,
21
- RedshiftDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RedshiftDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: ListSchemasCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  ListSchemasCommandInput,
29
22
  ListSchemasCommandOutput,
30
- RedshiftDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RedshiftDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class ListSchemasCommand extends ListSchemasCommand_base {
39
30
  protected static __types: {