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