@aws-sdk/client-timestream-write 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/TimestreamWrite.d.ts +259 -80
- package/dist-types/ts3.4/TimestreamWriteClient.d.ts +202 -91
- package/dist-types/ts3.4/commands/CreateDatabaseCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteDatabaseCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DescribeDatabaseCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateDatabaseCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/WriteRecordsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- 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/TimestreamWriteServiceException.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 +380 -465
- 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/ListTablesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +72 -41
- package/dist-types/ts3.4/runtimeConfig.d.ts +72 -41
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +73 -40
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +35 -35
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { TimestreamWrite } from "../TimestreamWrite";
|
|
3
|
-
import { TimestreamWriteClient } from "../TimestreamWriteClient";
|
|
4
|
-
export interface TimestreamWritePaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { TimestreamWrite } from "../TimestreamWrite";
|
|
3
|
+
import { TimestreamWriteClient } from "../TimestreamWriteClient";
|
|
4
|
+
export interface TimestreamWritePaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: TimestreamWrite | TimestreamWriteClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDatabasesCommandInput,
|
|
4
|
+
ListDatabasesCommandOutput,
|
|
5
|
+
} from "../commands/ListDatabasesCommand";
|
|
6
|
+
import { TimestreamWritePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDatabases(
|
|
8
|
+
config: TimestreamWritePaginationConfiguration,
|
|
9
|
+
input: ListDatabasesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListDatabasesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTablesCommandInput,
|
|
4
|
+
ListTablesCommandOutput,
|
|
5
|
+
} from "../commands/ListTablesCommand";
|
|
6
|
+
import { TimestreamWritePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListTables(
|
|
8
|
+
config: TimestreamWritePaginationConfiguration,
|
|
9
|
+
input: ListTablesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListTablesCommandOutput>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListDatabasesPaginator";
|
|
3
|
-
export * from "./ListTablesPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListDatabasesPaginator";
|
|
3
|
+
export * from "./ListTablesPaginator";
|
|
@@ -1,47 +1,185 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
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
|
-
|
|
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
|
+
CreateDatabaseCommandInput,
|
|
8
|
+
CreateDatabaseCommandOutput,
|
|
9
|
+
} from "../commands/CreateDatabaseCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateTableCommandInput,
|
|
12
|
+
CreateTableCommandOutput,
|
|
13
|
+
} from "../commands/CreateTableCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteDatabaseCommandInput,
|
|
16
|
+
DeleteDatabaseCommandOutput,
|
|
17
|
+
} from "../commands/DeleteDatabaseCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteTableCommandInput,
|
|
20
|
+
DeleteTableCommandOutput,
|
|
21
|
+
} from "../commands/DeleteTableCommand";
|
|
22
|
+
import {
|
|
23
|
+
DescribeDatabaseCommandInput,
|
|
24
|
+
DescribeDatabaseCommandOutput,
|
|
25
|
+
} from "../commands/DescribeDatabaseCommand";
|
|
26
|
+
import {
|
|
27
|
+
DescribeEndpointsCommandInput,
|
|
28
|
+
DescribeEndpointsCommandOutput,
|
|
29
|
+
} from "../commands/DescribeEndpointsCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeTableCommandInput,
|
|
32
|
+
DescribeTableCommandOutput,
|
|
33
|
+
} from "../commands/DescribeTableCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListDatabasesCommandInput,
|
|
36
|
+
ListDatabasesCommandOutput,
|
|
37
|
+
} from "../commands/ListDatabasesCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListTablesCommandInput,
|
|
40
|
+
ListTablesCommandOutput,
|
|
41
|
+
} from "../commands/ListTablesCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListTagsForResourceCommandInput,
|
|
44
|
+
ListTagsForResourceCommandOutput,
|
|
45
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
TagResourceCommandInput,
|
|
48
|
+
TagResourceCommandOutput,
|
|
49
|
+
} from "../commands/TagResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
UntagResourceCommandInput,
|
|
52
|
+
UntagResourceCommandOutput,
|
|
53
|
+
} from "../commands/UntagResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
UpdateDatabaseCommandInput,
|
|
56
|
+
UpdateDatabaseCommandOutput,
|
|
57
|
+
} from "../commands/UpdateDatabaseCommand";
|
|
58
|
+
import {
|
|
59
|
+
UpdateTableCommandInput,
|
|
60
|
+
UpdateTableCommandOutput,
|
|
61
|
+
} from "../commands/UpdateTableCommand";
|
|
62
|
+
import {
|
|
63
|
+
WriteRecordsCommandInput,
|
|
64
|
+
WriteRecordsCommandOutput,
|
|
65
|
+
} from "../commands/WriteRecordsCommand";
|
|
66
|
+
export declare const serializeAws_json1_0CreateDatabaseCommand: (
|
|
67
|
+
input: CreateDatabaseCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_json1_0CreateTableCommand: (
|
|
71
|
+
input: CreateTableCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_json1_0DeleteDatabaseCommand: (
|
|
75
|
+
input: DeleteDatabaseCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_json1_0DeleteTableCommand: (
|
|
79
|
+
input: DeleteTableCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_json1_0DescribeDatabaseCommand: (
|
|
83
|
+
input: DescribeDatabaseCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_json1_0DescribeEndpointsCommand: (
|
|
87
|
+
input: DescribeEndpointsCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_json1_0DescribeTableCommand: (
|
|
91
|
+
input: DescribeTableCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_json1_0ListDatabasesCommand: (
|
|
95
|
+
input: ListDatabasesCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_json1_0ListTablesCommand: (
|
|
99
|
+
input: ListTablesCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_json1_0ListTagsForResourceCommand: (
|
|
103
|
+
input: ListTagsForResourceCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_json1_0TagResourceCommand: (
|
|
107
|
+
input: TagResourceCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_json1_0UntagResourceCommand: (
|
|
111
|
+
input: UntagResourceCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_0UpdateDatabaseCommand: (
|
|
115
|
+
input: UpdateDatabaseCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_0UpdateTableCommand: (
|
|
119
|
+
input: UpdateTableCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_0WriteRecordsCommand: (
|
|
123
|
+
input: WriteRecordsCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const deserializeAws_json1_0CreateDatabaseCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<CreateDatabaseCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_json1_0CreateTableCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<CreateTableCommandOutput>;
|
|
134
|
+
export declare const deserializeAws_json1_0DeleteDatabaseCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<DeleteDatabaseCommandOutput>;
|
|
138
|
+
export declare const deserializeAws_json1_0DeleteTableCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<DeleteTableCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_json1_0DescribeDatabaseCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<DescribeDatabaseCommandOutput>;
|
|
146
|
+
export declare const deserializeAws_json1_0DescribeEndpointsCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<DescribeEndpointsCommandOutput>;
|
|
150
|
+
export declare const deserializeAws_json1_0DescribeTableCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<DescribeTableCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_json1_0ListDatabasesCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<ListDatabasesCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_json1_0ListTablesCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<ListTablesCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_json1_0TagResourceCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<TagResourceCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_json1_0UntagResourceCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
174
|
+
export declare const deserializeAws_json1_0UpdateDatabaseCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<UpdateDatabaseCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_json1_0UpdateTableCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<UpdateTableCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_json1_0WriteRecordsCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<WriteRecordsCommandOutput>;
|
|
@@ -1,41 +1,72 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { TimestreamWriteClientConfig } from "./TimestreamWriteClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { TimestreamWriteClientConfig } from "./TimestreamWriteClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: TimestreamWriteClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<
|
|
20
|
+
boolean | undefined
|
|
21
|
+
>;
|
|
22
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
23
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
24
|
+
requestHandler:
|
|
25
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
26
|
+
any,
|
|
27
|
+
any,
|
|
28
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
29
|
+
> &
|
|
30
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
31
|
+
| RequestHandler;
|
|
32
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
33
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
34
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
35
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
36
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
37
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
38
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
39
|
+
apiVersion: string;
|
|
40
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
41
|
+
disableHostPrefix: boolean;
|
|
42
|
+
logger: import("@aws-sdk/types").Logger;
|
|
43
|
+
serviceId: string;
|
|
44
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
45
|
+
endpoint?:
|
|
46
|
+
| string
|
|
47
|
+
| import("@aws-sdk/types").Endpoint
|
|
48
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
49
|
+
| undefined;
|
|
50
|
+
tls?: boolean | undefined;
|
|
51
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
52
|
+
credentials?:
|
|
53
|
+
| import("@aws-sdk/types").Credentials
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
55
|
+
| undefined;
|
|
56
|
+
signer?:
|
|
57
|
+
| import("@aws-sdk/types").RequestSigner
|
|
58
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
59
|
+
| undefined;
|
|
60
|
+
signingEscapePath?: boolean | undefined;
|
|
61
|
+
systemClockOffset?: number | undefined;
|
|
62
|
+
signingRegion?: string | undefined;
|
|
63
|
+
signerConstructor?:
|
|
64
|
+
| (new (
|
|
65
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
66
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
67
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
68
|
+
| undefined;
|
|
69
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
70
|
+
endpointCacheSize?: number | undefined;
|
|
71
|
+
endpointDiscoveryEnabled?: boolean | undefined;
|
|
72
|
+
};
|
|
@@ -1,41 +1,72 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { TimestreamWriteClientConfig } from "./TimestreamWriteClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { TimestreamWriteClientConfig } from "./TimestreamWriteClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: TimestreamWriteClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<
|
|
20
|
+
boolean | undefined
|
|
21
|
+
>;
|
|
22
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
23
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
24
|
+
requestHandler:
|
|
25
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
26
|
+
any,
|
|
27
|
+
any,
|
|
28
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
29
|
+
> &
|
|
30
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
31
|
+
| RequestHandler;
|
|
32
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
33
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
34
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
35
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
36
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
37
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
38
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
39
|
+
apiVersion: string;
|
|
40
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
41
|
+
disableHostPrefix: boolean;
|
|
42
|
+
logger: import("@aws-sdk/types").Logger;
|
|
43
|
+
serviceId: string;
|
|
44
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
45
|
+
endpoint?:
|
|
46
|
+
| string
|
|
47
|
+
| import("@aws-sdk/types").Endpoint
|
|
48
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
49
|
+
| undefined;
|
|
50
|
+
tls?: boolean | undefined;
|
|
51
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
52
|
+
credentials?:
|
|
53
|
+
| import("@aws-sdk/types").Credentials
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
55
|
+
| undefined;
|
|
56
|
+
signer?:
|
|
57
|
+
| import("@aws-sdk/types").RequestSigner
|
|
58
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
59
|
+
| undefined;
|
|
60
|
+
signingEscapePath?: boolean | undefined;
|
|
61
|
+
systemClockOffset?: number | undefined;
|
|
62
|
+
signingRegion?: string | undefined;
|
|
63
|
+
signerConstructor?:
|
|
64
|
+
| (new (
|
|
65
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
66
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
67
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
68
|
+
| undefined;
|
|
69
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
70
|
+
endpointCacheSize?: number | undefined;
|
|
71
|
+
endpointDiscoveryEnabled?: boolean | undefined;
|
|
72
|
+
};
|