@aws-sdk/client-timestream-write 3.687.0 → 3.692.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/dist-types/models/models_0.d.ts +134 -134
- package/dist-types/ts3.4/models/models_0.d.ts +136 -134
- package/package.json +36 -36
|
@@ -33,32 +33,32 @@ export interface BatchLoadProgressReport {
|
|
|
33
33
|
* <p></p>
|
|
34
34
|
* @public
|
|
35
35
|
*/
|
|
36
|
-
RecordsProcessed?: number;
|
|
36
|
+
RecordsProcessed?: number | undefined;
|
|
37
37
|
/**
|
|
38
38
|
* <p></p>
|
|
39
39
|
* @public
|
|
40
40
|
*/
|
|
41
|
-
RecordsIngested?: number;
|
|
41
|
+
RecordsIngested?: number | undefined;
|
|
42
42
|
/**
|
|
43
43
|
* <p></p>
|
|
44
44
|
* @public
|
|
45
45
|
*/
|
|
46
|
-
ParseFailures?: number;
|
|
46
|
+
ParseFailures?: number | undefined;
|
|
47
47
|
/**
|
|
48
48
|
* <p></p>
|
|
49
49
|
* @public
|
|
50
50
|
*/
|
|
51
|
-
RecordIngestionFailures?: number;
|
|
51
|
+
RecordIngestionFailures?: number | undefined;
|
|
52
52
|
/**
|
|
53
53
|
* <p></p>
|
|
54
54
|
* @public
|
|
55
55
|
*/
|
|
56
|
-
FileFailures?: number;
|
|
56
|
+
FileFailures?: number | undefined;
|
|
57
57
|
/**
|
|
58
58
|
* <p></p>
|
|
59
59
|
* @public
|
|
60
60
|
*/
|
|
61
|
-
BytesMetered?: number;
|
|
61
|
+
BytesMetered?: number | undefined;
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
64
64
|
* @public
|
|
@@ -85,38 +85,38 @@ export interface BatchLoadTask {
|
|
|
85
85
|
* <p>The ID of the batch load task.</p>
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
|
-
TaskId?: string;
|
|
88
|
+
TaskId?: string | undefined;
|
|
89
89
|
/**
|
|
90
90
|
* <p>Status of the batch load task.</p>
|
|
91
91
|
* @public
|
|
92
92
|
*/
|
|
93
|
-
TaskStatus?: BatchLoadStatus;
|
|
93
|
+
TaskStatus?: BatchLoadStatus | undefined;
|
|
94
94
|
/**
|
|
95
95
|
* <p>Database name for the database into which a batch load task loads data.</p>
|
|
96
96
|
* @public
|
|
97
97
|
*/
|
|
98
|
-
DatabaseName?: string;
|
|
98
|
+
DatabaseName?: string | undefined;
|
|
99
99
|
/**
|
|
100
100
|
* <p>Table name for the table into which a batch load task loads data.</p>
|
|
101
101
|
* @public
|
|
102
102
|
*/
|
|
103
|
-
TableName?: string;
|
|
103
|
+
TableName?: string | undefined;
|
|
104
104
|
/**
|
|
105
105
|
* <p>The time when the Timestream batch load task was created.</p>
|
|
106
106
|
* @public
|
|
107
107
|
*/
|
|
108
|
-
CreationTime?: Date;
|
|
108
|
+
CreationTime?: Date | undefined;
|
|
109
109
|
/**
|
|
110
110
|
* <p>The time when the Timestream batch load task was last updated.</p>
|
|
111
111
|
* @public
|
|
112
112
|
*/
|
|
113
|
-
LastUpdatedTime?: Date;
|
|
113
|
+
LastUpdatedTime?: Date | undefined;
|
|
114
114
|
/**
|
|
115
115
|
* <p>
|
|
116
116
|
* </p>
|
|
117
117
|
* @public
|
|
118
118
|
*/
|
|
119
|
-
ResumableUntil?: Date;
|
|
119
|
+
ResumableUntil?: Date | undefined;
|
|
120
120
|
}
|
|
121
121
|
/**
|
|
122
122
|
* <p></p>
|
|
@@ -127,13 +127,13 @@ export interface DimensionMapping {
|
|
|
127
127
|
* <p></p>
|
|
128
128
|
* @public
|
|
129
129
|
*/
|
|
130
|
-
SourceColumn?: string;
|
|
130
|
+
SourceColumn?: string | undefined;
|
|
131
131
|
/**
|
|
132
132
|
* <p>
|
|
133
133
|
* </p>
|
|
134
134
|
* @public
|
|
135
135
|
*/
|
|
136
|
-
DestinationColumn?: string;
|
|
136
|
+
DestinationColumn?: string | undefined;
|
|
137
137
|
}
|
|
138
138
|
/**
|
|
139
139
|
* @public
|
|
@@ -180,12 +180,12 @@ export interface MultiMeasureAttributeMapping {
|
|
|
180
180
|
* <p></p>
|
|
181
181
|
* @public
|
|
182
182
|
*/
|
|
183
|
-
TargetMultiMeasureAttributeName?: string;
|
|
183
|
+
TargetMultiMeasureAttributeName?: string | undefined;
|
|
184
184
|
/**
|
|
185
185
|
* <p></p>
|
|
186
186
|
* @public
|
|
187
187
|
*/
|
|
188
|
-
MeasureValueType?: ScalarMeasureValueType;
|
|
188
|
+
MeasureValueType?: ScalarMeasureValueType | undefined;
|
|
189
189
|
}
|
|
190
190
|
/**
|
|
191
191
|
* <p></p>
|
|
@@ -196,17 +196,17 @@ export interface MixedMeasureMapping {
|
|
|
196
196
|
* <p></p>
|
|
197
197
|
* @public
|
|
198
198
|
*/
|
|
199
|
-
MeasureName?: string;
|
|
199
|
+
MeasureName?: string | undefined;
|
|
200
200
|
/**
|
|
201
201
|
* <p></p>
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
|
-
SourceColumn?: string;
|
|
204
|
+
SourceColumn?: string | undefined;
|
|
205
205
|
/**
|
|
206
206
|
* <p></p>
|
|
207
207
|
* @public
|
|
208
208
|
*/
|
|
209
|
-
TargetMeasureName?: string;
|
|
209
|
+
TargetMeasureName?: string | undefined;
|
|
210
210
|
/**
|
|
211
211
|
* <p></p>
|
|
212
212
|
* @public
|
|
@@ -216,7 +216,7 @@ export interface MixedMeasureMapping {
|
|
|
216
216
|
* <p></p>
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
MultiMeasureAttributeMappings?: MultiMeasureAttributeMapping[];
|
|
219
|
+
MultiMeasureAttributeMappings?: MultiMeasureAttributeMapping[] | undefined;
|
|
220
220
|
}
|
|
221
221
|
/**
|
|
222
222
|
* <p></p>
|
|
@@ -227,7 +227,7 @@ export interface MultiMeasureMappings {
|
|
|
227
227
|
* <p></p>
|
|
228
228
|
* @public
|
|
229
229
|
*/
|
|
230
|
-
TargetMultiMeasureName?: string;
|
|
230
|
+
TargetMultiMeasureName?: string | undefined;
|
|
231
231
|
/**
|
|
232
232
|
* <p></p>
|
|
233
233
|
* @public
|
|
@@ -257,14 +257,14 @@ export interface DataModel {
|
|
|
257
257
|
* <p>Source column to be mapped to time.</p>
|
|
258
258
|
* @public
|
|
259
259
|
*/
|
|
260
|
-
TimeColumn?: string;
|
|
260
|
+
TimeColumn?: string | undefined;
|
|
261
261
|
/**
|
|
262
262
|
* <p> The granularity of the timestamp unit. It indicates if the time value is in seconds,
|
|
263
263
|
* milliseconds, nanoseconds, or other supported values. Default is <code>MILLISECONDS</code>.
|
|
264
264
|
* </p>
|
|
265
265
|
* @public
|
|
266
266
|
*/
|
|
267
|
-
TimeUnit?: TimeUnit;
|
|
267
|
+
TimeUnit?: TimeUnit | undefined;
|
|
268
268
|
/**
|
|
269
269
|
* <p>Source to target mappings for dimensions.</p>
|
|
270
270
|
* @public
|
|
@@ -274,17 +274,17 @@ export interface DataModel {
|
|
|
274
274
|
* <p>Source to target mappings for multi-measure records.</p>
|
|
275
275
|
* @public
|
|
276
276
|
*/
|
|
277
|
-
MultiMeasureMappings?: MultiMeasureMappings;
|
|
277
|
+
MultiMeasureMappings?: MultiMeasureMappings | undefined;
|
|
278
278
|
/**
|
|
279
279
|
* <p>Source to target mappings for measures.</p>
|
|
280
280
|
* @public
|
|
281
281
|
*/
|
|
282
|
-
MixedMeasureMappings?: MixedMeasureMapping[];
|
|
282
|
+
MixedMeasureMappings?: MixedMeasureMapping[] | undefined;
|
|
283
283
|
/**
|
|
284
284
|
* <p></p>
|
|
285
285
|
* @public
|
|
286
286
|
*/
|
|
287
|
-
MeasureNameColumn?: string;
|
|
287
|
+
MeasureNameColumn?: string | undefined;
|
|
288
288
|
}
|
|
289
289
|
/**
|
|
290
290
|
* <p></p>
|
|
@@ -295,12 +295,12 @@ export interface DataModelS3Configuration {
|
|
|
295
295
|
* <p></p>
|
|
296
296
|
* @public
|
|
297
297
|
*/
|
|
298
|
-
BucketName?: string;
|
|
298
|
+
BucketName?: string | undefined;
|
|
299
299
|
/**
|
|
300
300
|
* <p></p>
|
|
301
301
|
* @public
|
|
302
302
|
*/
|
|
303
|
-
ObjectKey?: string;
|
|
303
|
+
ObjectKey?: string | undefined;
|
|
304
304
|
}
|
|
305
305
|
/**
|
|
306
306
|
* <p></p>
|
|
@@ -311,12 +311,12 @@ export interface DataModelConfiguration {
|
|
|
311
311
|
* <p></p>
|
|
312
312
|
* @public
|
|
313
313
|
*/
|
|
314
|
-
DataModel?: DataModel;
|
|
314
|
+
DataModel?: DataModel | undefined;
|
|
315
315
|
/**
|
|
316
316
|
* <p></p>
|
|
317
317
|
* @public
|
|
318
318
|
*/
|
|
319
|
-
DataModelS3Configuration?: DataModelS3Configuration;
|
|
319
|
+
DataModelS3Configuration?: DataModelS3Configuration | undefined;
|
|
320
320
|
}
|
|
321
321
|
/**
|
|
322
322
|
* <p>A delimited data format where the column separator can be a comma and the record
|
|
@@ -329,27 +329,27 @@ export interface CsvConfiguration {
|
|
|
329
329
|
* blank space (' '). </p>
|
|
330
330
|
* @public
|
|
331
331
|
*/
|
|
332
|
-
ColumnSeparator?: string;
|
|
332
|
+
ColumnSeparator?: string | undefined;
|
|
333
333
|
/**
|
|
334
334
|
* <p>Escape character can be one of </p>
|
|
335
335
|
* @public
|
|
336
336
|
*/
|
|
337
|
-
EscapeChar?: string;
|
|
337
|
+
EscapeChar?: string | undefined;
|
|
338
338
|
/**
|
|
339
339
|
* <p>Can be single quote (') or double quote (").</p>
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
QuoteChar?: string;
|
|
342
|
+
QuoteChar?: string | undefined;
|
|
343
343
|
/**
|
|
344
344
|
* <p>Can be blank space (' ').</p>
|
|
345
345
|
* @public
|
|
346
346
|
*/
|
|
347
|
-
NullValue?: string;
|
|
347
|
+
NullValue?: string | undefined;
|
|
348
348
|
/**
|
|
349
349
|
* <p>Specifies to trim leading and trailing white space.</p>
|
|
350
350
|
* @public
|
|
351
351
|
*/
|
|
352
|
-
TrimWhiteSpace?: boolean;
|
|
352
|
+
TrimWhiteSpace?: boolean | undefined;
|
|
353
353
|
}
|
|
354
354
|
/**
|
|
355
355
|
* <p>
|
|
@@ -367,7 +367,7 @@ export interface DataSourceS3Configuration {
|
|
|
367
367
|
* </p>
|
|
368
368
|
* @public
|
|
369
369
|
*/
|
|
370
|
-
ObjectKeyPrefix?: string;
|
|
370
|
+
ObjectKeyPrefix?: string | undefined;
|
|
371
371
|
}
|
|
372
372
|
/**
|
|
373
373
|
* <p>Defines configuration details about the data source.</p>
|
|
@@ -384,7 +384,7 @@ export interface DataSourceConfiguration {
|
|
|
384
384
|
* separator is a newline character.</p>
|
|
385
385
|
* @public
|
|
386
386
|
*/
|
|
387
|
-
CsvConfiguration?: CsvConfiguration;
|
|
387
|
+
CsvConfiguration?: CsvConfiguration | undefined;
|
|
388
388
|
/**
|
|
389
389
|
* <p>This is currently CSV.</p>
|
|
390
390
|
* @public
|
|
@@ -417,17 +417,17 @@ export interface ReportS3Configuration {
|
|
|
417
417
|
* <p></p>
|
|
418
418
|
* @public
|
|
419
419
|
*/
|
|
420
|
-
ObjectKeyPrefix?: string;
|
|
420
|
+
ObjectKeyPrefix?: string | undefined;
|
|
421
421
|
/**
|
|
422
422
|
* <p></p>
|
|
423
423
|
* @public
|
|
424
424
|
*/
|
|
425
|
-
EncryptionOption?: S3EncryptionOption;
|
|
425
|
+
EncryptionOption?: S3EncryptionOption | undefined;
|
|
426
426
|
/**
|
|
427
427
|
* <p></p>
|
|
428
428
|
* @public
|
|
429
429
|
*/
|
|
430
|
-
KmsKeyId?: string;
|
|
430
|
+
KmsKeyId?: string | undefined;
|
|
431
431
|
}
|
|
432
432
|
/**
|
|
433
433
|
* <p>Report configuration for a batch load task. This contains details about where error
|
|
@@ -440,7 +440,7 @@ export interface ReportConfiguration {
|
|
|
440
440
|
* load.</p>
|
|
441
441
|
* @public
|
|
442
442
|
*/
|
|
443
|
-
ReportS3Configuration?: ReportS3Configuration;
|
|
443
|
+
ReportS3Configuration?: ReportS3Configuration | undefined;
|
|
444
444
|
}
|
|
445
445
|
/**
|
|
446
446
|
* <p>Details about a batch load task.</p>
|
|
@@ -451,70 +451,70 @@ export interface BatchLoadTaskDescription {
|
|
|
451
451
|
* <p>The ID of the batch load task.</p>
|
|
452
452
|
* @public
|
|
453
453
|
*/
|
|
454
|
-
TaskId?: string;
|
|
454
|
+
TaskId?: string | undefined;
|
|
455
455
|
/**
|
|
456
456
|
* <p></p>
|
|
457
457
|
* @public
|
|
458
458
|
*/
|
|
459
|
-
ErrorMessage?: string;
|
|
459
|
+
ErrorMessage?: string | undefined;
|
|
460
460
|
/**
|
|
461
461
|
* <p>Configuration details about the data source for a batch load task.</p>
|
|
462
462
|
* @public
|
|
463
463
|
*/
|
|
464
|
-
DataSourceConfiguration?: DataSourceConfiguration;
|
|
464
|
+
DataSourceConfiguration?: DataSourceConfiguration | undefined;
|
|
465
465
|
/**
|
|
466
466
|
* <p></p>
|
|
467
467
|
* @public
|
|
468
468
|
*/
|
|
469
|
-
ProgressReport?: BatchLoadProgressReport;
|
|
469
|
+
ProgressReport?: BatchLoadProgressReport | undefined;
|
|
470
470
|
/**
|
|
471
471
|
* <p>Report configuration for a batch load task. This contains details about where error
|
|
472
472
|
* reports are stored.</p>
|
|
473
473
|
* @public
|
|
474
474
|
*/
|
|
475
|
-
ReportConfiguration?: ReportConfiguration;
|
|
475
|
+
ReportConfiguration?: ReportConfiguration | undefined;
|
|
476
476
|
/**
|
|
477
477
|
* <p>Data model configuration for a batch load task. This contains details about where a data
|
|
478
478
|
* model for a batch load task is stored.</p>
|
|
479
479
|
* @public
|
|
480
480
|
*/
|
|
481
|
-
DataModelConfiguration?: DataModelConfiguration;
|
|
481
|
+
DataModelConfiguration?: DataModelConfiguration | undefined;
|
|
482
482
|
/**
|
|
483
483
|
* <p></p>
|
|
484
484
|
* @public
|
|
485
485
|
*/
|
|
486
|
-
TargetDatabaseName?: string;
|
|
486
|
+
TargetDatabaseName?: string | undefined;
|
|
487
487
|
/**
|
|
488
488
|
* <p></p>
|
|
489
489
|
* @public
|
|
490
490
|
*/
|
|
491
|
-
TargetTableName?: string;
|
|
491
|
+
TargetTableName?: string | undefined;
|
|
492
492
|
/**
|
|
493
493
|
* <p>Status of the batch load task.</p>
|
|
494
494
|
* @public
|
|
495
495
|
*/
|
|
496
|
-
TaskStatus?: BatchLoadStatus;
|
|
496
|
+
TaskStatus?: BatchLoadStatus | undefined;
|
|
497
497
|
/**
|
|
498
498
|
* <p></p>
|
|
499
499
|
* @public
|
|
500
500
|
*/
|
|
501
|
-
RecordVersion?: number;
|
|
501
|
+
RecordVersion?: number | undefined;
|
|
502
502
|
/**
|
|
503
503
|
* <p>The time when the Timestream batch load task was created.</p>
|
|
504
504
|
* @public
|
|
505
505
|
*/
|
|
506
|
-
CreationTime?: Date;
|
|
506
|
+
CreationTime?: Date | undefined;
|
|
507
507
|
/**
|
|
508
508
|
* <p>The time when the Timestream batch load task was last updated.</p>
|
|
509
509
|
* @public
|
|
510
510
|
*/
|
|
511
|
-
LastUpdatedTime?: Date;
|
|
511
|
+
LastUpdatedTime?: Date | undefined;
|
|
512
512
|
/**
|
|
513
513
|
* <p>
|
|
514
514
|
* </p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
ResumableUntil?: Date;
|
|
517
|
+
ResumableUntil?: Date | undefined;
|
|
518
518
|
}
|
|
519
519
|
/**
|
|
520
520
|
* <p>Timestream was unable to process this request because it contains resource that
|
|
@@ -538,12 +538,12 @@ export interface CreateBatchLoadTaskRequest {
|
|
|
538
538
|
* <p></p>
|
|
539
539
|
* @public
|
|
540
540
|
*/
|
|
541
|
-
ClientToken?: string;
|
|
541
|
+
ClientToken?: string | undefined;
|
|
542
542
|
/**
|
|
543
543
|
* <p></p>
|
|
544
544
|
* @public
|
|
545
545
|
*/
|
|
546
|
-
DataModelConfiguration?: DataModelConfiguration;
|
|
546
|
+
DataModelConfiguration?: DataModelConfiguration | undefined;
|
|
547
547
|
/**
|
|
548
548
|
* <p>Defines configuration details about the data source for a batch load task.</p>
|
|
549
549
|
* @public
|
|
@@ -569,7 +569,7 @@ export interface CreateBatchLoadTaskRequest {
|
|
|
569
569
|
* <p></p>
|
|
570
570
|
* @public
|
|
571
571
|
*/
|
|
572
|
-
RecordVersion?: number;
|
|
572
|
+
RecordVersion?: number | undefined;
|
|
573
573
|
}
|
|
574
574
|
/**
|
|
575
575
|
* @public
|
|
@@ -603,7 +603,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
603
603
|
export declare class InvalidEndpointException extends __BaseException {
|
|
604
604
|
readonly name: "InvalidEndpointException";
|
|
605
605
|
readonly $fault: "client";
|
|
606
|
-
Message?: string;
|
|
606
|
+
Message?: string | undefined;
|
|
607
607
|
/**
|
|
608
608
|
* @internal
|
|
609
609
|
*/
|
|
@@ -617,7 +617,7 @@ export declare class InvalidEndpointException extends __BaseException {
|
|
|
617
617
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
618
618
|
readonly name: "ResourceNotFoundException";
|
|
619
619
|
readonly $fault: "client";
|
|
620
|
-
Message?: string;
|
|
620
|
+
Message?: string | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* @internal
|
|
623
623
|
*/
|
|
@@ -630,7 +630,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
630
630
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
631
631
|
readonly name: "ServiceQuotaExceededException";
|
|
632
632
|
readonly $fault: "client";
|
|
633
|
-
Message?: string;
|
|
633
|
+
Message?: string | undefined;
|
|
634
634
|
/**
|
|
635
635
|
* @internal
|
|
636
636
|
*/
|
|
@@ -695,12 +695,12 @@ export interface CreateDatabaseRequest {
|
|
|
695
695
|
* specified, the database will be encrypted with a Timestream managed KMS key located in your account. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk">Amazon Web Services managed keys</a>.</p>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
KmsKeyId?: string;
|
|
698
|
+
KmsKeyId?: string | undefined;
|
|
699
699
|
/**
|
|
700
700
|
* <p> A list of key-value pairs to label the table. </p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
Tags?: Tag[];
|
|
703
|
+
Tags?: Tag[] | undefined;
|
|
704
704
|
}
|
|
705
705
|
/**
|
|
706
706
|
* <p>A top-level container for a table. Databases and tables are the fundamental management
|
|
@@ -713,33 +713,33 @@ export interface Database {
|
|
|
713
713
|
* <p>The Amazon Resource Name that uniquely identifies this database.</p>
|
|
714
714
|
* @public
|
|
715
715
|
*/
|
|
716
|
-
Arn?: string;
|
|
716
|
+
Arn?: string | undefined;
|
|
717
717
|
/**
|
|
718
718
|
* <p>The name of the Timestream database.</p>
|
|
719
719
|
* @public
|
|
720
720
|
*/
|
|
721
|
-
DatabaseName?: string;
|
|
721
|
+
DatabaseName?: string | undefined;
|
|
722
722
|
/**
|
|
723
723
|
* <p>The total number of tables found within a Timestream database. </p>
|
|
724
724
|
* @public
|
|
725
725
|
*/
|
|
726
|
-
TableCount?: number;
|
|
726
|
+
TableCount?: number | undefined;
|
|
727
727
|
/**
|
|
728
728
|
* <p>The identifier of the KMS key used to encrypt the data stored in the
|
|
729
729
|
* database.</p>
|
|
730
730
|
* @public
|
|
731
731
|
*/
|
|
732
|
-
KmsKeyId?: string;
|
|
732
|
+
KmsKeyId?: string | undefined;
|
|
733
733
|
/**
|
|
734
734
|
* <p>The time when the database was created, calculated from the Unix epoch time.</p>
|
|
735
735
|
* @public
|
|
736
736
|
*/
|
|
737
|
-
CreationTime?: Date;
|
|
737
|
+
CreationTime?: Date | undefined;
|
|
738
738
|
/**
|
|
739
739
|
* <p> The last time that this database was updated. </p>
|
|
740
740
|
* @public
|
|
741
741
|
*/
|
|
742
|
-
LastUpdatedTime?: Date;
|
|
742
|
+
LastUpdatedTime?: Date | undefined;
|
|
743
743
|
}
|
|
744
744
|
/**
|
|
745
745
|
* @public
|
|
@@ -749,7 +749,7 @@ export interface CreateDatabaseResponse {
|
|
|
749
749
|
* <p>The newly created Timestream database.</p>
|
|
750
750
|
* @public
|
|
751
751
|
*/
|
|
752
|
-
Database?: Database;
|
|
752
|
+
Database?: Database | undefined;
|
|
753
753
|
}
|
|
754
754
|
/**
|
|
755
755
|
* <p>The configuration that specifies an S3 location.</p>
|
|
@@ -760,24 +760,24 @@ export interface S3Configuration {
|
|
|
760
760
|
* <p>The bucket name of the customer S3 bucket.</p>
|
|
761
761
|
* @public
|
|
762
762
|
*/
|
|
763
|
-
BucketName?: string;
|
|
763
|
+
BucketName?: string | undefined;
|
|
764
764
|
/**
|
|
765
765
|
* <p>The object key preview for the customer S3 location.</p>
|
|
766
766
|
* @public
|
|
767
767
|
*/
|
|
768
|
-
ObjectKeyPrefix?: string;
|
|
768
|
+
ObjectKeyPrefix?: string | undefined;
|
|
769
769
|
/**
|
|
770
770
|
* <p>The encryption option for the customer S3 location. Options are S3 server-side
|
|
771
771
|
* encryption with an S3 managed key or Amazon Web Services managed key.</p>
|
|
772
772
|
* @public
|
|
773
773
|
*/
|
|
774
|
-
EncryptionOption?: S3EncryptionOption;
|
|
774
|
+
EncryptionOption?: S3EncryptionOption | undefined;
|
|
775
775
|
/**
|
|
776
776
|
* <p>The KMS key ID for the customer S3 location when encrypting with an
|
|
777
777
|
* Amazon Web Services managed key.</p>
|
|
778
778
|
* @public
|
|
779
779
|
*/
|
|
780
|
-
KmsKeyId?: string;
|
|
780
|
+
KmsKeyId?: string | undefined;
|
|
781
781
|
}
|
|
782
782
|
/**
|
|
783
783
|
* <p>The location to write error reports for records rejected, asynchronously, during
|
|
@@ -790,7 +790,7 @@ export interface MagneticStoreRejectedDataLocation {
|
|
|
790
790
|
* asynchronously, during magnetic store writes.</p>
|
|
791
791
|
* @public
|
|
792
792
|
*/
|
|
793
|
-
S3Configuration?: S3Configuration;
|
|
793
|
+
S3Configuration?: S3Configuration | undefined;
|
|
794
794
|
}
|
|
795
795
|
/**
|
|
796
796
|
* <p>The set of properties on a table for configuring magnetic store writes.</p>
|
|
@@ -807,7 +807,7 @@ export interface MagneticStoreWriteProperties {
|
|
|
807
807
|
* store writes.</p>
|
|
808
808
|
* @public
|
|
809
809
|
*/
|
|
810
|
-
MagneticStoreRejectedDataLocation?: MagneticStoreRejectedDataLocation;
|
|
810
|
+
MagneticStoreRejectedDataLocation?: MagneticStoreRejectedDataLocation | undefined;
|
|
811
811
|
}
|
|
812
812
|
/**
|
|
813
813
|
* <p>Retention properties contain the duration for which your time-series data must be stored
|
|
@@ -868,14 +868,14 @@ export interface PartitionKey {
|
|
|
868
868
|
* <p> The name of the attribute used for a dimension key. </p>
|
|
869
869
|
* @public
|
|
870
870
|
*/
|
|
871
|
-
Name?: string;
|
|
871
|
+
Name?: string | undefined;
|
|
872
872
|
/**
|
|
873
873
|
* <p> The level of enforcement for the specification of a dimension key in ingested records.
|
|
874
874
|
* Options are REQUIRED (dimension key must be specified) and OPTIONAL (dimension key does not
|
|
875
875
|
* have to be specified). </p>
|
|
876
876
|
* @public
|
|
877
877
|
*/
|
|
878
|
-
EnforcementInRecord?: PartitionKeyEnforcementLevel;
|
|
878
|
+
EnforcementInRecord?: PartitionKeyEnforcementLevel | undefined;
|
|
879
879
|
}
|
|
880
880
|
/**
|
|
881
881
|
* <p> A Schema specifies the expected data model of the table. </p>
|
|
@@ -889,7 +889,7 @@ export interface Schema {
|
|
|
889
889
|
* created. However, the enforcement level of each partition key can be changed. </p>
|
|
890
890
|
* @public
|
|
891
891
|
*/
|
|
892
|
-
CompositePartitionKey?: PartitionKey[];
|
|
892
|
+
CompositePartitionKey?: PartitionKey[] | undefined;
|
|
893
893
|
}
|
|
894
894
|
/**
|
|
895
895
|
* @public
|
|
@@ -910,22 +910,22 @@ export interface CreateTableRequest {
|
|
|
910
910
|
* magnetic store.</p>
|
|
911
911
|
* @public
|
|
912
912
|
*/
|
|
913
|
-
RetentionProperties?: RetentionProperties;
|
|
913
|
+
RetentionProperties?: RetentionProperties | undefined;
|
|
914
914
|
/**
|
|
915
915
|
* <p> A list of key-value pairs to label the table. </p>
|
|
916
916
|
* @public
|
|
917
917
|
*/
|
|
918
|
-
Tags?: Tag[];
|
|
918
|
+
Tags?: Tag[] | undefined;
|
|
919
919
|
/**
|
|
920
920
|
* <p>Contains properties to set on the table when enabling magnetic store writes.</p>
|
|
921
921
|
* @public
|
|
922
922
|
*/
|
|
923
|
-
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
923
|
+
MagneticStoreWriteProperties?: MagneticStoreWriteProperties | undefined;
|
|
924
924
|
/**
|
|
925
925
|
* <p> The schema of the table. </p>
|
|
926
926
|
* @public
|
|
927
927
|
*/
|
|
928
|
-
Schema?: Schema;
|
|
928
|
+
Schema?: Schema | undefined;
|
|
929
929
|
}
|
|
930
930
|
/**
|
|
931
931
|
* @public
|
|
@@ -951,17 +951,17 @@ export interface Table {
|
|
|
951
951
|
* <p>The Amazon Resource Name that uniquely identifies this table.</p>
|
|
952
952
|
* @public
|
|
953
953
|
*/
|
|
954
|
-
Arn?: string;
|
|
954
|
+
Arn?: string | undefined;
|
|
955
955
|
/**
|
|
956
956
|
* <p>The name of the Timestream table.</p>
|
|
957
957
|
* @public
|
|
958
958
|
*/
|
|
959
|
-
TableName?: string;
|
|
959
|
+
TableName?: string | undefined;
|
|
960
960
|
/**
|
|
961
961
|
* <p>The name of the Timestream database that contains this table.</p>
|
|
962
962
|
* @public
|
|
963
963
|
*/
|
|
964
|
-
DatabaseName?: string;
|
|
964
|
+
DatabaseName?: string | undefined;
|
|
965
965
|
/**
|
|
966
966
|
* <p>The current state of the table:</p>
|
|
967
967
|
* <ul>
|
|
@@ -976,32 +976,32 @@ export interface Table {
|
|
|
976
976
|
* </ul>
|
|
977
977
|
* @public
|
|
978
978
|
*/
|
|
979
|
-
TableStatus?: TableStatus;
|
|
979
|
+
TableStatus?: TableStatus | undefined;
|
|
980
980
|
/**
|
|
981
981
|
* <p>The retention duration for the memory store and magnetic store.</p>
|
|
982
982
|
* @public
|
|
983
983
|
*/
|
|
984
|
-
RetentionProperties?: RetentionProperties;
|
|
984
|
+
RetentionProperties?: RetentionProperties | undefined;
|
|
985
985
|
/**
|
|
986
986
|
* <p>The time when the Timestream table was created. </p>
|
|
987
987
|
* @public
|
|
988
988
|
*/
|
|
989
|
-
CreationTime?: Date;
|
|
989
|
+
CreationTime?: Date | undefined;
|
|
990
990
|
/**
|
|
991
991
|
* <p>The time when the Timestream table was last updated.</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
LastUpdatedTime?: Date;
|
|
994
|
+
LastUpdatedTime?: Date | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p>Contains properties to set on the table when enabling magnetic store writes.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
999
|
+
MagneticStoreWriteProperties?: MagneticStoreWriteProperties | undefined;
|
|
1000
1000
|
/**
|
|
1001
1001
|
* <p> The schema of the table. </p>
|
|
1002
1002
|
* @public
|
|
1003
1003
|
*/
|
|
1004
|
-
Schema?: Schema;
|
|
1004
|
+
Schema?: Schema | undefined;
|
|
1005
1005
|
}
|
|
1006
1006
|
/**
|
|
1007
1007
|
* @public
|
|
@@ -1011,7 +1011,7 @@ export interface CreateTableResponse {
|
|
|
1011
1011
|
* <p>The newly created Timestream table.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
Table?: Table;
|
|
1014
|
+
Table?: Table | undefined;
|
|
1015
1015
|
}
|
|
1016
1016
|
/**
|
|
1017
1017
|
* @public
|
|
@@ -1076,7 +1076,7 @@ export interface DescribeDatabaseResponse {
|
|
|
1076
1076
|
* <p>The name of the Timestream table.</p>
|
|
1077
1077
|
* @public
|
|
1078
1078
|
*/
|
|
1079
|
-
Database?: Database;
|
|
1079
|
+
Database?: Database | undefined;
|
|
1080
1080
|
}
|
|
1081
1081
|
/**
|
|
1082
1082
|
* @public
|
|
@@ -1134,7 +1134,7 @@ export interface DescribeTableResponse {
|
|
|
1134
1134
|
* <p>The Timestream table.</p>
|
|
1135
1135
|
* @public
|
|
1136
1136
|
*/
|
|
1137
|
-
Table?: Table;
|
|
1137
|
+
Table?: Table | undefined;
|
|
1138
1138
|
}
|
|
1139
1139
|
/**
|
|
1140
1140
|
* @public
|
|
@@ -1172,7 +1172,7 @@ export interface Dimension {
|
|
|
1172
1172
|
* <p>The data type of the dimension for the time-series data point.</p>
|
|
1173
1173
|
* @public
|
|
1174
1174
|
*/
|
|
1175
|
-
DimensionValueType?: DimensionValueType;
|
|
1175
|
+
DimensionValueType?: DimensionValueType | undefined;
|
|
1176
1176
|
}
|
|
1177
1177
|
/**
|
|
1178
1178
|
* @public
|
|
@@ -1183,7 +1183,7 @@ export interface ListBatchLoadTasksRequest {
|
|
|
1183
1183
|
* truncated response.</p>
|
|
1184
1184
|
* @public
|
|
1185
1185
|
*/
|
|
1186
|
-
NextToken?: string;
|
|
1186
|
+
NextToken?: string | undefined;
|
|
1187
1187
|
/**
|
|
1188
1188
|
* <p>The total number of items to return in the output. If the total number of items
|
|
1189
1189
|
* available is more than the value specified, a NextToken is provided in the output. To
|
|
@@ -1191,12 +1191,12 @@ export interface ListBatchLoadTasksRequest {
|
|
|
1191
1191
|
* invocation.</p>
|
|
1192
1192
|
* @public
|
|
1193
1193
|
*/
|
|
1194
|
-
MaxResults?: number;
|
|
1194
|
+
MaxResults?: number | undefined;
|
|
1195
1195
|
/**
|
|
1196
1196
|
* <p>Status of the batch load task.</p>
|
|
1197
1197
|
* @public
|
|
1198
1198
|
*/
|
|
1199
|
-
TaskStatus?: BatchLoadStatus;
|
|
1199
|
+
TaskStatus?: BatchLoadStatus | undefined;
|
|
1200
1200
|
}
|
|
1201
1201
|
/**
|
|
1202
1202
|
* @public
|
|
@@ -1207,12 +1207,12 @@ export interface ListBatchLoadTasksResponse {
|
|
|
1207
1207
|
* ListBatchLoadTasksRequest.</p>
|
|
1208
1208
|
* @public
|
|
1209
1209
|
*/
|
|
1210
|
-
NextToken?: string;
|
|
1210
|
+
NextToken?: string | undefined;
|
|
1211
1211
|
/**
|
|
1212
1212
|
* <p>A list of batch load task details.</p>
|
|
1213
1213
|
* @public
|
|
1214
1214
|
*/
|
|
1215
|
-
BatchLoadTasks?: BatchLoadTask[];
|
|
1215
|
+
BatchLoadTasks?: BatchLoadTask[] | undefined;
|
|
1216
1216
|
}
|
|
1217
1217
|
/**
|
|
1218
1218
|
* @public
|
|
@@ -1223,7 +1223,7 @@ export interface ListDatabasesRequest {
|
|
|
1223
1223
|
* subsequent API invocation.</p>
|
|
1224
1224
|
* @public
|
|
1225
1225
|
*/
|
|
1226
|
-
NextToken?: string;
|
|
1226
|
+
NextToken?: string | undefined;
|
|
1227
1227
|
/**
|
|
1228
1228
|
* <p>The total number of items to return in the output. If the total number of items
|
|
1229
1229
|
* available is more than the value specified, a NextToken is provided in the output. To
|
|
@@ -1231,7 +1231,7 @@ export interface ListDatabasesRequest {
|
|
|
1231
1231
|
* invocation.</p>
|
|
1232
1232
|
* @public
|
|
1233
1233
|
*/
|
|
1234
|
-
MaxResults?: number;
|
|
1234
|
+
MaxResults?: number | undefined;
|
|
1235
1235
|
}
|
|
1236
1236
|
/**
|
|
1237
1237
|
* @public
|
|
@@ -1241,12 +1241,12 @@ export interface ListDatabasesResponse {
|
|
|
1241
1241
|
* <p>A list of database names.</p>
|
|
1242
1242
|
* @public
|
|
1243
1243
|
*/
|
|
1244
|
-
Databases?: Database[];
|
|
1244
|
+
Databases?: Database[] | undefined;
|
|
1245
1245
|
/**
|
|
1246
1246
|
* <p>The pagination token. This parameter is returned when the response is truncated.</p>
|
|
1247
1247
|
* @public
|
|
1248
1248
|
*/
|
|
1249
|
-
NextToken?: string;
|
|
1249
|
+
NextToken?: string | undefined;
|
|
1250
1250
|
}
|
|
1251
1251
|
/**
|
|
1252
1252
|
* @public
|
|
@@ -1256,13 +1256,13 @@ export interface ListTablesRequest {
|
|
|
1256
1256
|
* <p>The name of the Timestream database.</p>
|
|
1257
1257
|
* @public
|
|
1258
1258
|
*/
|
|
1259
|
-
DatabaseName?: string;
|
|
1259
|
+
DatabaseName?: string | undefined;
|
|
1260
1260
|
/**
|
|
1261
1261
|
* <p>The pagination token. To resume pagination, provide the NextToken value as argument of a
|
|
1262
1262
|
* subsequent API invocation.</p>
|
|
1263
1263
|
* @public
|
|
1264
1264
|
*/
|
|
1265
|
-
NextToken?: string;
|
|
1265
|
+
NextToken?: string | undefined;
|
|
1266
1266
|
/**
|
|
1267
1267
|
* <p>The total number of items to return in the output. If the total number of items
|
|
1268
1268
|
* available is more than the value specified, a NextToken is provided in the output. To
|
|
@@ -1270,7 +1270,7 @@ export interface ListTablesRequest {
|
|
|
1270
1270
|
* invocation.</p>
|
|
1271
1271
|
* @public
|
|
1272
1272
|
*/
|
|
1273
|
-
MaxResults?: number;
|
|
1273
|
+
MaxResults?: number | undefined;
|
|
1274
1274
|
}
|
|
1275
1275
|
/**
|
|
1276
1276
|
* @public
|
|
@@ -1280,13 +1280,13 @@ export interface ListTablesResponse {
|
|
|
1280
1280
|
* <p>A list of tables.</p>
|
|
1281
1281
|
* @public
|
|
1282
1282
|
*/
|
|
1283
|
-
Tables?: Table[];
|
|
1283
|
+
Tables?: Table[] | undefined;
|
|
1284
1284
|
/**
|
|
1285
1285
|
* <p>A token to specify where to start paginating. This is the NextToken from a previously
|
|
1286
1286
|
* truncated response.</p>
|
|
1287
1287
|
* @public
|
|
1288
1288
|
*/
|
|
1289
|
-
NextToken?: string;
|
|
1289
|
+
NextToken?: string | undefined;
|
|
1290
1290
|
}
|
|
1291
1291
|
/**
|
|
1292
1292
|
* @public
|
|
@@ -1307,7 +1307,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1307
1307
|
* <p> The tags currently associated with the Timestream resource. </p>
|
|
1308
1308
|
* @public
|
|
1309
1309
|
*/
|
|
1310
|
-
Tags?: Tag[];
|
|
1310
|
+
Tags?: Tag[] | undefined;
|
|
1311
1311
|
}
|
|
1312
1312
|
/**
|
|
1313
1313
|
* <p> Represents the data attribute of the time series. For example, the CPU utilization of
|
|
@@ -1359,25 +1359,25 @@ export interface _Record {
|
|
|
1359
1359
|
* <p>Contains the list of dimensions for time-series data points.</p>
|
|
1360
1360
|
* @public
|
|
1361
1361
|
*/
|
|
1362
|
-
Dimensions?: Dimension[];
|
|
1362
|
+
Dimensions?: Dimension[] | undefined;
|
|
1363
1363
|
/**
|
|
1364
1364
|
* <p>Measure represents the data attribute of the time series. For example, the CPU
|
|
1365
1365
|
* utilization of an EC2 instance or the RPM of a wind turbine are measures. </p>
|
|
1366
1366
|
* @public
|
|
1367
1367
|
*/
|
|
1368
|
-
MeasureName?: string;
|
|
1368
|
+
MeasureName?: string | undefined;
|
|
1369
1369
|
/**
|
|
1370
1370
|
* <p> Contains the measure value for the time-series data point. </p>
|
|
1371
1371
|
* @public
|
|
1372
1372
|
*/
|
|
1373
|
-
MeasureValue?: string;
|
|
1373
|
+
MeasureValue?: string | undefined;
|
|
1374
1374
|
/**
|
|
1375
1375
|
* <p> Contains the data type of the measure value for the time-series data point. Default
|
|
1376
1376
|
* type is <code>DOUBLE</code>. For more information, see <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/writes.html#writes.data-types">Data
|
|
1377
1377
|
* types</a>.</p>
|
|
1378
1378
|
* @public
|
|
1379
1379
|
*/
|
|
1380
|
-
MeasureValueType?: MeasureValueType;
|
|
1380
|
+
MeasureValueType?: MeasureValueType | undefined;
|
|
1381
1381
|
/**
|
|
1382
1382
|
* <p> Contains the time at which the measure value for the data point was collected. The time
|
|
1383
1383
|
* value plus the unit provides the time elapsed since the epoch. For example, if the time
|
|
@@ -1385,14 +1385,14 @@ export interface _Record {
|
|
|
1385
1385
|
* have elapsed since the epoch. </p>
|
|
1386
1386
|
* @public
|
|
1387
1387
|
*/
|
|
1388
|
-
Time?: string;
|
|
1388
|
+
Time?: string | undefined;
|
|
1389
1389
|
/**
|
|
1390
1390
|
* <p> The granularity of the timestamp unit. It indicates if the time value is in seconds,
|
|
1391
1391
|
* milliseconds, nanoseconds, or other supported values. Default is <code>MILLISECONDS</code>.
|
|
1392
1392
|
* </p>
|
|
1393
1393
|
* @public
|
|
1394
1394
|
*/
|
|
1395
|
-
TimeUnit?: TimeUnit;
|
|
1395
|
+
TimeUnit?: TimeUnit | undefined;
|
|
1396
1396
|
/**
|
|
1397
1397
|
* <p>64-bit attribute used for record updates. Write requests for duplicate data with a
|
|
1398
1398
|
* higher version number will update the existing measure value and version. In cases where
|
|
@@ -1405,14 +1405,14 @@ export interface _Record {
|
|
|
1405
1405
|
* </note>
|
|
1406
1406
|
* @public
|
|
1407
1407
|
*/
|
|
1408
|
-
Version?: number;
|
|
1408
|
+
Version?: number | undefined;
|
|
1409
1409
|
/**
|
|
1410
1410
|
* <p> Contains the list of MeasureValue for time-series data points. </p>
|
|
1411
1411
|
* <p> This is only allowed for type <code>MULTI</code>. For scalar values, use
|
|
1412
1412
|
* <code>MeasureValue</code> attribute of the record directly. </p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
MeasureValues?: MeasureValue[];
|
|
1415
|
+
MeasureValues?: MeasureValue[] | undefined;
|
|
1416
1416
|
}
|
|
1417
1417
|
/**
|
|
1418
1418
|
* <p>Information on the records ingested by this request.</p>
|
|
@@ -1423,17 +1423,17 @@ export interface RecordsIngested {
|
|
|
1423
1423
|
* <p>Total count of successfully ingested records.</p>
|
|
1424
1424
|
* @public
|
|
1425
1425
|
*/
|
|
1426
|
-
Total?: number;
|
|
1426
|
+
Total?: number | undefined;
|
|
1427
1427
|
/**
|
|
1428
1428
|
* <p>Count of records ingested into the memory store.</p>
|
|
1429
1429
|
* @public
|
|
1430
1430
|
*/
|
|
1431
|
-
MemoryStore?: number;
|
|
1431
|
+
MemoryStore?: number | undefined;
|
|
1432
1432
|
/**
|
|
1433
1433
|
* <p>Count of records ingested into the magnetic store.</p>
|
|
1434
1434
|
* @public
|
|
1435
1435
|
*/
|
|
1436
|
-
MagneticStore?: number;
|
|
1436
|
+
MagneticStore?: number | undefined;
|
|
1437
1437
|
}
|
|
1438
1438
|
/**
|
|
1439
1439
|
* <p> Represents records that were not successfully inserted into Timestream due to
|
|
@@ -1447,7 +1447,7 @@ export interface RejectedRecord {
|
|
|
1447
1447
|
* </p>
|
|
1448
1448
|
* @public
|
|
1449
1449
|
*/
|
|
1450
|
-
RecordIndex?: number;
|
|
1450
|
+
RecordIndex?: number | undefined;
|
|
1451
1451
|
/**
|
|
1452
1452
|
* <p> The reason why a record was not successfully inserted into Timestream.
|
|
1453
1453
|
* Possible causes of failure include: </p>
|
|
@@ -1492,13 +1492,13 @@ export interface RejectedRecord {
|
|
|
1492
1492
|
* Timestream Developer Guide. </p>
|
|
1493
1493
|
* @public
|
|
1494
1494
|
*/
|
|
1495
|
-
Reason?: string;
|
|
1495
|
+
Reason?: string | undefined;
|
|
1496
1496
|
/**
|
|
1497
1497
|
* <p>The existing version of the record. This value is populated in scenarios where an
|
|
1498
1498
|
* identical record exists with a higher version than the version in the write request.</p>
|
|
1499
1499
|
* @public
|
|
1500
1500
|
*/
|
|
1501
|
-
ExistingVersion?: number;
|
|
1501
|
+
ExistingVersion?: number | undefined;
|
|
1502
1502
|
}
|
|
1503
1503
|
/**
|
|
1504
1504
|
* <p> WriteRecords would throw this exception in the following cases: </p>
|
|
@@ -1536,13 +1536,13 @@ export interface RejectedRecord {
|
|
|
1536
1536
|
export declare class RejectedRecordsException extends __BaseException {
|
|
1537
1537
|
readonly name: "RejectedRecordsException";
|
|
1538
1538
|
readonly $fault: "client";
|
|
1539
|
-
Message?: string;
|
|
1539
|
+
Message?: string | undefined;
|
|
1540
1540
|
/**
|
|
1541
1541
|
* <p>
|
|
1542
1542
|
* </p>
|
|
1543
1543
|
* @public
|
|
1544
1544
|
*/
|
|
1545
|
-
RejectedRecords?: RejectedRecord[];
|
|
1545
|
+
RejectedRecords?: RejectedRecord[] | undefined;
|
|
1546
1546
|
/**
|
|
1547
1547
|
* @internal
|
|
1548
1548
|
*/
|
|
@@ -1655,7 +1655,7 @@ export interface UpdateDatabaseResponse {
|
|
|
1655
1655
|
* same KMS key.</p>
|
|
1656
1656
|
* @public
|
|
1657
1657
|
*/
|
|
1658
|
-
Database?: Database;
|
|
1658
|
+
Database?: Database | undefined;
|
|
1659
1659
|
}
|
|
1660
1660
|
/**
|
|
1661
1661
|
* @public
|
|
@@ -1675,17 +1675,17 @@ export interface UpdateTableRequest {
|
|
|
1675
1675
|
* <p>The retention duration of the memory store and the magnetic store.</p>
|
|
1676
1676
|
* @public
|
|
1677
1677
|
*/
|
|
1678
|
-
RetentionProperties?: RetentionProperties;
|
|
1678
|
+
RetentionProperties?: RetentionProperties | undefined;
|
|
1679
1679
|
/**
|
|
1680
1680
|
* <p>Contains properties to set on the table when enabling magnetic store writes.</p>
|
|
1681
1681
|
* @public
|
|
1682
1682
|
*/
|
|
1683
|
-
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
1683
|
+
MagneticStoreWriteProperties?: MagneticStoreWriteProperties | undefined;
|
|
1684
1684
|
/**
|
|
1685
1685
|
* <p> The schema of the table. </p>
|
|
1686
1686
|
* @public
|
|
1687
1687
|
*/
|
|
1688
|
-
Schema?: Schema;
|
|
1688
|
+
Schema?: Schema | undefined;
|
|
1689
1689
|
}
|
|
1690
1690
|
/**
|
|
1691
1691
|
* @public
|
|
@@ -1695,7 +1695,7 @@ export interface UpdateTableResponse {
|
|
|
1695
1695
|
* <p>The updated Timestream table.</p>
|
|
1696
1696
|
* @public
|
|
1697
1697
|
*/
|
|
1698
|
-
Table?: Table;
|
|
1698
|
+
Table?: Table | undefined;
|
|
1699
1699
|
}
|
|
1700
1700
|
/**
|
|
1701
1701
|
* @public
|
|
@@ -1720,7 +1720,7 @@ export interface WriteRecordsRequest {
|
|
|
1720
1720
|
* dimensions with unique names. </p>
|
|
1721
1721
|
* @public
|
|
1722
1722
|
*/
|
|
1723
|
-
CommonAttributes?: _Record;
|
|
1723
|
+
CommonAttributes?: _Record | undefined;
|
|
1724
1724
|
/**
|
|
1725
1725
|
* <p>An array of records that contain the unique measure, dimension, time, and version
|
|
1726
1726
|
* attributes for each time-series data point. </p>
|
|
@@ -1736,7 +1736,7 @@ export interface WriteRecordsResponse {
|
|
|
1736
1736
|
* <p>Information on the records ingested by this request.</p>
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
RecordsIngested?: RecordsIngested;
|
|
1739
|
+
RecordsIngested?: RecordsIngested | undefined;
|
|
1740
1740
|
}
|
|
1741
1741
|
/**
|
|
1742
1742
|
* @internal
|