@aws-sdk/client-timestream-write 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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/TimestreamWrite.d.ts +274 -80
- package/dist-types/ts3.4/TimestreamWriteClient.d.ts +228 -91
- package/dist-types/ts3.4/commands/CreateDatabaseCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDatabaseCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeDatabaseCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDatabaseCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/WriteRecordsCommand.d.ts +34 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +508 -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 +73 -41
- package/dist-types/ts3.4/runtimeConfig.d.ts +73 -41
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +74 -40
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +35 -35
|
@@ -1,465 +1,508 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { TimestreamWriteServiceException as __BaseException } from "./TimestreamWriteServiceException";
|
|
3
|
-
|
|
4
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
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
|
-
export interface Database {
|
|
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
|
-
export declare class InvalidEndpointException extends __BaseException {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
}
|
|
188
|
-
export interface DescribeDatabaseResponse {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
}
|
|
201
|
-
export interface
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
export interface
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
}
|
|
344
|
-
export interface
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
}
|
|
356
|
-
export interface
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
export
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
export
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { TimestreamWriteServiceException as __BaseException } from "./TimestreamWriteServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Message: string | undefined;
|
|
8
|
+
|
|
9
|
+
constructor(
|
|
10
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export declare class ConflictException extends __BaseException {
|
|
15
|
+
readonly name: "ConflictException";
|
|
16
|
+
readonly $fault: "client";
|
|
17
|
+
Message: string | undefined;
|
|
18
|
+
|
|
19
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface Tag {
|
|
23
|
+
Key: string | undefined;
|
|
24
|
+
|
|
25
|
+
Value: string | undefined;
|
|
26
|
+
}
|
|
27
|
+
export interface CreateDatabaseRequest {
|
|
28
|
+
DatabaseName: string | undefined;
|
|
29
|
+
|
|
30
|
+
KmsKeyId?: string;
|
|
31
|
+
|
|
32
|
+
Tags?: Tag[];
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface Database {
|
|
36
|
+
Arn?: string;
|
|
37
|
+
|
|
38
|
+
DatabaseName?: string;
|
|
39
|
+
|
|
40
|
+
TableCount?: number;
|
|
41
|
+
|
|
42
|
+
KmsKeyId?: string;
|
|
43
|
+
|
|
44
|
+
CreationTime?: Date;
|
|
45
|
+
|
|
46
|
+
LastUpdatedTime?: Date;
|
|
47
|
+
}
|
|
48
|
+
export interface CreateDatabaseResponse {
|
|
49
|
+
Database?: Database;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export declare class InternalServerException extends __BaseException {
|
|
53
|
+
readonly name: "InternalServerException";
|
|
54
|
+
readonly $fault: "server";
|
|
55
|
+
Message: string | undefined;
|
|
56
|
+
|
|
57
|
+
constructor(
|
|
58
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export declare class InvalidEndpointException extends __BaseException {
|
|
63
|
+
readonly name: "InvalidEndpointException";
|
|
64
|
+
readonly $fault: "client";
|
|
65
|
+
Message?: string;
|
|
66
|
+
|
|
67
|
+
constructor(
|
|
68
|
+
opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
73
|
+
readonly name: "ServiceQuotaExceededException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
Message?: string;
|
|
76
|
+
|
|
77
|
+
constructor(
|
|
78
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export declare class ThrottlingException extends __BaseException {
|
|
83
|
+
readonly name: "ThrottlingException";
|
|
84
|
+
readonly $fault: "client";
|
|
85
|
+
Message: string | undefined;
|
|
86
|
+
|
|
87
|
+
constructor(
|
|
88
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
89
|
+
);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export declare class ValidationException extends __BaseException {
|
|
93
|
+
readonly name: "ValidationException";
|
|
94
|
+
readonly $fault: "client";
|
|
95
|
+
Message: string | undefined;
|
|
96
|
+
|
|
97
|
+
constructor(
|
|
98
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
99
|
+
);
|
|
100
|
+
}
|
|
101
|
+
export declare enum S3EncryptionOption {
|
|
102
|
+
SSE_KMS = "SSE_KMS",
|
|
103
|
+
SSE_S3 = "SSE_S3",
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export interface S3Configuration {
|
|
107
|
+
BucketName?: string;
|
|
108
|
+
|
|
109
|
+
ObjectKeyPrefix?: string;
|
|
110
|
+
|
|
111
|
+
EncryptionOption?: S3EncryptionOption | string;
|
|
112
|
+
|
|
113
|
+
KmsKeyId?: string;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export interface MagneticStoreRejectedDataLocation {
|
|
117
|
+
S3Configuration?: S3Configuration;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export interface MagneticStoreWriteProperties {
|
|
121
|
+
EnableMagneticStoreWrites: boolean | undefined;
|
|
122
|
+
|
|
123
|
+
MagneticStoreRejectedDataLocation?: MagneticStoreRejectedDataLocation;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export interface RetentionProperties {
|
|
127
|
+
MemoryStoreRetentionPeriodInHours: number | undefined;
|
|
128
|
+
|
|
129
|
+
MagneticStoreRetentionPeriodInDays: number | undefined;
|
|
130
|
+
}
|
|
131
|
+
export interface CreateTableRequest {
|
|
132
|
+
DatabaseName: string | undefined;
|
|
133
|
+
|
|
134
|
+
TableName: string | undefined;
|
|
135
|
+
|
|
136
|
+
RetentionProperties?: RetentionProperties;
|
|
137
|
+
|
|
138
|
+
Tags?: Tag[];
|
|
139
|
+
|
|
140
|
+
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
141
|
+
}
|
|
142
|
+
export declare enum TableStatus {
|
|
143
|
+
ACTIVE = "ACTIVE",
|
|
144
|
+
DELETING = "DELETING",
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export interface Table {
|
|
148
|
+
Arn?: string;
|
|
149
|
+
|
|
150
|
+
TableName?: string;
|
|
151
|
+
|
|
152
|
+
DatabaseName?: string;
|
|
153
|
+
|
|
154
|
+
TableStatus?: TableStatus | string;
|
|
155
|
+
|
|
156
|
+
RetentionProperties?: RetentionProperties;
|
|
157
|
+
|
|
158
|
+
CreationTime?: Date;
|
|
159
|
+
|
|
160
|
+
LastUpdatedTime?: Date;
|
|
161
|
+
|
|
162
|
+
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
163
|
+
}
|
|
164
|
+
export interface CreateTableResponse {
|
|
165
|
+
Table?: Table;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
169
|
+
readonly name: "ResourceNotFoundException";
|
|
170
|
+
readonly $fault: "client";
|
|
171
|
+
Message?: string;
|
|
172
|
+
|
|
173
|
+
constructor(
|
|
174
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
175
|
+
);
|
|
176
|
+
}
|
|
177
|
+
export interface DeleteDatabaseRequest {
|
|
178
|
+
DatabaseName: string | undefined;
|
|
179
|
+
}
|
|
180
|
+
export interface DeleteTableRequest {
|
|
181
|
+
DatabaseName: string | undefined;
|
|
182
|
+
|
|
183
|
+
TableName: string | undefined;
|
|
184
|
+
}
|
|
185
|
+
export interface DescribeDatabaseRequest {
|
|
186
|
+
DatabaseName: string | undefined;
|
|
187
|
+
}
|
|
188
|
+
export interface DescribeDatabaseResponse {
|
|
189
|
+
Database?: Database;
|
|
190
|
+
}
|
|
191
|
+
export interface DescribeEndpointsRequest {}
|
|
192
|
+
|
|
193
|
+
export interface Endpoint {
|
|
194
|
+
Address: string | undefined;
|
|
195
|
+
|
|
196
|
+
CachePeriodInMinutes: number | undefined;
|
|
197
|
+
}
|
|
198
|
+
export interface DescribeEndpointsResponse {
|
|
199
|
+
Endpoints: Endpoint[] | undefined;
|
|
200
|
+
}
|
|
201
|
+
export interface DescribeTableRequest {
|
|
202
|
+
DatabaseName: string | undefined;
|
|
203
|
+
|
|
204
|
+
TableName: string | undefined;
|
|
205
|
+
}
|
|
206
|
+
export interface DescribeTableResponse {
|
|
207
|
+
Table?: Table;
|
|
208
|
+
}
|
|
209
|
+
export declare enum DimensionValueType {
|
|
210
|
+
VARCHAR = "VARCHAR",
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export interface Dimension {
|
|
214
|
+
Name: string | undefined;
|
|
215
|
+
|
|
216
|
+
Value: string | undefined;
|
|
217
|
+
|
|
218
|
+
DimensionValueType?: DimensionValueType | string;
|
|
219
|
+
}
|
|
220
|
+
export interface ListDatabasesRequest {
|
|
221
|
+
NextToken?: string;
|
|
222
|
+
|
|
223
|
+
MaxResults?: number;
|
|
224
|
+
}
|
|
225
|
+
export interface ListDatabasesResponse {
|
|
226
|
+
Databases?: Database[];
|
|
227
|
+
|
|
228
|
+
NextToken?: string;
|
|
229
|
+
}
|
|
230
|
+
export interface ListTablesRequest {
|
|
231
|
+
DatabaseName?: string;
|
|
232
|
+
|
|
233
|
+
NextToken?: string;
|
|
234
|
+
|
|
235
|
+
MaxResults?: number;
|
|
236
|
+
}
|
|
237
|
+
export interface ListTablesResponse {
|
|
238
|
+
Tables?: Table[];
|
|
239
|
+
|
|
240
|
+
NextToken?: string;
|
|
241
|
+
}
|
|
242
|
+
export interface ListTagsForResourceRequest {
|
|
243
|
+
ResourceARN: string | undefined;
|
|
244
|
+
}
|
|
245
|
+
export interface ListTagsForResourceResponse {
|
|
246
|
+
Tags?: Tag[];
|
|
247
|
+
}
|
|
248
|
+
export declare enum MeasureValueType {
|
|
249
|
+
BIGINT = "BIGINT",
|
|
250
|
+
BOOLEAN = "BOOLEAN",
|
|
251
|
+
DOUBLE = "DOUBLE",
|
|
252
|
+
MULTI = "MULTI",
|
|
253
|
+
TIMESTAMP = "TIMESTAMP",
|
|
254
|
+
VARCHAR = "VARCHAR",
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export interface MeasureValue {
|
|
258
|
+
Name: string | undefined;
|
|
259
|
+
|
|
260
|
+
Value: string | undefined;
|
|
261
|
+
|
|
262
|
+
Type: MeasureValueType | string | undefined;
|
|
263
|
+
}
|
|
264
|
+
export declare enum TimeUnit {
|
|
265
|
+
MICROSECONDS = "MICROSECONDS",
|
|
266
|
+
MILLISECONDS = "MILLISECONDS",
|
|
267
|
+
NANOSECONDS = "NANOSECONDS",
|
|
268
|
+
SECONDS = "SECONDS",
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
export interface _Record {
|
|
272
|
+
Dimensions?: Dimension[];
|
|
273
|
+
|
|
274
|
+
MeasureName?: string;
|
|
275
|
+
|
|
276
|
+
MeasureValue?: string;
|
|
277
|
+
|
|
278
|
+
MeasureValueType?: MeasureValueType | string;
|
|
279
|
+
|
|
280
|
+
Time?: string;
|
|
281
|
+
|
|
282
|
+
TimeUnit?: TimeUnit | string;
|
|
283
|
+
|
|
284
|
+
Version?: number;
|
|
285
|
+
|
|
286
|
+
MeasureValues?: MeasureValue[];
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
export interface RecordsIngested {
|
|
290
|
+
Total?: number;
|
|
291
|
+
|
|
292
|
+
MemoryStore?: number;
|
|
293
|
+
|
|
294
|
+
MagneticStore?: number;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
export interface RejectedRecord {
|
|
298
|
+
RecordIndex?: number;
|
|
299
|
+
|
|
300
|
+
Reason?: string;
|
|
301
|
+
|
|
302
|
+
ExistingVersion?: number;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export declare class RejectedRecordsException extends __BaseException {
|
|
306
|
+
readonly name: "RejectedRecordsException";
|
|
307
|
+
readonly $fault: "client";
|
|
308
|
+
Message?: string;
|
|
309
|
+
RejectedRecords?: RejectedRecord[];
|
|
310
|
+
|
|
311
|
+
constructor(
|
|
312
|
+
opts: __ExceptionOptionType<RejectedRecordsException, __BaseException>
|
|
313
|
+
);
|
|
314
|
+
}
|
|
315
|
+
export interface TagResourceRequest {
|
|
316
|
+
ResourceARN: string | undefined;
|
|
317
|
+
|
|
318
|
+
Tags: Tag[] | undefined;
|
|
319
|
+
}
|
|
320
|
+
export interface TagResourceResponse {}
|
|
321
|
+
export interface UntagResourceRequest {
|
|
322
|
+
ResourceARN: string | undefined;
|
|
323
|
+
|
|
324
|
+
TagKeys: string[] | undefined;
|
|
325
|
+
}
|
|
326
|
+
export interface UntagResourceResponse {}
|
|
327
|
+
export interface UpdateDatabaseRequest {
|
|
328
|
+
DatabaseName: string | undefined;
|
|
329
|
+
|
|
330
|
+
KmsKeyId: string | undefined;
|
|
331
|
+
}
|
|
332
|
+
export interface UpdateDatabaseResponse {
|
|
333
|
+
Database?: Database;
|
|
334
|
+
}
|
|
335
|
+
export interface UpdateTableRequest {
|
|
336
|
+
DatabaseName: string | undefined;
|
|
337
|
+
|
|
338
|
+
TableName: string | undefined;
|
|
339
|
+
|
|
340
|
+
RetentionProperties?: RetentionProperties;
|
|
341
|
+
|
|
342
|
+
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
343
|
+
}
|
|
344
|
+
export interface UpdateTableResponse {
|
|
345
|
+
Table?: Table;
|
|
346
|
+
}
|
|
347
|
+
export interface WriteRecordsRequest {
|
|
348
|
+
DatabaseName: string | undefined;
|
|
349
|
+
|
|
350
|
+
TableName: string | undefined;
|
|
351
|
+
|
|
352
|
+
CommonAttributes?: _Record;
|
|
353
|
+
|
|
354
|
+
Records: _Record[] | undefined;
|
|
355
|
+
}
|
|
356
|
+
export interface WriteRecordsResponse {
|
|
357
|
+
RecordsIngested?: RecordsIngested;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
361
|
+
|
|
362
|
+
export declare const CreateDatabaseRequestFilterSensitiveLog: (
|
|
363
|
+
obj: CreateDatabaseRequest
|
|
364
|
+
) => any;
|
|
365
|
+
|
|
366
|
+
export declare const DatabaseFilterSensitiveLog: (obj: Database) => any;
|
|
367
|
+
|
|
368
|
+
export declare const CreateDatabaseResponseFilterSensitiveLog: (
|
|
369
|
+
obj: CreateDatabaseResponse
|
|
370
|
+
) => any;
|
|
371
|
+
|
|
372
|
+
export declare const S3ConfigurationFilterSensitiveLog: (
|
|
373
|
+
obj: S3Configuration
|
|
374
|
+
) => any;
|
|
375
|
+
|
|
376
|
+
export declare const MagneticStoreRejectedDataLocationFilterSensitiveLog: (
|
|
377
|
+
obj: MagneticStoreRejectedDataLocation
|
|
378
|
+
) => any;
|
|
379
|
+
|
|
380
|
+
export declare const MagneticStoreWritePropertiesFilterSensitiveLog: (
|
|
381
|
+
obj: MagneticStoreWriteProperties
|
|
382
|
+
) => any;
|
|
383
|
+
|
|
384
|
+
export declare const RetentionPropertiesFilterSensitiveLog: (
|
|
385
|
+
obj: RetentionProperties
|
|
386
|
+
) => any;
|
|
387
|
+
|
|
388
|
+
export declare const CreateTableRequestFilterSensitiveLog: (
|
|
389
|
+
obj: CreateTableRequest
|
|
390
|
+
) => any;
|
|
391
|
+
|
|
392
|
+
export declare const TableFilterSensitiveLog: (obj: Table) => any;
|
|
393
|
+
|
|
394
|
+
export declare const CreateTableResponseFilterSensitiveLog: (
|
|
395
|
+
obj: CreateTableResponse
|
|
396
|
+
) => any;
|
|
397
|
+
|
|
398
|
+
export declare const DeleteDatabaseRequestFilterSensitiveLog: (
|
|
399
|
+
obj: DeleteDatabaseRequest
|
|
400
|
+
) => any;
|
|
401
|
+
|
|
402
|
+
export declare const DeleteTableRequestFilterSensitiveLog: (
|
|
403
|
+
obj: DeleteTableRequest
|
|
404
|
+
) => any;
|
|
405
|
+
|
|
406
|
+
export declare const DescribeDatabaseRequestFilterSensitiveLog: (
|
|
407
|
+
obj: DescribeDatabaseRequest
|
|
408
|
+
) => any;
|
|
409
|
+
|
|
410
|
+
export declare const DescribeDatabaseResponseFilterSensitiveLog: (
|
|
411
|
+
obj: DescribeDatabaseResponse
|
|
412
|
+
) => any;
|
|
413
|
+
|
|
414
|
+
export declare const DescribeEndpointsRequestFilterSensitiveLog: (
|
|
415
|
+
obj: DescribeEndpointsRequest
|
|
416
|
+
) => any;
|
|
417
|
+
|
|
418
|
+
export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
419
|
+
|
|
420
|
+
export declare const DescribeEndpointsResponseFilterSensitiveLog: (
|
|
421
|
+
obj: DescribeEndpointsResponse
|
|
422
|
+
) => any;
|
|
423
|
+
|
|
424
|
+
export declare const DescribeTableRequestFilterSensitiveLog: (
|
|
425
|
+
obj: DescribeTableRequest
|
|
426
|
+
) => any;
|
|
427
|
+
|
|
428
|
+
export declare const DescribeTableResponseFilterSensitiveLog: (
|
|
429
|
+
obj: DescribeTableResponse
|
|
430
|
+
) => any;
|
|
431
|
+
|
|
432
|
+
export declare const DimensionFilterSensitiveLog: (obj: Dimension) => any;
|
|
433
|
+
|
|
434
|
+
export declare const ListDatabasesRequestFilterSensitiveLog: (
|
|
435
|
+
obj: ListDatabasesRequest
|
|
436
|
+
) => any;
|
|
437
|
+
|
|
438
|
+
export declare const ListDatabasesResponseFilterSensitiveLog: (
|
|
439
|
+
obj: ListDatabasesResponse
|
|
440
|
+
) => any;
|
|
441
|
+
|
|
442
|
+
export declare const ListTablesRequestFilterSensitiveLog: (
|
|
443
|
+
obj: ListTablesRequest
|
|
444
|
+
) => any;
|
|
445
|
+
|
|
446
|
+
export declare const ListTablesResponseFilterSensitiveLog: (
|
|
447
|
+
obj: ListTablesResponse
|
|
448
|
+
) => any;
|
|
449
|
+
|
|
450
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
451
|
+
obj: ListTagsForResourceRequest
|
|
452
|
+
) => any;
|
|
453
|
+
|
|
454
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
455
|
+
obj: ListTagsForResourceResponse
|
|
456
|
+
) => any;
|
|
457
|
+
|
|
458
|
+
export declare const MeasureValueFilterSensitiveLog: (obj: MeasureValue) => any;
|
|
459
|
+
|
|
460
|
+
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
461
|
+
|
|
462
|
+
export declare const RecordsIngestedFilterSensitiveLog: (
|
|
463
|
+
obj: RecordsIngested
|
|
464
|
+
) => any;
|
|
465
|
+
|
|
466
|
+
export declare const RejectedRecordFilterSensitiveLog: (
|
|
467
|
+
obj: RejectedRecord
|
|
468
|
+
) => any;
|
|
469
|
+
|
|
470
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
471
|
+
obj: TagResourceRequest
|
|
472
|
+
) => any;
|
|
473
|
+
|
|
474
|
+
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
475
|
+
obj: TagResourceResponse
|
|
476
|
+
) => any;
|
|
477
|
+
|
|
478
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
479
|
+
obj: UntagResourceRequest
|
|
480
|
+
) => any;
|
|
481
|
+
|
|
482
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
483
|
+
obj: UntagResourceResponse
|
|
484
|
+
) => any;
|
|
485
|
+
|
|
486
|
+
export declare const UpdateDatabaseRequestFilterSensitiveLog: (
|
|
487
|
+
obj: UpdateDatabaseRequest
|
|
488
|
+
) => any;
|
|
489
|
+
|
|
490
|
+
export declare const UpdateDatabaseResponseFilterSensitiveLog: (
|
|
491
|
+
obj: UpdateDatabaseResponse
|
|
492
|
+
) => any;
|
|
493
|
+
|
|
494
|
+
export declare const UpdateTableRequestFilterSensitiveLog: (
|
|
495
|
+
obj: UpdateTableRequest
|
|
496
|
+
) => any;
|
|
497
|
+
|
|
498
|
+
export declare const UpdateTableResponseFilterSensitiveLog: (
|
|
499
|
+
obj: UpdateTableResponse
|
|
500
|
+
) => any;
|
|
501
|
+
|
|
502
|
+
export declare const WriteRecordsRequestFilterSensitiveLog: (
|
|
503
|
+
obj: WriteRecordsRequest
|
|
504
|
+
) => any;
|
|
505
|
+
|
|
506
|
+
export declare const WriteRecordsResponseFilterSensitiveLog: (
|
|
507
|
+
obj: WriteRecordsResponse
|
|
508
|
+
) => any;
|