@aws-sdk/client-redshift-data 3.168.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 +16 -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,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeTableCommandInput, DescribeTableCommandOutput } from "../commands/DescribeTableCommand";
3
- import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeTable(config: RedshiftDataPaginationConfiguration, input: DescribeTableCommandInput, ...additionalArguments: any): Paginator<DescribeTableCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeTableCommandInput,
4
+ DescribeTableCommandOutput,
5
+ } from "../commands/DescribeTableCommand";
6
+ import { RedshiftDataPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeTable(
8
+ config: RedshiftDataPaginationConfiguration,
9
+ input: DescribeTableCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeTableCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetStatementResultCommandInput, GetStatementResultCommandOutput } from "../commands/GetStatementResultCommand";
3
- import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetStatementResult(config: RedshiftDataPaginationConfiguration, input: GetStatementResultCommandInput, ...additionalArguments: any): Paginator<GetStatementResultCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetStatementResultCommandInput,
4
+ GetStatementResultCommandOutput,
5
+ } from "../commands/GetStatementResultCommand";
6
+ import { RedshiftDataPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetStatementResult(
8
+ config: RedshiftDataPaginationConfiguration,
9
+ input: GetStatementResultCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetStatementResultCommandOutput>;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { RedshiftData } from "../RedshiftData";
3
- import { RedshiftDataClient } from "../RedshiftDataClient";
4
- export interface RedshiftDataPaginationConfiguration extends PaginationConfiguration {
5
- client: RedshiftData | RedshiftDataClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { RedshiftData } from "../RedshiftData";
3
+ import { RedshiftDataClient } from "../RedshiftDataClient";
4
+ export interface RedshiftDataPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: RedshiftData | RedshiftDataClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
3
- import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListDatabases(config: RedshiftDataPaginationConfiguration, input: ListDatabasesCommandInput, ...additionalArguments: any): Paginator<ListDatabasesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListDatabasesCommandInput,
4
+ ListDatabasesCommandOutput,
5
+ } from "../commands/ListDatabasesCommand";
6
+ import { RedshiftDataPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListDatabases(
8
+ config: RedshiftDataPaginationConfiguration,
9
+ input: ListDatabasesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListDatabasesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand";
3
- import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSchemas(config: RedshiftDataPaginationConfiguration, input: ListSchemasCommandInput, ...additionalArguments: any): Paginator<ListSchemasCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSchemasCommandInput,
4
+ ListSchemasCommandOutput,
5
+ } from "../commands/ListSchemasCommand";
6
+ import { RedshiftDataPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSchemas(
8
+ config: RedshiftDataPaginationConfiguration,
9
+ input: ListSchemasCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSchemasCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListStatementsCommandInput, ListStatementsCommandOutput } from "../commands/ListStatementsCommand";
3
- import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListStatements(config: RedshiftDataPaginationConfiguration, input: ListStatementsCommandInput, ...additionalArguments: any): Paginator<ListStatementsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListStatementsCommandInput,
4
+ ListStatementsCommandOutput,
5
+ } from "../commands/ListStatementsCommand";
6
+ import { RedshiftDataPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListStatements(
8
+ config: RedshiftDataPaginationConfiguration,
9
+ input: ListStatementsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListStatementsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
3
- import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListTables(config: RedshiftDataPaginationConfiguration, input: ListTablesCommandInput, ...additionalArguments: any): Paginator<ListTablesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListTablesCommandInput,
4
+ ListTablesCommandOutput,
5
+ } from "../commands/ListTablesCommand";
6
+ import { RedshiftDataPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTables(
8
+ config: RedshiftDataPaginationConfiguration,
9
+ input: ListTablesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTablesCommandOutput>;
@@ -1,7 +1,7 @@
1
- export * from "./DescribeTablePaginator";
2
- export * from "./GetStatementResultPaginator";
3
- export * from "./Interfaces";
4
- export * from "./ListDatabasesPaginator";
5
- export * from "./ListSchemasPaginator";
6
- export * from "./ListStatementsPaginator";
7
- export * from "./ListTablesPaginator";
1
+ export * from "./DescribeTablePaginator";
2
+ export * from "./GetStatementResultPaginator";
3
+ export * from "./Interfaces";
4
+ export * from "./ListDatabasesPaginator";
5
+ export * from "./ListSchemasPaginator";
6
+ export * from "./ListStatementsPaginator";
7
+ export * from "./ListTablesPaginator";
@@ -1,32 +1,125 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOutput } from "../commands/BatchExecuteStatementCommand";
4
- import { CancelStatementCommandInput, CancelStatementCommandOutput } from "../commands/CancelStatementCommand";
5
- import { DescribeStatementCommandInput, DescribeStatementCommandOutput } from "../commands/DescribeStatementCommand";
6
- import { DescribeTableCommandInput, DescribeTableCommandOutput } from "../commands/DescribeTableCommand";
7
- import { ExecuteStatementCommandInput, ExecuteStatementCommandOutput } from "../commands/ExecuteStatementCommand";
8
- import { GetStatementResultCommandInput, GetStatementResultCommandOutput } from "../commands/GetStatementResultCommand";
9
- import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
10
- import { ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand";
11
- import { ListStatementsCommandInput, ListStatementsCommandOutput } from "../commands/ListStatementsCommand";
12
- import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
13
- export declare const serializeAws_json1_1BatchExecuteStatementCommand: (input: BatchExecuteStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
- export declare const serializeAws_json1_1CancelStatementCommand: (input: CancelStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
- export declare const serializeAws_json1_1DescribeStatementCommand: (input: DescribeStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
- export declare const serializeAws_json1_1DescribeTableCommand: (input: DescribeTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
- export declare const serializeAws_json1_1ExecuteStatementCommand: (input: ExecuteStatementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_json1_1GetStatementResultCommand: (input: GetStatementResultCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_json1_1ListDatabasesCommand: (input: ListDatabasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_json1_1ListSchemasCommand: (input: ListSchemasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_json1_1ListStatementsCommand: (input: ListStatementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_json1_1ListTablesCommand: (input: ListTablesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const deserializeAws_json1_1BatchExecuteStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchExecuteStatementCommandOutput>;
24
- export declare const deserializeAws_json1_1CancelStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelStatementCommandOutput>;
25
- export declare const deserializeAws_json1_1DescribeStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStatementCommandOutput>;
26
- export declare const deserializeAws_json1_1DescribeTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTableCommandOutput>;
27
- export declare const deserializeAws_json1_1ExecuteStatementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteStatementCommandOutput>;
28
- export declare const deserializeAws_json1_1GetStatementResultCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStatementResultCommandOutput>;
29
- export declare const deserializeAws_json1_1ListDatabasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatabasesCommandOutput>;
30
- export declare const deserializeAws_json1_1ListSchemasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSchemasCommandOutput>;
31
- export declare const deserializeAws_json1_1ListStatementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStatementsCommandOutput>;
32
- export declare const deserializeAws_json1_1ListTablesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTablesCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ BatchExecuteStatementCommandInput,
8
+ BatchExecuteStatementCommandOutput,
9
+ } from "../commands/BatchExecuteStatementCommand";
10
+ import {
11
+ CancelStatementCommandInput,
12
+ CancelStatementCommandOutput,
13
+ } from "../commands/CancelStatementCommand";
14
+ import {
15
+ DescribeStatementCommandInput,
16
+ DescribeStatementCommandOutput,
17
+ } from "../commands/DescribeStatementCommand";
18
+ import {
19
+ DescribeTableCommandInput,
20
+ DescribeTableCommandOutput,
21
+ } from "../commands/DescribeTableCommand";
22
+ import {
23
+ ExecuteStatementCommandInput,
24
+ ExecuteStatementCommandOutput,
25
+ } from "../commands/ExecuteStatementCommand";
26
+ import {
27
+ GetStatementResultCommandInput,
28
+ GetStatementResultCommandOutput,
29
+ } from "../commands/GetStatementResultCommand";
30
+ import {
31
+ ListDatabasesCommandInput,
32
+ ListDatabasesCommandOutput,
33
+ } from "../commands/ListDatabasesCommand";
34
+ import {
35
+ ListSchemasCommandInput,
36
+ ListSchemasCommandOutput,
37
+ } from "../commands/ListSchemasCommand";
38
+ import {
39
+ ListStatementsCommandInput,
40
+ ListStatementsCommandOutput,
41
+ } from "../commands/ListStatementsCommand";
42
+ import {
43
+ ListTablesCommandInput,
44
+ ListTablesCommandOutput,
45
+ } from "../commands/ListTablesCommand";
46
+ export declare const serializeAws_json1_1BatchExecuteStatementCommand: (
47
+ input: BatchExecuteStatementCommandInput,
48
+ context: __SerdeContext
49
+ ) => Promise<__HttpRequest>;
50
+ export declare const serializeAws_json1_1CancelStatementCommand: (
51
+ input: CancelStatementCommandInput,
52
+ context: __SerdeContext
53
+ ) => Promise<__HttpRequest>;
54
+ export declare const serializeAws_json1_1DescribeStatementCommand: (
55
+ input: DescribeStatementCommandInput,
56
+ context: __SerdeContext
57
+ ) => Promise<__HttpRequest>;
58
+ export declare const serializeAws_json1_1DescribeTableCommand: (
59
+ input: DescribeTableCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
62
+ export declare const serializeAws_json1_1ExecuteStatementCommand: (
63
+ input: ExecuteStatementCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_json1_1GetStatementResultCommand: (
67
+ input: GetStatementResultCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_json1_1ListDatabasesCommand: (
71
+ input: ListDatabasesCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_json1_1ListSchemasCommand: (
75
+ input: ListSchemasCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_json1_1ListStatementsCommand: (
79
+ input: ListStatementsCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_json1_1ListTablesCommand: (
83
+ input: ListTablesCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const deserializeAws_json1_1BatchExecuteStatementCommand: (
87
+ output: __HttpResponse,
88
+ context: __SerdeContext
89
+ ) => Promise<BatchExecuteStatementCommandOutput>;
90
+ export declare const deserializeAws_json1_1CancelStatementCommand: (
91
+ output: __HttpResponse,
92
+ context: __SerdeContext
93
+ ) => Promise<CancelStatementCommandOutput>;
94
+ export declare const deserializeAws_json1_1DescribeStatementCommand: (
95
+ output: __HttpResponse,
96
+ context: __SerdeContext
97
+ ) => Promise<DescribeStatementCommandOutput>;
98
+ export declare const deserializeAws_json1_1DescribeTableCommand: (
99
+ output: __HttpResponse,
100
+ context: __SerdeContext
101
+ ) => Promise<DescribeTableCommandOutput>;
102
+ export declare const deserializeAws_json1_1ExecuteStatementCommand: (
103
+ output: __HttpResponse,
104
+ context: __SerdeContext
105
+ ) => Promise<ExecuteStatementCommandOutput>;
106
+ export declare const deserializeAws_json1_1GetStatementResultCommand: (
107
+ output: __HttpResponse,
108
+ context: __SerdeContext
109
+ ) => Promise<GetStatementResultCommandOutput>;
110
+ export declare const deserializeAws_json1_1ListDatabasesCommand: (
111
+ output: __HttpResponse,
112
+ context: __SerdeContext
113
+ ) => Promise<ListDatabasesCommandOutput>;
114
+ export declare const deserializeAws_json1_1ListSchemasCommand: (
115
+ output: __HttpResponse,
116
+ context: __SerdeContext
117
+ ) => Promise<ListSchemasCommandOutput>;
118
+ export declare const deserializeAws_json1_1ListStatementsCommand: (
119
+ output: __HttpResponse,
120
+ context: __SerdeContext
121
+ ) => Promise<ListStatementsCommandOutput>;
122
+ export declare const deserializeAws_json1_1ListTablesCommand: (
123
+ output: __HttpResponse,
124
+ context: __SerdeContext
125
+ ) => Promise<ListTablesCommandOutput>;
@@ -1,38 +1,66 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { RedshiftDataClientConfig } from "./RedshiftDataClient";
3
-
4
- export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { RedshiftDataClientConfig } from "./RedshiftDataClient";
3
+
4
+ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<any>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };
@@ -1,38 +1,66 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { RedshiftDataClientConfig } from "./RedshiftDataClient";
3
-
4
- export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { RedshiftDataClientConfig } from "./RedshiftDataClient";
3
+
4
+ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<string>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };
@@ -1,37 +1,67 @@
1
- import { RedshiftDataClientConfig } from "./RedshiftDataClient";
2
-
3
- export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
4
- runtime: string;
5
- sha256: import("@aws-sdk/types").HashConstructor;
6
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
- apiVersion: string;
8
- urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- streamCollector: import("@aws-sdk/types").StreamCollector;
11
- base64Decoder: import("@aws-sdk/types").Decoder;
12
- base64Encoder: import("@aws-sdk/types").Encoder;
13
- utf8Decoder: import("@aws-sdk/types").Decoder;
14
- utf8Encoder: import("@aws-sdk/types").Encoder;
15
- disableHostPrefix: boolean;
16
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
- retryMode: string | import("@aws-sdk/types").Provider<string>;
18
- logger: import("@aws-sdk/types").Logger;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<any>;
23
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
- tls?: boolean | undefined;
29
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
- signingEscapePath?: boolean | undefined;
33
- systemClockOffset?: number | undefined;
34
- signingRegion?: string | undefined;
35
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
- };
1
+ import { RedshiftDataClientConfig } from "./RedshiftDataClient";
2
+
3
+ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler:
7
+ | (import("@aws-sdk/types").RequestHandler<
8
+ any,
9
+ any,
10
+ import("@aws-sdk/types").HttpHandlerOptions
11
+ > &
12
+ import("@aws-sdk/protocol-http").HttpHandler)
13
+ | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
14
+ apiVersion: string;
15
+ urlParser: import("@aws-sdk/types").UrlParser;
16
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ base64Decoder: import("@aws-sdk/types").Decoder;
19
+ base64Encoder: import("@aws-sdk/types").Encoder;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ disableHostPrefix: boolean;
23
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
24
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
27
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
28
+ serviceId: string;
29
+ region: string | import("@aws-sdk/types").Provider<any>;
30
+ credentialDefaultProvider: (
31
+ input: any
32
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
33
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
34
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
35
+ import("@aws-sdk/types").UserAgent
36
+ >;
37
+ defaultsMode:
38
+ | import("@aws-sdk/smithy-client").DefaultsMode
39
+ | import("@aws-sdk/types").Provider<
40
+ import("@aws-sdk/smithy-client").DefaultsMode
41
+ >;
42
+ endpoint?:
43
+ | string
44
+ | import("@aws-sdk/types").Endpoint
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
46
+ | undefined;
47
+ tls?: boolean | undefined;
48
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
49
+ credentials?:
50
+ | import("@aws-sdk/types").Credentials
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
52
+ | undefined;
53
+ signer?:
54
+ | import("@aws-sdk/types").RequestSigner
55
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | undefined;
57
+ signingEscapePath?: boolean | undefined;
58
+ systemClockOffset?: number | undefined;
59
+ signingRegion?: string | undefined;
60
+ signerConstructor?:
61
+ | (new (
62
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
63
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
64
+ ) => import("@aws-sdk/types").RequestSigner)
65
+ | undefined;
66
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
67
+ };