@aws-sdk/client-timestream-write 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateDatabaseCommand.js +2 -2
- package/dist-cjs/commands/CreateTableCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatabaseCommand.js +1 -1
- package/dist-cjs/commands/DeleteTableCommand.js +1 -1
- package/dist-cjs/commands/DescribeDatabaseCommand.js +2 -2
- package/dist-cjs/commands/DescribeEndpointsCommand.js +2 -2
- package/dist-cjs/commands/DescribeTableCommand.js +2 -2
- package/dist-cjs/commands/ListDatabasesCommand.js +2 -2
- package/dist-cjs/commands/ListTablesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateDatabaseCommand.js +2 -2
- package/dist-cjs/commands/UpdateTableCommand.js +2 -2
- package/dist-cjs/commands/WriteRecordsCommand.js +2 -2
- package/dist-cjs/models/models_0.js +166 -248
- package/dist-cjs/protocols/Aws_json1_0.js +75 -135
- package/dist-es/commands/CreateDatabaseCommand.js +3 -3
- package/dist-es/commands/CreateTableCommand.js +3 -3
- package/dist-es/commands/DeleteDatabaseCommand.js +2 -2
- package/dist-es/commands/DeleteTableCommand.js +2 -2
- package/dist-es/commands/DescribeDatabaseCommand.js +3 -3
- package/dist-es/commands/DescribeEndpointsCommand.js +3 -3
- package/dist-es/commands/DescribeTableCommand.js +3 -3
- package/dist-es/commands/ListDatabasesCommand.js +3 -3
- package/dist-es/commands/ListTablesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateDatabaseCommand.js +3 -3
- package/dist-es/commands/UpdateTableCommand.js +3 -3
- package/dist-es/commands/WriteRecordsCommand.js +3 -3
- package/dist-es/models/models_0.js +41 -164
- package/dist-es/protocols/Aws_json1_0.js +121 -136
- package/dist-types/models/models_0.d.ts +164 -246
- package/dist-types/ts3.4/models/models_0.d.ts +82 -164
- package/package.json +6 -6
|
@@ -45,12 +45,6 @@ export interface Tag {
|
|
|
45
45
|
*/
|
|
46
46
|
Value: string | undefined;
|
|
47
47
|
}
|
|
48
|
-
export declare namespace Tag {
|
|
49
|
-
/**
|
|
50
|
-
* @internal
|
|
51
|
-
*/
|
|
52
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
53
|
-
}
|
|
54
48
|
export interface CreateDatabaseRequest {
|
|
55
49
|
/**
|
|
56
50
|
* <p>The name of the Timestream database.</p>
|
|
@@ -70,12 +64,6 @@ export interface CreateDatabaseRequest {
|
|
|
70
64
|
*/
|
|
71
65
|
Tags?: Tag[];
|
|
72
66
|
}
|
|
73
|
-
export declare namespace CreateDatabaseRequest {
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
const filterSensitiveLog: (obj: CreateDatabaseRequest) => any;
|
|
78
|
-
}
|
|
79
67
|
/**
|
|
80
68
|
* <p>A top level container for a table. Databases and tables are the
|
|
81
69
|
* fundamental management concepts in Amazon Timestream. All tables in a
|
|
@@ -109,24 +97,12 @@ export interface Database {
|
|
|
109
97
|
*/
|
|
110
98
|
LastUpdatedTime?: Date;
|
|
111
99
|
}
|
|
112
|
-
export declare namespace Database {
|
|
113
|
-
/**
|
|
114
|
-
* @internal
|
|
115
|
-
*/
|
|
116
|
-
const filterSensitiveLog: (obj: Database) => any;
|
|
117
|
-
}
|
|
118
100
|
export interface CreateDatabaseResponse {
|
|
119
101
|
/**
|
|
120
102
|
* <p>The newly created Timestream database.</p>
|
|
121
103
|
*/
|
|
122
104
|
Database?: Database;
|
|
123
105
|
}
|
|
124
|
-
export declare namespace CreateDatabaseResponse {
|
|
125
|
-
/**
|
|
126
|
-
* @internal
|
|
127
|
-
*/
|
|
128
|
-
const filterSensitiveLog: (obj: CreateDatabaseResponse) => any;
|
|
129
|
-
}
|
|
130
106
|
/**
|
|
131
107
|
* <p> Timestream was unable to fully process this request because of an internal server error.</p>
|
|
132
108
|
*/
|
|
@@ -212,12 +188,6 @@ export interface S3Configuration {
|
|
|
212
188
|
*/
|
|
213
189
|
KmsKeyId?: string;
|
|
214
190
|
}
|
|
215
|
-
export declare namespace S3Configuration {
|
|
216
|
-
/**
|
|
217
|
-
* @internal
|
|
218
|
-
*/
|
|
219
|
-
const filterSensitiveLog: (obj: S3Configuration) => any;
|
|
220
|
-
}
|
|
221
191
|
/**
|
|
222
192
|
* <p>The location to write error reports for records rejected, asynchronously, during magnetic store writes.</p>
|
|
223
193
|
*/
|
|
@@ -227,12 +197,6 @@ export interface MagneticStoreRejectedDataLocation {
|
|
|
227
197
|
*/
|
|
228
198
|
S3Configuration?: S3Configuration;
|
|
229
199
|
}
|
|
230
|
-
export declare namespace MagneticStoreRejectedDataLocation {
|
|
231
|
-
/**
|
|
232
|
-
* @internal
|
|
233
|
-
*/
|
|
234
|
-
const filterSensitiveLog: (obj: MagneticStoreRejectedDataLocation) => any;
|
|
235
|
-
}
|
|
236
200
|
/**
|
|
237
201
|
* <p>The set of properties on a table for configuring magnetic store writes.</p>
|
|
238
202
|
*/
|
|
@@ -246,12 +210,6 @@ export interface MagneticStoreWriteProperties {
|
|
|
246
210
|
*/
|
|
247
211
|
MagneticStoreRejectedDataLocation?: MagneticStoreRejectedDataLocation;
|
|
248
212
|
}
|
|
249
|
-
export declare namespace MagneticStoreWriteProperties {
|
|
250
|
-
/**
|
|
251
|
-
* @internal
|
|
252
|
-
*/
|
|
253
|
-
const filterSensitiveLog: (obj: MagneticStoreWriteProperties) => any;
|
|
254
|
-
}
|
|
255
213
|
/**
|
|
256
214
|
* <p>Retention properties contain the duration for which your time series data must be stored in the magnetic store and the memory store.
|
|
257
215
|
* </p>
|
|
@@ -266,12 +224,6 @@ export interface RetentionProperties {
|
|
|
266
224
|
*/
|
|
267
225
|
MagneticStoreRetentionPeriodInDays: number | undefined;
|
|
268
226
|
}
|
|
269
|
-
export declare namespace RetentionProperties {
|
|
270
|
-
/**
|
|
271
|
-
* @internal
|
|
272
|
-
*/
|
|
273
|
-
const filterSensitiveLog: (obj: RetentionProperties) => any;
|
|
274
|
-
}
|
|
275
227
|
export interface CreateTableRequest {
|
|
276
228
|
/**
|
|
277
229
|
* <p>The name of the Timestream database.</p>
|
|
@@ -296,12 +248,6 @@ export interface CreateTableRequest {
|
|
|
296
248
|
*/
|
|
297
249
|
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
298
250
|
}
|
|
299
|
-
export declare namespace CreateTableRequest {
|
|
300
|
-
/**
|
|
301
|
-
* @internal
|
|
302
|
-
*/
|
|
303
|
-
const filterSensitiveLog: (obj: CreateTableRequest) => any;
|
|
304
|
-
}
|
|
305
251
|
export declare enum TableStatus {
|
|
306
252
|
ACTIVE = "ACTIVE",
|
|
307
253
|
DELETING = "DELETING"
|
|
@@ -354,24 +300,12 @@ export interface Table {
|
|
|
354
300
|
*/
|
|
355
301
|
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
356
302
|
}
|
|
357
|
-
export declare namespace Table {
|
|
358
|
-
/**
|
|
359
|
-
* @internal
|
|
360
|
-
*/
|
|
361
|
-
const filterSensitiveLog: (obj: Table) => any;
|
|
362
|
-
}
|
|
363
303
|
export interface CreateTableResponse {
|
|
364
304
|
/**
|
|
365
305
|
* <p>The newly created Timestream table.</p>
|
|
366
306
|
*/
|
|
367
307
|
Table?: Table;
|
|
368
308
|
}
|
|
369
|
-
export declare namespace CreateTableResponse {
|
|
370
|
-
/**
|
|
371
|
-
* @internal
|
|
372
|
-
*/
|
|
373
|
-
const filterSensitiveLog: (obj: CreateTableResponse) => any;
|
|
374
|
-
}
|
|
375
309
|
/**
|
|
376
310
|
* <p>The operation tried to access a nonexistent resource. The resource might not be specified correctly, or its status might not be ACTIVE.</p>
|
|
377
311
|
*/
|
|
@@ -390,12 +324,6 @@ export interface DeleteDatabaseRequest {
|
|
|
390
324
|
*/
|
|
391
325
|
DatabaseName: string | undefined;
|
|
392
326
|
}
|
|
393
|
-
export declare namespace DeleteDatabaseRequest {
|
|
394
|
-
/**
|
|
395
|
-
* @internal
|
|
396
|
-
*/
|
|
397
|
-
const filterSensitiveLog: (obj: DeleteDatabaseRequest) => any;
|
|
398
|
-
}
|
|
399
327
|
export interface DeleteTableRequest {
|
|
400
328
|
/**
|
|
401
329
|
* <p>The name of the database where the Timestream database is to be deleted.</p>
|
|
@@ -406,44 +334,20 @@ export interface DeleteTableRequest {
|
|
|
406
334
|
*/
|
|
407
335
|
TableName: string | undefined;
|
|
408
336
|
}
|
|
409
|
-
export declare namespace DeleteTableRequest {
|
|
410
|
-
/**
|
|
411
|
-
* @internal
|
|
412
|
-
*/
|
|
413
|
-
const filterSensitiveLog: (obj: DeleteTableRequest) => any;
|
|
414
|
-
}
|
|
415
337
|
export interface DescribeDatabaseRequest {
|
|
416
338
|
/**
|
|
417
339
|
* <p>The name of the Timestream database.</p>
|
|
418
340
|
*/
|
|
419
341
|
DatabaseName: string | undefined;
|
|
420
342
|
}
|
|
421
|
-
export declare namespace DescribeDatabaseRequest {
|
|
422
|
-
/**
|
|
423
|
-
* @internal
|
|
424
|
-
*/
|
|
425
|
-
const filterSensitiveLog: (obj: DescribeDatabaseRequest) => any;
|
|
426
|
-
}
|
|
427
343
|
export interface DescribeDatabaseResponse {
|
|
428
344
|
/**
|
|
429
345
|
* <p>The name of the Timestream table.</p>
|
|
430
346
|
*/
|
|
431
347
|
Database?: Database;
|
|
432
348
|
}
|
|
433
|
-
export declare namespace DescribeDatabaseResponse {
|
|
434
|
-
/**
|
|
435
|
-
* @internal
|
|
436
|
-
*/
|
|
437
|
-
const filterSensitiveLog: (obj: DescribeDatabaseResponse) => any;
|
|
438
|
-
}
|
|
439
349
|
export interface DescribeEndpointsRequest {
|
|
440
350
|
}
|
|
441
|
-
export declare namespace DescribeEndpointsRequest {
|
|
442
|
-
/**
|
|
443
|
-
* @internal
|
|
444
|
-
*/
|
|
445
|
-
const filterSensitiveLog: (obj: DescribeEndpointsRequest) => any;
|
|
446
|
-
}
|
|
447
351
|
/**
|
|
448
352
|
* <p>Represents an available endpoint against which to make API calls agaisnt, as well as the TTL for that endpoint.</p>
|
|
449
353
|
*/
|
|
@@ -457,24 +361,12 @@ export interface Endpoint {
|
|
|
457
361
|
*/
|
|
458
362
|
CachePeriodInMinutes: number | undefined;
|
|
459
363
|
}
|
|
460
|
-
export declare namespace Endpoint {
|
|
461
|
-
/**
|
|
462
|
-
* @internal
|
|
463
|
-
*/
|
|
464
|
-
const filterSensitiveLog: (obj: Endpoint) => any;
|
|
465
|
-
}
|
|
466
364
|
export interface DescribeEndpointsResponse {
|
|
467
365
|
/**
|
|
468
366
|
* <p>An <code>Endpoints</code> object is returned when a <code>DescribeEndpoints</code> request is made.</p>
|
|
469
367
|
*/
|
|
470
368
|
Endpoints: Endpoint[] | undefined;
|
|
471
369
|
}
|
|
472
|
-
export declare namespace DescribeEndpointsResponse {
|
|
473
|
-
/**
|
|
474
|
-
* @internal
|
|
475
|
-
*/
|
|
476
|
-
const filterSensitiveLog: (obj: DescribeEndpointsResponse) => any;
|
|
477
|
-
}
|
|
478
370
|
export interface DescribeTableRequest {
|
|
479
371
|
/**
|
|
480
372
|
* <p>The name of the Timestream database.</p>
|
|
@@ -485,24 +377,12 @@ export interface DescribeTableRequest {
|
|
|
485
377
|
*/
|
|
486
378
|
TableName: string | undefined;
|
|
487
379
|
}
|
|
488
|
-
export declare namespace DescribeTableRequest {
|
|
489
|
-
/**
|
|
490
|
-
* @internal
|
|
491
|
-
*/
|
|
492
|
-
const filterSensitiveLog: (obj: DescribeTableRequest) => any;
|
|
493
|
-
}
|
|
494
380
|
export interface DescribeTableResponse {
|
|
495
381
|
/**
|
|
496
382
|
* <p>The Timestream table.</p>
|
|
497
383
|
*/
|
|
498
384
|
Table?: Table;
|
|
499
385
|
}
|
|
500
|
-
export declare namespace DescribeTableResponse {
|
|
501
|
-
/**
|
|
502
|
-
* @internal
|
|
503
|
-
*/
|
|
504
|
-
const filterSensitiveLog: (obj: DescribeTableResponse) => any;
|
|
505
|
-
}
|
|
506
386
|
export declare enum DimensionValueType {
|
|
507
387
|
VARCHAR = "VARCHAR"
|
|
508
388
|
}
|
|
@@ -530,12 +410,6 @@ export interface Dimension {
|
|
|
530
410
|
*/
|
|
531
411
|
DimensionValueType?: DimensionValueType | string;
|
|
532
412
|
}
|
|
533
|
-
export declare namespace Dimension {
|
|
534
|
-
/**
|
|
535
|
-
* @internal
|
|
536
|
-
*/
|
|
537
|
-
const filterSensitiveLog: (obj: Dimension) => any;
|
|
538
|
-
}
|
|
539
413
|
export interface ListDatabasesRequest {
|
|
540
414
|
/**
|
|
541
415
|
* <p>The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
|
|
@@ -546,12 +420,6 @@ export interface ListDatabasesRequest {
|
|
|
546
420
|
*/
|
|
547
421
|
MaxResults?: number;
|
|
548
422
|
}
|
|
549
|
-
export declare namespace ListDatabasesRequest {
|
|
550
|
-
/**
|
|
551
|
-
* @internal
|
|
552
|
-
*/
|
|
553
|
-
const filterSensitiveLog: (obj: ListDatabasesRequest) => any;
|
|
554
|
-
}
|
|
555
423
|
export interface ListDatabasesResponse {
|
|
556
424
|
/**
|
|
557
425
|
* <p>A list of database names.</p>
|
|
@@ -562,12 +430,6 @@ export interface ListDatabasesResponse {
|
|
|
562
430
|
*/
|
|
563
431
|
NextToken?: string;
|
|
564
432
|
}
|
|
565
|
-
export declare namespace ListDatabasesResponse {
|
|
566
|
-
/**
|
|
567
|
-
* @internal
|
|
568
|
-
*/
|
|
569
|
-
const filterSensitiveLog: (obj: ListDatabasesResponse) => any;
|
|
570
|
-
}
|
|
571
433
|
export interface ListTablesRequest {
|
|
572
434
|
/**
|
|
573
435
|
* <p>The name of the Timestream database.</p>
|
|
@@ -582,12 +444,6 @@ export interface ListTablesRequest {
|
|
|
582
444
|
*/
|
|
583
445
|
MaxResults?: number;
|
|
584
446
|
}
|
|
585
|
-
export declare namespace ListTablesRequest {
|
|
586
|
-
/**
|
|
587
|
-
* @internal
|
|
588
|
-
*/
|
|
589
|
-
const filterSensitiveLog: (obj: ListTablesRequest) => any;
|
|
590
|
-
}
|
|
591
447
|
export interface ListTablesResponse {
|
|
592
448
|
/**
|
|
593
449
|
* <p>A list of tables.</p>
|
|
@@ -598,12 +454,6 @@ export interface ListTablesResponse {
|
|
|
598
454
|
*/
|
|
599
455
|
NextToken?: string;
|
|
600
456
|
}
|
|
601
|
-
export declare namespace ListTablesResponse {
|
|
602
|
-
/**
|
|
603
|
-
* @internal
|
|
604
|
-
*/
|
|
605
|
-
const filterSensitiveLog: (obj: ListTablesResponse) => any;
|
|
606
|
-
}
|
|
607
457
|
export interface ListTagsForResourceRequest {
|
|
608
458
|
/**
|
|
609
459
|
* <p>
|
|
@@ -612,12 +462,6 @@ export interface ListTagsForResourceRequest {
|
|
|
612
462
|
*/
|
|
613
463
|
ResourceARN: string | undefined;
|
|
614
464
|
}
|
|
615
|
-
export declare namespace ListTagsForResourceRequest {
|
|
616
|
-
/**
|
|
617
|
-
* @internal
|
|
618
|
-
*/
|
|
619
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
620
|
-
}
|
|
621
465
|
export interface ListTagsForResourceResponse {
|
|
622
466
|
/**
|
|
623
467
|
* <p>
|
|
@@ -626,12 +470,6 @@ export interface ListTagsForResourceResponse {
|
|
|
626
470
|
*/
|
|
627
471
|
Tags?: Tag[];
|
|
628
472
|
}
|
|
629
|
-
export declare namespace ListTagsForResourceResponse {
|
|
630
|
-
/**
|
|
631
|
-
* @internal
|
|
632
|
-
*/
|
|
633
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
634
|
-
}
|
|
635
473
|
export declare enum MeasureValueType {
|
|
636
474
|
BIGINT = "BIGINT",
|
|
637
475
|
BOOLEAN = "BOOLEAN",
|
|
@@ -660,12 +498,6 @@ export interface MeasureValue {
|
|
|
660
498
|
*/
|
|
661
499
|
Type: MeasureValueType | string | undefined;
|
|
662
500
|
}
|
|
663
|
-
export declare namespace MeasureValue {
|
|
664
|
-
/**
|
|
665
|
-
* @internal
|
|
666
|
-
*/
|
|
667
|
-
const filterSensitiveLog: (obj: MeasureValue) => any;
|
|
668
|
-
}
|
|
669
501
|
export declare enum TimeUnit {
|
|
670
502
|
MICROSECONDS = "MICROSECONDS",
|
|
671
503
|
MILLISECONDS = "MILLISECONDS",
|
|
@@ -746,12 +578,6 @@ export interface _Record {
|
|
|
746
578
|
*/
|
|
747
579
|
MeasureValues?: MeasureValue[];
|
|
748
580
|
}
|
|
749
|
-
export declare namespace _Record {
|
|
750
|
-
/**
|
|
751
|
-
* @internal
|
|
752
|
-
*/
|
|
753
|
-
const filterSensitiveLog: (obj: _Record) => any;
|
|
754
|
-
}
|
|
755
581
|
/**
|
|
756
582
|
* <p>Information on the records ingested by this request.</p>
|
|
757
583
|
*/
|
|
@@ -769,12 +595,6 @@ export interface RecordsIngested {
|
|
|
769
595
|
*/
|
|
770
596
|
MagneticStore?: number;
|
|
771
597
|
}
|
|
772
|
-
export declare namespace RecordsIngested {
|
|
773
|
-
/**
|
|
774
|
-
* @internal
|
|
775
|
-
*/
|
|
776
|
-
const filterSensitiveLog: (obj: RecordsIngested) => any;
|
|
777
|
-
}
|
|
778
598
|
/**
|
|
779
599
|
* <p>
|
|
780
600
|
* Records that were not successfully inserted into Timestream due to data validation issues
|
|
@@ -845,12 +665,6 @@ export interface RejectedRecord {
|
|
|
845
665
|
*/
|
|
846
666
|
ExistingVersion?: number;
|
|
847
667
|
}
|
|
848
|
-
export declare namespace RejectedRecord {
|
|
849
|
-
/**
|
|
850
|
-
* @internal
|
|
851
|
-
*/
|
|
852
|
-
const filterSensitiveLog: (obj: RejectedRecord) => any;
|
|
853
|
-
}
|
|
854
668
|
/**
|
|
855
669
|
* <p>
|
|
856
670
|
* WriteRecords would throw this exception in the following cases:
|
|
@@ -914,20 +728,8 @@ export interface TagResourceRequest {
|
|
|
914
728
|
*/
|
|
915
729
|
Tags: Tag[] | undefined;
|
|
916
730
|
}
|
|
917
|
-
export declare namespace TagResourceRequest {
|
|
918
|
-
/**
|
|
919
|
-
* @internal
|
|
920
|
-
*/
|
|
921
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
922
|
-
}
|
|
923
731
|
export interface TagResourceResponse {
|
|
924
732
|
}
|
|
925
|
-
export declare namespace TagResourceResponse {
|
|
926
|
-
/**
|
|
927
|
-
* @internal
|
|
928
|
-
*/
|
|
929
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
930
|
-
}
|
|
931
733
|
export interface UntagResourceRequest {
|
|
932
734
|
/**
|
|
933
735
|
* <p>
|
|
@@ -944,20 +746,8 @@ export interface UntagResourceRequest {
|
|
|
944
746
|
*/
|
|
945
747
|
TagKeys: string[] | undefined;
|
|
946
748
|
}
|
|
947
|
-
export declare namespace UntagResourceRequest {
|
|
948
|
-
/**
|
|
949
|
-
* @internal
|
|
950
|
-
*/
|
|
951
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
952
|
-
}
|
|
953
749
|
export interface UntagResourceResponse {
|
|
954
750
|
}
|
|
955
|
-
export declare namespace UntagResourceResponse {
|
|
956
|
-
/**
|
|
957
|
-
* @internal
|
|
958
|
-
*/
|
|
959
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
960
|
-
}
|
|
961
751
|
export interface UpdateDatabaseRequest {
|
|
962
752
|
/**
|
|
963
753
|
* <p>
|
|
@@ -993,12 +783,6 @@ export interface UpdateDatabaseRequest {
|
|
|
993
783
|
*/
|
|
994
784
|
KmsKeyId: string | undefined;
|
|
995
785
|
}
|
|
996
|
-
export declare namespace UpdateDatabaseRequest {
|
|
997
|
-
/**
|
|
998
|
-
* @internal
|
|
999
|
-
*/
|
|
1000
|
-
const filterSensitiveLog: (obj: UpdateDatabaseRequest) => any;
|
|
1001
|
-
}
|
|
1002
786
|
export interface UpdateDatabaseResponse {
|
|
1003
787
|
/**
|
|
1004
788
|
* <p>A top level container for a table. Databases and tables are the
|
|
@@ -1007,12 +791,6 @@ export interface UpdateDatabaseResponse {
|
|
|
1007
791
|
*/
|
|
1008
792
|
Database?: Database;
|
|
1009
793
|
}
|
|
1010
|
-
export declare namespace UpdateDatabaseResponse {
|
|
1011
|
-
/**
|
|
1012
|
-
* @internal
|
|
1013
|
-
*/
|
|
1014
|
-
const filterSensitiveLog: (obj: UpdateDatabaseResponse) => any;
|
|
1015
|
-
}
|
|
1016
794
|
export interface UpdateTableRequest {
|
|
1017
795
|
/**
|
|
1018
796
|
* <p>The name of the Timestream database.</p>
|
|
@@ -1031,24 +809,12 @@ export interface UpdateTableRequest {
|
|
|
1031
809
|
*/
|
|
1032
810
|
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
1033
811
|
}
|
|
1034
|
-
export declare namespace UpdateTableRequest {
|
|
1035
|
-
/**
|
|
1036
|
-
* @internal
|
|
1037
|
-
*/
|
|
1038
|
-
const filterSensitiveLog: (obj: UpdateTableRequest) => any;
|
|
1039
|
-
}
|
|
1040
812
|
export interface UpdateTableResponse {
|
|
1041
813
|
/**
|
|
1042
814
|
* <p>The updated Timestream table.</p>
|
|
1043
815
|
*/
|
|
1044
816
|
Table?: Table;
|
|
1045
817
|
}
|
|
1046
|
-
export declare namespace UpdateTableResponse {
|
|
1047
|
-
/**
|
|
1048
|
-
* @internal
|
|
1049
|
-
*/
|
|
1050
|
-
const filterSensitiveLog: (obj: UpdateTableResponse) => any;
|
|
1051
|
-
}
|
|
1052
818
|
export interface WriteRecordsRequest {
|
|
1053
819
|
/**
|
|
1054
820
|
* <p>The name of the Timestream database.</p>
|
|
@@ -1077,21 +843,173 @@ export interface WriteRecordsRequest {
|
|
|
1077
843
|
*/
|
|
1078
844
|
Records: _Record[] | undefined;
|
|
1079
845
|
}
|
|
1080
|
-
export declare namespace WriteRecordsRequest {
|
|
1081
|
-
/**
|
|
1082
|
-
* @internal
|
|
1083
|
-
*/
|
|
1084
|
-
const filterSensitiveLog: (obj: WriteRecordsRequest) => any;
|
|
1085
|
-
}
|
|
1086
846
|
export interface WriteRecordsResponse {
|
|
1087
847
|
/**
|
|
1088
848
|
* <p>Information on the records ingested by this request.</p>
|
|
1089
849
|
*/
|
|
1090
850
|
RecordsIngested?: RecordsIngested;
|
|
1091
851
|
}
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
852
|
+
/**
|
|
853
|
+
* @internal
|
|
854
|
+
*/
|
|
855
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
856
|
+
/**
|
|
857
|
+
* @internal
|
|
858
|
+
*/
|
|
859
|
+
export declare const CreateDatabaseRequestFilterSensitiveLog: (obj: CreateDatabaseRequest) => any;
|
|
860
|
+
/**
|
|
861
|
+
* @internal
|
|
862
|
+
*/
|
|
863
|
+
export declare const DatabaseFilterSensitiveLog: (obj: Database) => any;
|
|
864
|
+
/**
|
|
865
|
+
* @internal
|
|
866
|
+
*/
|
|
867
|
+
export declare const CreateDatabaseResponseFilterSensitiveLog: (obj: CreateDatabaseResponse) => any;
|
|
868
|
+
/**
|
|
869
|
+
* @internal
|
|
870
|
+
*/
|
|
871
|
+
export declare const S3ConfigurationFilterSensitiveLog: (obj: S3Configuration) => any;
|
|
872
|
+
/**
|
|
873
|
+
* @internal
|
|
874
|
+
*/
|
|
875
|
+
export declare const MagneticStoreRejectedDataLocationFilterSensitiveLog: (obj: MagneticStoreRejectedDataLocation) => any;
|
|
876
|
+
/**
|
|
877
|
+
* @internal
|
|
878
|
+
*/
|
|
879
|
+
export declare const MagneticStoreWritePropertiesFilterSensitiveLog: (obj: MagneticStoreWriteProperties) => any;
|
|
880
|
+
/**
|
|
881
|
+
* @internal
|
|
882
|
+
*/
|
|
883
|
+
export declare const RetentionPropertiesFilterSensitiveLog: (obj: RetentionProperties) => any;
|
|
884
|
+
/**
|
|
885
|
+
* @internal
|
|
886
|
+
*/
|
|
887
|
+
export declare const CreateTableRequestFilterSensitiveLog: (obj: CreateTableRequest) => any;
|
|
888
|
+
/**
|
|
889
|
+
* @internal
|
|
890
|
+
*/
|
|
891
|
+
export declare const TableFilterSensitiveLog: (obj: Table) => any;
|
|
892
|
+
/**
|
|
893
|
+
* @internal
|
|
894
|
+
*/
|
|
895
|
+
export declare const CreateTableResponseFilterSensitiveLog: (obj: CreateTableResponse) => any;
|
|
896
|
+
/**
|
|
897
|
+
* @internal
|
|
898
|
+
*/
|
|
899
|
+
export declare const DeleteDatabaseRequestFilterSensitiveLog: (obj: DeleteDatabaseRequest) => any;
|
|
900
|
+
/**
|
|
901
|
+
* @internal
|
|
902
|
+
*/
|
|
903
|
+
export declare const DeleteTableRequestFilterSensitiveLog: (obj: DeleteTableRequest) => any;
|
|
904
|
+
/**
|
|
905
|
+
* @internal
|
|
906
|
+
*/
|
|
907
|
+
export declare const DescribeDatabaseRequestFilterSensitiveLog: (obj: DescribeDatabaseRequest) => any;
|
|
908
|
+
/**
|
|
909
|
+
* @internal
|
|
910
|
+
*/
|
|
911
|
+
export declare const DescribeDatabaseResponseFilterSensitiveLog: (obj: DescribeDatabaseResponse) => any;
|
|
912
|
+
/**
|
|
913
|
+
* @internal
|
|
914
|
+
*/
|
|
915
|
+
export declare const DescribeEndpointsRequestFilterSensitiveLog: (obj: DescribeEndpointsRequest) => any;
|
|
916
|
+
/**
|
|
917
|
+
* @internal
|
|
918
|
+
*/
|
|
919
|
+
export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
920
|
+
/**
|
|
921
|
+
* @internal
|
|
922
|
+
*/
|
|
923
|
+
export declare const DescribeEndpointsResponseFilterSensitiveLog: (obj: DescribeEndpointsResponse) => any;
|
|
924
|
+
/**
|
|
925
|
+
* @internal
|
|
926
|
+
*/
|
|
927
|
+
export declare const DescribeTableRequestFilterSensitiveLog: (obj: DescribeTableRequest) => any;
|
|
928
|
+
/**
|
|
929
|
+
* @internal
|
|
930
|
+
*/
|
|
931
|
+
export declare const DescribeTableResponseFilterSensitiveLog: (obj: DescribeTableResponse) => any;
|
|
932
|
+
/**
|
|
933
|
+
* @internal
|
|
934
|
+
*/
|
|
935
|
+
export declare const DimensionFilterSensitiveLog: (obj: Dimension) => any;
|
|
936
|
+
/**
|
|
937
|
+
* @internal
|
|
938
|
+
*/
|
|
939
|
+
export declare const ListDatabasesRequestFilterSensitiveLog: (obj: ListDatabasesRequest) => any;
|
|
940
|
+
/**
|
|
941
|
+
* @internal
|
|
942
|
+
*/
|
|
943
|
+
export declare const ListDatabasesResponseFilterSensitiveLog: (obj: ListDatabasesResponse) => any;
|
|
944
|
+
/**
|
|
945
|
+
* @internal
|
|
946
|
+
*/
|
|
947
|
+
export declare const ListTablesRequestFilterSensitiveLog: (obj: ListTablesRequest) => any;
|
|
948
|
+
/**
|
|
949
|
+
* @internal
|
|
950
|
+
*/
|
|
951
|
+
export declare const ListTablesResponseFilterSensitiveLog: (obj: ListTablesResponse) => any;
|
|
952
|
+
/**
|
|
953
|
+
* @internal
|
|
954
|
+
*/
|
|
955
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
956
|
+
/**
|
|
957
|
+
* @internal
|
|
958
|
+
*/
|
|
959
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
960
|
+
/**
|
|
961
|
+
* @internal
|
|
962
|
+
*/
|
|
963
|
+
export declare const MeasureValueFilterSensitiveLog: (obj: MeasureValue) => any;
|
|
964
|
+
/**
|
|
965
|
+
* @internal
|
|
966
|
+
*/
|
|
967
|
+
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
968
|
+
/**
|
|
969
|
+
* @internal
|
|
970
|
+
*/
|
|
971
|
+
export declare const RecordsIngestedFilterSensitiveLog: (obj: RecordsIngested) => any;
|
|
972
|
+
/**
|
|
973
|
+
* @internal
|
|
974
|
+
*/
|
|
975
|
+
export declare const RejectedRecordFilterSensitiveLog: (obj: RejectedRecord) => any;
|
|
976
|
+
/**
|
|
977
|
+
* @internal
|
|
978
|
+
*/
|
|
979
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
980
|
+
/**
|
|
981
|
+
* @internal
|
|
982
|
+
*/
|
|
983
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
984
|
+
/**
|
|
985
|
+
* @internal
|
|
986
|
+
*/
|
|
987
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
988
|
+
/**
|
|
989
|
+
* @internal
|
|
990
|
+
*/
|
|
991
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
992
|
+
/**
|
|
993
|
+
* @internal
|
|
994
|
+
*/
|
|
995
|
+
export declare const UpdateDatabaseRequestFilterSensitiveLog: (obj: UpdateDatabaseRequest) => any;
|
|
996
|
+
/**
|
|
997
|
+
* @internal
|
|
998
|
+
*/
|
|
999
|
+
export declare const UpdateDatabaseResponseFilterSensitiveLog: (obj: UpdateDatabaseResponse) => any;
|
|
1000
|
+
/**
|
|
1001
|
+
* @internal
|
|
1002
|
+
*/
|
|
1003
|
+
export declare const UpdateTableRequestFilterSensitiveLog: (obj: UpdateTableRequest) => any;
|
|
1004
|
+
/**
|
|
1005
|
+
* @internal
|
|
1006
|
+
*/
|
|
1007
|
+
export declare const UpdateTableResponseFilterSensitiveLog: (obj: UpdateTableResponse) => any;
|
|
1008
|
+
/**
|
|
1009
|
+
* @internal
|
|
1010
|
+
*/
|
|
1011
|
+
export declare const WriteRecordsRequestFilterSensitiveLog: (obj: WriteRecordsRequest) => any;
|
|
1012
|
+
/**
|
|
1013
|
+
* @internal
|
|
1014
|
+
*/
|
|
1015
|
+
export declare const WriteRecordsResponseFilterSensitiveLog: (obj: WriteRecordsResponse) => any;
|