@aws-sdk/client-redshift-data 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/RedshiftData.d.ts +174 -55
- package/dist-types/ts3.4/RedshiftDataClient.d.ts +165 -83
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CancelStatementCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeStatementCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetStatementResultCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListStatementsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +10 -10
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/RedshiftDataServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +436 -578
- package/dist-types/ts3.4/pagination/DescribeTablePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetStatementResultPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSchemasPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListStatementsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +125 -32
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-redshift-data
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-redshift-data
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-redshift-data
|
|
@@ -1,55 +1,174 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
BatchExecuteStatementCommandInput,
|
|
4
|
+
BatchExecuteStatementCommandOutput,
|
|
5
|
+
} from "./commands/BatchExecuteStatementCommand";
|
|
6
|
+
import {
|
|
7
|
+
CancelStatementCommandInput,
|
|
8
|
+
CancelStatementCommandOutput,
|
|
9
|
+
} from "./commands/CancelStatementCommand";
|
|
10
|
+
import {
|
|
11
|
+
DescribeStatementCommandInput,
|
|
12
|
+
DescribeStatementCommandOutput,
|
|
13
|
+
} from "./commands/DescribeStatementCommand";
|
|
14
|
+
import {
|
|
15
|
+
DescribeTableCommandInput,
|
|
16
|
+
DescribeTableCommandOutput,
|
|
17
|
+
} from "./commands/DescribeTableCommand";
|
|
18
|
+
import {
|
|
19
|
+
ExecuteStatementCommandInput,
|
|
20
|
+
ExecuteStatementCommandOutput,
|
|
21
|
+
} from "./commands/ExecuteStatementCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetStatementResultCommandInput,
|
|
24
|
+
GetStatementResultCommandOutput,
|
|
25
|
+
} from "./commands/GetStatementResultCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListDatabasesCommandInput,
|
|
28
|
+
ListDatabasesCommandOutput,
|
|
29
|
+
} from "./commands/ListDatabasesCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListSchemasCommandInput,
|
|
32
|
+
ListSchemasCommandOutput,
|
|
33
|
+
} from "./commands/ListSchemasCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListStatementsCommandInput,
|
|
36
|
+
ListStatementsCommandOutput,
|
|
37
|
+
} from "./commands/ListStatementsCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListTablesCommandInput,
|
|
40
|
+
ListTablesCommandOutput,
|
|
41
|
+
} from "./commands/ListTablesCommand";
|
|
42
|
+
import { RedshiftDataClient } from "./RedshiftDataClient";
|
|
43
|
+
export declare class RedshiftData extends RedshiftDataClient {
|
|
44
|
+
batchExecuteStatement(
|
|
45
|
+
args: BatchExecuteStatementCommandInput,
|
|
46
|
+
options?: __HttpHandlerOptions
|
|
47
|
+
): Promise<BatchExecuteStatementCommandOutput>;
|
|
48
|
+
batchExecuteStatement(
|
|
49
|
+
args: BatchExecuteStatementCommandInput,
|
|
50
|
+
cb: (err: any, data?: BatchExecuteStatementCommandOutput) => void
|
|
51
|
+
): void;
|
|
52
|
+
batchExecuteStatement(
|
|
53
|
+
args: BatchExecuteStatementCommandInput,
|
|
54
|
+
options: __HttpHandlerOptions,
|
|
55
|
+
cb: (err: any, data?: BatchExecuteStatementCommandOutput) => void
|
|
56
|
+
): void;
|
|
57
|
+
cancelStatement(
|
|
58
|
+
args: CancelStatementCommandInput,
|
|
59
|
+
options?: __HttpHandlerOptions
|
|
60
|
+
): Promise<CancelStatementCommandOutput>;
|
|
61
|
+
cancelStatement(
|
|
62
|
+
args: CancelStatementCommandInput,
|
|
63
|
+
cb: (err: any, data?: CancelStatementCommandOutput) => void
|
|
64
|
+
): void;
|
|
65
|
+
cancelStatement(
|
|
66
|
+
args: CancelStatementCommandInput,
|
|
67
|
+
options: __HttpHandlerOptions,
|
|
68
|
+
cb: (err: any, data?: CancelStatementCommandOutput) => void
|
|
69
|
+
): void;
|
|
70
|
+
describeStatement(
|
|
71
|
+
args: DescribeStatementCommandInput,
|
|
72
|
+
options?: __HttpHandlerOptions
|
|
73
|
+
): Promise<DescribeStatementCommandOutput>;
|
|
74
|
+
describeStatement(
|
|
75
|
+
args: DescribeStatementCommandInput,
|
|
76
|
+
cb: (err: any, data?: DescribeStatementCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
describeStatement(
|
|
79
|
+
args: DescribeStatementCommandInput,
|
|
80
|
+
options: __HttpHandlerOptions,
|
|
81
|
+
cb: (err: any, data?: DescribeStatementCommandOutput) => void
|
|
82
|
+
): void;
|
|
83
|
+
describeTable(
|
|
84
|
+
args: DescribeTableCommandInput,
|
|
85
|
+
options?: __HttpHandlerOptions
|
|
86
|
+
): Promise<DescribeTableCommandOutput>;
|
|
87
|
+
describeTable(
|
|
88
|
+
args: DescribeTableCommandInput,
|
|
89
|
+
cb: (err: any, data?: DescribeTableCommandOutput) => void
|
|
90
|
+
): void;
|
|
91
|
+
describeTable(
|
|
92
|
+
args: DescribeTableCommandInput,
|
|
93
|
+
options: __HttpHandlerOptions,
|
|
94
|
+
cb: (err: any, data?: DescribeTableCommandOutput) => void
|
|
95
|
+
): void;
|
|
96
|
+
executeStatement(
|
|
97
|
+
args: ExecuteStatementCommandInput,
|
|
98
|
+
options?: __HttpHandlerOptions
|
|
99
|
+
): Promise<ExecuteStatementCommandOutput>;
|
|
100
|
+
executeStatement(
|
|
101
|
+
args: ExecuteStatementCommandInput,
|
|
102
|
+
cb: (err: any, data?: ExecuteStatementCommandOutput) => void
|
|
103
|
+
): void;
|
|
104
|
+
executeStatement(
|
|
105
|
+
args: ExecuteStatementCommandInput,
|
|
106
|
+
options: __HttpHandlerOptions,
|
|
107
|
+
cb: (err: any, data?: ExecuteStatementCommandOutput) => void
|
|
108
|
+
): void;
|
|
109
|
+
getStatementResult(
|
|
110
|
+
args: GetStatementResultCommandInput,
|
|
111
|
+
options?: __HttpHandlerOptions
|
|
112
|
+
): Promise<GetStatementResultCommandOutput>;
|
|
113
|
+
getStatementResult(
|
|
114
|
+
args: GetStatementResultCommandInput,
|
|
115
|
+
cb: (err: any, data?: GetStatementResultCommandOutput) => void
|
|
116
|
+
): void;
|
|
117
|
+
getStatementResult(
|
|
118
|
+
args: GetStatementResultCommandInput,
|
|
119
|
+
options: __HttpHandlerOptions,
|
|
120
|
+
cb: (err: any, data?: GetStatementResultCommandOutput) => void
|
|
121
|
+
): void;
|
|
122
|
+
listDatabases(
|
|
123
|
+
args: ListDatabasesCommandInput,
|
|
124
|
+
options?: __HttpHandlerOptions
|
|
125
|
+
): Promise<ListDatabasesCommandOutput>;
|
|
126
|
+
listDatabases(
|
|
127
|
+
args: ListDatabasesCommandInput,
|
|
128
|
+
cb: (err: any, data?: ListDatabasesCommandOutput) => void
|
|
129
|
+
): void;
|
|
130
|
+
listDatabases(
|
|
131
|
+
args: ListDatabasesCommandInput,
|
|
132
|
+
options: __HttpHandlerOptions,
|
|
133
|
+
cb: (err: any, data?: ListDatabasesCommandOutput) => void
|
|
134
|
+
): void;
|
|
135
|
+
listSchemas(
|
|
136
|
+
args: ListSchemasCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<ListSchemasCommandOutput>;
|
|
139
|
+
listSchemas(
|
|
140
|
+
args: ListSchemasCommandInput,
|
|
141
|
+
cb: (err: any, data?: ListSchemasCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
listSchemas(
|
|
144
|
+
args: ListSchemasCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: ListSchemasCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
listStatements(
|
|
149
|
+
args: ListStatementsCommandInput,
|
|
150
|
+
options?: __HttpHandlerOptions
|
|
151
|
+
): Promise<ListStatementsCommandOutput>;
|
|
152
|
+
listStatements(
|
|
153
|
+
args: ListStatementsCommandInput,
|
|
154
|
+
cb: (err: any, data?: ListStatementsCommandOutput) => void
|
|
155
|
+
): void;
|
|
156
|
+
listStatements(
|
|
157
|
+
args: ListStatementsCommandInput,
|
|
158
|
+
options: __HttpHandlerOptions,
|
|
159
|
+
cb: (err: any, data?: ListStatementsCommandOutput) => void
|
|
160
|
+
): void;
|
|
161
|
+
listTables(
|
|
162
|
+
args: ListTablesCommandInput,
|
|
163
|
+
options?: __HttpHandlerOptions
|
|
164
|
+
): Promise<ListTablesCommandOutput>;
|
|
165
|
+
listTables(
|
|
166
|
+
args: ListTablesCommandInput,
|
|
167
|
+
cb: (err: any, data?: ListTablesCommandOutput) => void
|
|
168
|
+
): void;
|
|
169
|
+
listTables(
|
|
170
|
+
args: ListTablesCommandInput,
|
|
171
|
+
options: __HttpHandlerOptions,
|
|
172
|
+
cb: (err: any, data?: ListTablesCommandOutput) => void
|
|
173
|
+
): void;
|
|
174
|
+
}
|
|
@@ -1,83 +1,165 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
BatchExecuteStatementCommandInput,
|
|
47
|
+
BatchExecuteStatementCommandOutput,
|
|
48
|
+
} from "./commands/BatchExecuteStatementCommand";
|
|
49
|
+
import {
|
|
50
|
+
CancelStatementCommandInput,
|
|
51
|
+
CancelStatementCommandOutput,
|
|
52
|
+
} from "./commands/CancelStatementCommand";
|
|
53
|
+
import {
|
|
54
|
+
DescribeStatementCommandInput,
|
|
55
|
+
DescribeStatementCommandOutput,
|
|
56
|
+
} from "./commands/DescribeStatementCommand";
|
|
57
|
+
import {
|
|
58
|
+
DescribeTableCommandInput,
|
|
59
|
+
DescribeTableCommandOutput,
|
|
60
|
+
} from "./commands/DescribeTableCommand";
|
|
61
|
+
import {
|
|
62
|
+
ExecuteStatementCommandInput,
|
|
63
|
+
ExecuteStatementCommandOutput,
|
|
64
|
+
} from "./commands/ExecuteStatementCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetStatementResultCommandInput,
|
|
67
|
+
GetStatementResultCommandOutput,
|
|
68
|
+
} from "./commands/GetStatementResultCommand";
|
|
69
|
+
import {
|
|
70
|
+
ListDatabasesCommandInput,
|
|
71
|
+
ListDatabasesCommandOutput,
|
|
72
|
+
} from "./commands/ListDatabasesCommand";
|
|
73
|
+
import {
|
|
74
|
+
ListSchemasCommandInput,
|
|
75
|
+
ListSchemasCommandOutput,
|
|
76
|
+
} from "./commands/ListSchemasCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListStatementsCommandInput,
|
|
79
|
+
ListStatementsCommandOutput,
|
|
80
|
+
} from "./commands/ListStatementsCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListTablesCommandInput,
|
|
83
|
+
ListTablesCommandOutput,
|
|
84
|
+
} from "./commands/ListTablesCommand";
|
|
85
|
+
export declare type ServiceInputTypes =
|
|
86
|
+
| BatchExecuteStatementCommandInput
|
|
87
|
+
| CancelStatementCommandInput
|
|
88
|
+
| DescribeStatementCommandInput
|
|
89
|
+
| DescribeTableCommandInput
|
|
90
|
+
| ExecuteStatementCommandInput
|
|
91
|
+
| GetStatementResultCommandInput
|
|
92
|
+
| ListDatabasesCommandInput
|
|
93
|
+
| ListSchemasCommandInput
|
|
94
|
+
| ListStatementsCommandInput
|
|
95
|
+
| ListTablesCommandInput;
|
|
96
|
+
export declare type ServiceOutputTypes =
|
|
97
|
+
| BatchExecuteStatementCommandOutput
|
|
98
|
+
| CancelStatementCommandOutput
|
|
99
|
+
| DescribeStatementCommandOutput
|
|
100
|
+
| DescribeTableCommandOutput
|
|
101
|
+
| ExecuteStatementCommandOutput
|
|
102
|
+
| GetStatementResultCommandOutput
|
|
103
|
+
| ListDatabasesCommandOutput
|
|
104
|
+
| ListSchemasCommandOutput
|
|
105
|
+
| ListStatementsCommandOutput
|
|
106
|
+
| ListTablesCommandOutput;
|
|
107
|
+
export interface ClientDefaults
|
|
108
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
109
|
+
requestHandler?: __HttpHandler;
|
|
110
|
+
sha256?: __HashConstructor;
|
|
111
|
+
urlParser?: __UrlParser;
|
|
112
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
113
|
+
streamCollector?: __StreamCollector;
|
|
114
|
+
base64Decoder?: __Decoder;
|
|
115
|
+
base64Encoder?: __Encoder;
|
|
116
|
+
utf8Decoder?: __Decoder;
|
|
117
|
+
utf8Encoder?: __Encoder;
|
|
118
|
+
runtime?: string;
|
|
119
|
+
disableHostPrefix?: boolean;
|
|
120
|
+
maxAttempts?: number | __Provider<number>;
|
|
121
|
+
retryMode?: string | __Provider<string>;
|
|
122
|
+
logger?: __Logger;
|
|
123
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
124
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
125
|
+
serviceId?: string;
|
|
126
|
+
region?: string | __Provider<string>;
|
|
127
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
128
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
129
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
130
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
131
|
+
}
|
|
132
|
+
declare type RedshiftDataClientConfigType = Partial<
|
|
133
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
134
|
+
> &
|
|
135
|
+
ClientDefaults &
|
|
136
|
+
RegionInputConfig &
|
|
137
|
+
EndpointsInputConfig &
|
|
138
|
+
RetryInputConfig &
|
|
139
|
+
HostHeaderInputConfig &
|
|
140
|
+
AwsAuthInputConfig &
|
|
141
|
+
UserAgentInputConfig;
|
|
142
|
+
export interface RedshiftDataClientConfig
|
|
143
|
+
extends RedshiftDataClientConfigType {}
|
|
144
|
+
declare type RedshiftDataClientResolvedConfigType =
|
|
145
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
146
|
+
Required<ClientDefaults> &
|
|
147
|
+
RegionResolvedConfig &
|
|
148
|
+
EndpointsResolvedConfig &
|
|
149
|
+
RetryResolvedConfig &
|
|
150
|
+
HostHeaderResolvedConfig &
|
|
151
|
+
AwsAuthResolvedConfig &
|
|
152
|
+
UserAgentResolvedConfig;
|
|
153
|
+
export interface RedshiftDataClientResolvedConfig
|
|
154
|
+
extends RedshiftDataClientResolvedConfigType {}
|
|
155
|
+
export declare class RedshiftDataClient extends __Client<
|
|
156
|
+
__HttpHandlerOptions,
|
|
157
|
+
ServiceInputTypes,
|
|
158
|
+
ServiceOutputTypes,
|
|
159
|
+
RedshiftDataClientResolvedConfig
|
|
160
|
+
> {
|
|
161
|
+
readonly config: RedshiftDataClientResolvedConfig;
|
|
162
|
+
constructor(configuration: RedshiftDataClientConfig);
|
|
163
|
+
destroy(): void;
|
|
164
|
+
}
|
|
165
|
+
export {};
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BatchExecuteStatementInput,
|
|
10
|
+
BatchExecuteStatementOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RedshiftDataClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RedshiftDataClient";
|
|
17
|
+
export interface BatchExecuteStatementCommandInput
|
|
18
|
+
extends BatchExecuteStatementInput {}
|
|
19
|
+
export interface BatchExecuteStatementCommandOutput
|
|
20
|
+
extends BatchExecuteStatementOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class BatchExecuteStatementCommand extends $Command<
|
|
23
|
+
BatchExecuteStatementCommandInput,
|
|
24
|
+
BatchExecuteStatementCommandOutput,
|
|
25
|
+
RedshiftDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: BatchExecuteStatementCommandInput;
|
|
28
|
+
constructor(input: BatchExecuteStatementCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RedshiftDataClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
BatchExecuteStatementCommandInput,
|
|
35
|
+
BatchExecuteStatementCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CancelStatementRequest,
|
|
10
|
+
CancelStatementResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RedshiftDataClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RedshiftDataClient";
|
|
17
|
+
export interface CancelStatementCommandInput extends CancelStatementRequest {}
|
|
18
|
+
export interface CancelStatementCommandOutput
|
|
19
|
+
extends CancelStatementResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class CancelStatementCommand extends $Command<
|
|
22
|
+
CancelStatementCommandInput,
|
|
23
|
+
CancelStatementCommandOutput,
|
|
24
|
+
RedshiftDataClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: CancelStatementCommandInput;
|
|
27
|
+
constructor(input: CancelStatementCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: RedshiftDataClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CancelStatementCommandInput, CancelStatementCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|