@aws-sdk/client-timestream-write 3.52.0 → 3.54.1
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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/TimestreamWriteServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +130 -1
- package/dist-cjs/protocols/Aws_json1_0.js +186 -722
- package/dist-es/index.js +1 -0
- package/dist-es/models/TimestreamWriteServiceException.js +12 -0
- package/dist-es/models/models_0.js +120 -1
- package/dist-es/protocols/Aws_json1_0.js +394 -765
- package/dist-types/TimestreamWriteClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/TimestreamWriteServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +65 -28
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/TimestreamWriteClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/TimestreamWriteServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -28
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +28 -28
|
@@ -6,7 +6,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
6
6
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
7
7
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
8
8
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
9
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
10
10
|
import { CreateDatabaseCommandInput, CreateDatabaseCommandOutput } from "./commands/CreateDatabaseCommand";
|
|
11
11
|
import { CreateTableCommandInput, CreateTableCommandOutput } from "./commands/CreateTableCommand";
|
|
12
12
|
import { DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput } from "./commands/DeleteDatabaseCommand";
|
|
@@ -44,7 +44,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
44
44
|
* A function that can calculate the length of a request body.
|
|
45
45
|
* @internal
|
|
46
46
|
*/
|
|
47
|
-
bodyLengthChecker?:
|
|
47
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
48
48
|
/**
|
|
49
49
|
* A function that converts a stream into an array of bytes.
|
|
50
50
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from TimestreamWrite service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class TimestreamWriteServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,19 +1,28 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { TimestreamWriteServiceException as __BaseException } from "./TimestreamWriteServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You are not authorized to perform this action.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
Message: string | undefined;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
14
|
}
|
|
10
15
|
/**
|
|
11
16
|
* <p>Timestream was unable to process this request because it contains resource that already exists.</p>
|
|
12
17
|
*/
|
|
13
|
-
export
|
|
14
|
-
name: "ConflictException";
|
|
15
|
-
$fault: "client";
|
|
18
|
+
export declare class ConflictException extends __BaseException {
|
|
19
|
+
readonly name: "ConflictException";
|
|
20
|
+
readonly $fault: "client";
|
|
16
21
|
Message: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
17
26
|
}
|
|
18
27
|
/**
|
|
19
28
|
* <p>
|
|
@@ -121,42 +130,62 @@ export declare namespace CreateDatabaseResponse {
|
|
|
121
130
|
/**
|
|
122
131
|
* <p> Timestream was unable to fully process this request because of an internal server error.</p>
|
|
123
132
|
*/
|
|
124
|
-
export
|
|
125
|
-
name: "InternalServerException";
|
|
126
|
-
$fault: "server";
|
|
133
|
+
export declare class InternalServerException extends __BaseException {
|
|
134
|
+
readonly name: "InternalServerException";
|
|
135
|
+
readonly $fault: "server";
|
|
127
136
|
Message: string | undefined;
|
|
137
|
+
/**
|
|
138
|
+
* @internal
|
|
139
|
+
*/
|
|
140
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
128
141
|
}
|
|
129
142
|
/**
|
|
130
143
|
* <p>The requested endpoint was invalid.</p>
|
|
131
144
|
*/
|
|
132
|
-
export
|
|
133
|
-
name: "InvalidEndpointException";
|
|
134
|
-
$fault: "client";
|
|
145
|
+
export declare class InvalidEndpointException extends __BaseException {
|
|
146
|
+
readonly name: "InvalidEndpointException";
|
|
147
|
+
readonly $fault: "client";
|
|
135
148
|
Message?: string;
|
|
149
|
+
/**
|
|
150
|
+
* @internal
|
|
151
|
+
*/
|
|
152
|
+
constructor(opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>);
|
|
136
153
|
}
|
|
137
154
|
/**
|
|
138
155
|
* <p> Instance quota of resource exceeded for this account.</p>
|
|
139
156
|
*/
|
|
140
|
-
export
|
|
141
|
-
name: "ServiceQuotaExceededException";
|
|
142
|
-
$fault: "client";
|
|
157
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
158
|
+
readonly name: "ServiceQuotaExceededException";
|
|
159
|
+
readonly $fault: "client";
|
|
143
160
|
Message?: string;
|
|
161
|
+
/**
|
|
162
|
+
* @internal
|
|
163
|
+
*/
|
|
164
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
144
165
|
}
|
|
145
166
|
/**
|
|
146
167
|
* <p> Too many requests were made by a user exceeding service quotas. The request was throttled.</p>
|
|
147
168
|
*/
|
|
148
|
-
export
|
|
149
|
-
name: "ThrottlingException";
|
|
150
|
-
$fault: "client";
|
|
169
|
+
export declare class ThrottlingException extends __BaseException {
|
|
170
|
+
readonly name: "ThrottlingException";
|
|
171
|
+
readonly $fault: "client";
|
|
151
172
|
Message: string | undefined;
|
|
173
|
+
/**
|
|
174
|
+
* @internal
|
|
175
|
+
*/
|
|
176
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
152
177
|
}
|
|
153
178
|
/**
|
|
154
179
|
* <p> Invalid or malformed request.</p>
|
|
155
180
|
*/
|
|
156
|
-
export
|
|
157
|
-
name: "ValidationException";
|
|
158
|
-
$fault: "client";
|
|
181
|
+
export declare class ValidationException extends __BaseException {
|
|
182
|
+
readonly name: "ValidationException";
|
|
183
|
+
readonly $fault: "client";
|
|
159
184
|
Message: string | undefined;
|
|
185
|
+
/**
|
|
186
|
+
* @internal
|
|
187
|
+
*/
|
|
188
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
160
189
|
}
|
|
161
190
|
export declare enum S3EncryptionOption {
|
|
162
191
|
SSE_KMS = "SSE_KMS",
|
|
@@ -346,10 +375,14 @@ export declare namespace CreateTableResponse {
|
|
|
346
375
|
/**
|
|
347
376
|
* <p>The operation tried to access a nonexistent resource. The resource might not be specified correctly, or its status might not be ACTIVE.</p>
|
|
348
377
|
*/
|
|
349
|
-
export
|
|
350
|
-
name: "ResourceNotFoundException";
|
|
351
|
-
$fault: "client";
|
|
378
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
379
|
+
readonly name: "ResourceNotFoundException";
|
|
380
|
+
readonly $fault: "client";
|
|
352
381
|
Message?: string;
|
|
382
|
+
/**
|
|
383
|
+
* @internal
|
|
384
|
+
*/
|
|
385
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
353
386
|
}
|
|
354
387
|
export interface DeleteDatabaseRequest {
|
|
355
388
|
/**
|
|
@@ -856,11 +889,15 @@ export declare namespace RejectedRecord {
|
|
|
856
889
|
* For more information, see <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html">Quotas</a> in the Timestream Developer Guide.
|
|
857
890
|
* </p>
|
|
858
891
|
*/
|
|
859
|
-
export
|
|
860
|
-
name: "RejectedRecordsException";
|
|
861
|
-
$fault: "client";
|
|
892
|
+
export declare class RejectedRecordsException extends __BaseException {
|
|
893
|
+
readonly name: "RejectedRecordsException";
|
|
894
|
+
readonly $fault: "client";
|
|
862
895
|
Message?: string;
|
|
863
896
|
RejectedRecords?: RejectedRecord[];
|
|
897
|
+
/**
|
|
898
|
+
* @internal
|
|
899
|
+
*/
|
|
900
|
+
constructor(opts: __ExceptionOptionType<RejectedRecordsException, __BaseException>);
|
|
864
901
|
}
|
|
865
902
|
export interface TagResourceRequest {
|
|
866
903
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) =>
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) =>
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) =>
|
|
|
8
8
|
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;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -6,7 +6,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
6
6
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
7
7
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
8
8
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
9
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
10
10
|
import { CreateDatabaseCommandInput, CreateDatabaseCommandOutput } from "./commands/CreateDatabaseCommand";
|
|
11
11
|
import { CreateTableCommandInput, CreateTableCommandOutput } from "./commands/CreateTableCommand";
|
|
12
12
|
import { DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput } from "./commands/DeleteDatabaseCommand";
|
|
@@ -32,7 +32,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
32
32
|
|
|
33
33
|
urlParser?: __UrlParser;
|
|
34
34
|
|
|
35
|
-
bodyLengthChecker?:
|
|
35
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
36
36
|
|
|
37
37
|
streamCollector?: __StreamCollector;
|
|
38
38
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class TimestreamWriteServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,15 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { TimestreamWriteServiceException as __BaseException } from "./TimestreamWriteServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message: string | undefined;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
|
|
9
|
-
export
|
|
10
|
-
name: "ConflictException";
|
|
11
|
-
$fault: "client";
|
|
12
|
+
export declare class ConflictException extends __BaseException {
|
|
13
|
+
readonly name: "ConflictException";
|
|
14
|
+
readonly $fault: "client";
|
|
12
15
|
Message: string | undefined;
|
|
16
|
+
|
|
17
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
13
18
|
}
|
|
14
19
|
|
|
15
20
|
export interface Tag {
|
|
@@ -62,34 +67,44 @@ export declare namespace CreateDatabaseResponse {
|
|
|
62
67
|
const filterSensitiveLog: (obj: CreateDatabaseResponse) => any;
|
|
63
68
|
}
|
|
64
69
|
|
|
65
|
-
export
|
|
66
|
-
name: "InternalServerException";
|
|
67
|
-
$fault: "server";
|
|
70
|
+
export declare class InternalServerException extends __BaseException {
|
|
71
|
+
readonly name: "InternalServerException";
|
|
72
|
+
readonly $fault: "server";
|
|
68
73
|
Message: string | undefined;
|
|
74
|
+
|
|
75
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
69
76
|
}
|
|
70
77
|
|
|
71
|
-
export
|
|
72
|
-
name: "InvalidEndpointException";
|
|
73
|
-
$fault: "client";
|
|
78
|
+
export declare class InvalidEndpointException extends __BaseException {
|
|
79
|
+
readonly name: "InvalidEndpointException";
|
|
80
|
+
readonly $fault: "client";
|
|
74
81
|
Message?: string;
|
|
82
|
+
|
|
83
|
+
constructor(opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>);
|
|
75
84
|
}
|
|
76
85
|
|
|
77
|
-
export
|
|
78
|
-
name: "ServiceQuotaExceededException";
|
|
79
|
-
$fault: "client";
|
|
86
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
87
|
+
readonly name: "ServiceQuotaExceededException";
|
|
88
|
+
readonly $fault: "client";
|
|
80
89
|
Message?: string;
|
|
90
|
+
|
|
91
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
81
92
|
}
|
|
82
93
|
|
|
83
|
-
export
|
|
84
|
-
name: "ThrottlingException";
|
|
85
|
-
$fault: "client";
|
|
94
|
+
export declare class ThrottlingException extends __BaseException {
|
|
95
|
+
readonly name: "ThrottlingException";
|
|
96
|
+
readonly $fault: "client";
|
|
86
97
|
Message: string | undefined;
|
|
98
|
+
|
|
99
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
87
100
|
}
|
|
88
101
|
|
|
89
|
-
export
|
|
90
|
-
name: "ValidationException";
|
|
91
|
-
$fault: "client";
|
|
102
|
+
export declare class ValidationException extends __BaseException {
|
|
103
|
+
readonly name: "ValidationException";
|
|
104
|
+
readonly $fault: "client";
|
|
92
105
|
Message: string | undefined;
|
|
106
|
+
|
|
107
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
93
108
|
}
|
|
94
109
|
export declare enum S3EncryptionOption {
|
|
95
110
|
SSE_KMS = "SSE_KMS",
|
|
@@ -193,10 +208,12 @@ export declare namespace CreateTableResponse {
|
|
|
193
208
|
const filterSensitiveLog: (obj: CreateTableResponse) => any;
|
|
194
209
|
}
|
|
195
210
|
|
|
196
|
-
export
|
|
197
|
-
name: "ResourceNotFoundException";
|
|
198
|
-
$fault: "client";
|
|
211
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
212
|
+
readonly name: "ResourceNotFoundException";
|
|
213
|
+
readonly $fault: "client";
|
|
199
214
|
Message?: string;
|
|
215
|
+
|
|
216
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
200
217
|
}
|
|
201
218
|
export interface DeleteDatabaseRequest {
|
|
202
219
|
|
|
@@ -426,11 +443,13 @@ export declare namespace RejectedRecord {
|
|
|
426
443
|
const filterSensitiveLog: (obj: RejectedRecord) => any;
|
|
427
444
|
}
|
|
428
445
|
|
|
429
|
-
export
|
|
430
|
-
name: "RejectedRecordsException";
|
|
431
|
-
$fault: "client";
|
|
446
|
+
export declare class RejectedRecordsException extends __BaseException {
|
|
447
|
+
readonly name: "RejectedRecordsException";
|
|
448
|
+
readonly $fault: "client";
|
|
432
449
|
Message?: string;
|
|
433
450
|
RejectedRecords?: RejectedRecord[];
|
|
451
|
+
|
|
452
|
+
constructor(opts: __ExceptionOptionType<RejectedRecordsException, __BaseException>);
|
|
434
453
|
}
|
|
435
454
|
export interface TagResourceRequest {
|
|
436
455
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) =>
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) =>
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) =>
|
|
|
6
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
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-write",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Write Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-endpoint-discovery": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-endpoint-discovery": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
40
|
+
"@aws-sdk/types": "3.54.1",
|
|
41
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
44
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
44
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
52
52
|
"tslib": "^2.3.0"
|