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