@aws-sdk/client-timestream-query 3.50.0 → 3.51.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 (32) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/TimestreamQuery.d.ts +70 -0
  3. package/dist-types/ts3.4/TimestreamQueryClient.d.ts +89 -0
  4. package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DescribeScheduledQueryCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/ExecuteScheduledQueryCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/PrepareQueryCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/QueryCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  18. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  19. package/dist-types/ts3.4/index.d.ts +5 -0
  20. package/dist-types/ts3.4/models/index.d.ts +1 -0
  21. package/dist-types/ts3.4/models/models_0.d.ts +731 -0
  22. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  23. package/dist-types/ts3.4/pagination/ListScheduledQueriesPaginator.d.ts +4 -0
  24. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
  25. package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +4 -0
  26. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  27. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +41 -0
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +41 -0
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +41 -0
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +40 -0
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  32. package/package.json +9 -9
@@ -0,0 +1,731 @@
1
+ import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+
3
+ export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
+ name: "AccessDeniedException";
5
+ $fault: "client";
6
+ Message?: string;
7
+ }
8
+ export interface CancelQueryRequest {
9
+
10
+ QueryId: string | undefined;
11
+ }
12
+ export declare namespace CancelQueryRequest {
13
+
14
+ const filterSensitiveLog: (obj: CancelQueryRequest) => any;
15
+ }
16
+ export interface CancelQueryResponse {
17
+
18
+ CancellationMessage?: string;
19
+ }
20
+ export declare namespace CancelQueryResponse {
21
+
22
+ const filterSensitiveLog: (obj: CancelQueryResponse) => any;
23
+ }
24
+
25
+ export interface InternalServerException extends __SmithyException, $MetadataBearer {
26
+ name: "InternalServerException";
27
+ $fault: "server";
28
+ Message?: string;
29
+ }
30
+
31
+ export interface InvalidEndpointException extends __SmithyException, $MetadataBearer {
32
+ name: "InvalidEndpointException";
33
+ $fault: "client";
34
+ Message?: string;
35
+ }
36
+
37
+ export interface ThrottlingException extends __SmithyException, $MetadataBearer {
38
+ name: "ThrottlingException";
39
+ $fault: "client";
40
+ Message?: string;
41
+ }
42
+
43
+ export interface ValidationException extends __SmithyException, $MetadataBearer {
44
+ name: "ValidationException";
45
+ $fault: "client";
46
+ Message?: string;
47
+ }
48
+ export declare enum ScalarType {
49
+ BIGINT = "BIGINT",
50
+ BOOLEAN = "BOOLEAN",
51
+ DATE = "DATE",
52
+ DOUBLE = "DOUBLE",
53
+ INTEGER = "INTEGER",
54
+ INTERVAL_DAY_TO_SECOND = "INTERVAL_DAY_TO_SECOND",
55
+ INTERVAL_YEAR_TO_MONTH = "INTERVAL_YEAR_TO_MONTH",
56
+ TIME = "TIME",
57
+ TIMESTAMP = "TIMESTAMP",
58
+ UNKNOWN = "UNKNOWN",
59
+ VARCHAR = "VARCHAR"
60
+ }
61
+
62
+ export interface ConflictException extends __SmithyException, $MetadataBearer {
63
+ name: "ConflictException";
64
+ $fault: "client";
65
+ Message?: string;
66
+ }
67
+ export declare enum S3EncryptionOption {
68
+ SSE_KMS = "SSE_KMS",
69
+ SSE_S3 = "SSE_S3"
70
+ }
71
+
72
+ export interface S3Configuration {
73
+
74
+ BucketName: string | undefined;
75
+
76
+ ObjectKeyPrefix?: string;
77
+
78
+ EncryptionOption?: S3EncryptionOption | string;
79
+ }
80
+ export declare namespace S3Configuration {
81
+
82
+ const filterSensitiveLog: (obj: S3Configuration) => any;
83
+ }
84
+
85
+ export interface ErrorReportConfiguration {
86
+
87
+ S3Configuration: S3Configuration | undefined;
88
+ }
89
+ export declare namespace ErrorReportConfiguration {
90
+
91
+ const filterSensitiveLog: (obj: ErrorReportConfiguration) => any;
92
+ }
93
+
94
+ export interface SnsConfiguration {
95
+
96
+ TopicArn: string | undefined;
97
+ }
98
+ export declare namespace SnsConfiguration {
99
+
100
+ const filterSensitiveLog: (obj: SnsConfiguration) => any;
101
+ }
102
+
103
+ export interface NotificationConfiguration {
104
+
105
+ SnsConfiguration: SnsConfiguration | undefined;
106
+ }
107
+ export declare namespace NotificationConfiguration {
108
+
109
+ const filterSensitiveLog: (obj: NotificationConfiguration) => any;
110
+ }
111
+
112
+ export interface ScheduleConfiguration {
113
+
114
+ ScheduleExpression: string | undefined;
115
+ }
116
+ export declare namespace ScheduleConfiguration {
117
+
118
+ const filterSensitiveLog: (obj: ScheduleConfiguration) => any;
119
+ }
120
+
121
+ export interface Tag {
122
+
123
+ Key: string | undefined;
124
+
125
+ Value: string | undefined;
126
+ }
127
+ export declare namespace Tag {
128
+
129
+ const filterSensitiveLog: (obj: Tag) => any;
130
+ }
131
+ export declare enum DimensionValueType {
132
+ VARCHAR = "VARCHAR"
133
+ }
134
+
135
+ export interface DimensionMapping {
136
+
137
+ Name: string | undefined;
138
+
139
+ DimensionValueType: DimensionValueType | string | undefined;
140
+ }
141
+ export declare namespace DimensionMapping {
142
+
143
+ const filterSensitiveLog: (obj: DimensionMapping) => any;
144
+ }
145
+ export declare enum MeasureValueType {
146
+ BIGINT = "BIGINT",
147
+ BOOLEAN = "BOOLEAN",
148
+ DOUBLE = "DOUBLE",
149
+ MULTI = "MULTI",
150
+ VARCHAR = "VARCHAR"
151
+ }
152
+ export declare enum ScalarMeasureValueType {
153
+ BIGINT = "BIGINT",
154
+ BOOLEAN = "BOOLEAN",
155
+ DOUBLE = "DOUBLE",
156
+ VARCHAR = "VARCHAR"
157
+ }
158
+
159
+ export interface MultiMeasureAttributeMapping {
160
+
161
+ SourceColumn: string | undefined;
162
+
163
+ TargetMultiMeasureAttributeName?: string;
164
+
165
+ MeasureValueType: ScalarMeasureValueType | string | undefined;
166
+ }
167
+ export declare namespace MultiMeasureAttributeMapping {
168
+
169
+ const filterSensitiveLog: (obj: MultiMeasureAttributeMapping) => any;
170
+ }
171
+
172
+ export interface MixedMeasureMapping {
173
+
174
+ MeasureName?: string;
175
+
176
+ SourceColumn?: string;
177
+
178
+ TargetMeasureName?: string;
179
+
180
+ MeasureValueType: MeasureValueType | string | undefined;
181
+
182
+ MultiMeasureAttributeMappings?: MultiMeasureAttributeMapping[];
183
+ }
184
+ export declare namespace MixedMeasureMapping {
185
+
186
+ const filterSensitiveLog: (obj: MixedMeasureMapping) => any;
187
+ }
188
+
189
+ export interface MultiMeasureMappings {
190
+
191
+ TargetMultiMeasureName?: string;
192
+
193
+ MultiMeasureAttributeMappings: MultiMeasureAttributeMapping[] | undefined;
194
+ }
195
+ export declare namespace MultiMeasureMappings {
196
+
197
+ const filterSensitiveLog: (obj: MultiMeasureMappings) => any;
198
+ }
199
+
200
+ export interface TimestreamConfiguration {
201
+
202
+ DatabaseName: string | undefined;
203
+
204
+ TableName: string | undefined;
205
+
206
+ TimeColumn: string | undefined;
207
+
208
+ DimensionMappings: DimensionMapping[] | undefined;
209
+
210
+ MultiMeasureMappings?: MultiMeasureMappings;
211
+
212
+ MixedMeasureMappings?: MixedMeasureMapping[];
213
+
214
+ MeasureNameColumn?: string;
215
+ }
216
+ export declare namespace TimestreamConfiguration {
217
+
218
+ const filterSensitiveLog: (obj: TimestreamConfiguration) => any;
219
+ }
220
+
221
+ export interface TargetConfiguration {
222
+
223
+ TimestreamConfiguration: TimestreamConfiguration | undefined;
224
+ }
225
+ export declare namespace TargetConfiguration {
226
+
227
+ const filterSensitiveLog: (obj: TargetConfiguration) => any;
228
+ }
229
+ export interface CreateScheduledQueryRequest {
230
+
231
+ Name: string | undefined;
232
+
233
+ QueryString: string | undefined;
234
+
235
+ ScheduleConfiguration: ScheduleConfiguration | undefined;
236
+
237
+ NotificationConfiguration: NotificationConfiguration | undefined;
238
+
239
+ TargetConfiguration?: TargetConfiguration;
240
+
241
+ ClientToken?: string;
242
+
243
+ ScheduledQueryExecutionRoleArn: string | undefined;
244
+
245
+ Tags?: Tag[];
246
+
247
+ KmsKeyId?: string;
248
+
249
+ ErrorReportConfiguration: ErrorReportConfiguration | undefined;
250
+ }
251
+ export declare namespace CreateScheduledQueryRequest {
252
+
253
+ const filterSensitiveLog: (obj: CreateScheduledQueryRequest) => any;
254
+ }
255
+ export interface CreateScheduledQueryResponse {
256
+
257
+ Arn: string | undefined;
258
+ }
259
+ export declare namespace CreateScheduledQueryResponse {
260
+
261
+ const filterSensitiveLog: (obj: CreateScheduledQueryResponse) => any;
262
+ }
263
+
264
+ export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
265
+ name: "ServiceQuotaExceededException";
266
+ $fault: "client";
267
+ Message?: string;
268
+ }
269
+ export interface DeleteScheduledQueryRequest {
270
+
271
+ ScheduledQueryArn: string | undefined;
272
+ }
273
+ export declare namespace DeleteScheduledQueryRequest {
274
+
275
+ const filterSensitiveLog: (obj: DeleteScheduledQueryRequest) => any;
276
+ }
277
+
278
+ export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
279
+ name: "ResourceNotFoundException";
280
+ $fault: "client";
281
+ Message?: string;
282
+
283
+ ScheduledQueryArn?: string;
284
+ }
285
+ export interface DescribeEndpointsRequest {
286
+ }
287
+ export declare namespace DescribeEndpointsRequest {
288
+
289
+ const filterSensitiveLog: (obj: DescribeEndpointsRequest) => any;
290
+ }
291
+
292
+ export interface Endpoint {
293
+
294
+ Address: string | undefined;
295
+
296
+ CachePeriodInMinutes: number | undefined;
297
+ }
298
+ export declare namespace Endpoint {
299
+
300
+ const filterSensitiveLog: (obj: Endpoint) => any;
301
+ }
302
+ export interface DescribeEndpointsResponse {
303
+
304
+ Endpoints: Endpoint[] | undefined;
305
+ }
306
+ export declare namespace DescribeEndpointsResponse {
307
+
308
+ const filterSensitiveLog: (obj: DescribeEndpointsResponse) => any;
309
+ }
310
+ export interface DescribeScheduledQueryRequest {
311
+
312
+ ScheduledQueryArn: string | undefined;
313
+ }
314
+ export declare namespace DescribeScheduledQueryRequest {
315
+
316
+ const filterSensitiveLog: (obj: DescribeScheduledQueryRequest) => any;
317
+ }
318
+
319
+ export interface S3ReportLocation {
320
+
321
+ BucketName?: string;
322
+
323
+ ObjectKey?: string;
324
+ }
325
+ export declare namespace S3ReportLocation {
326
+
327
+ const filterSensitiveLog: (obj: S3ReportLocation) => any;
328
+ }
329
+
330
+ export interface ErrorReportLocation {
331
+
332
+ S3ReportLocation?: S3ReportLocation;
333
+ }
334
+ export declare namespace ErrorReportLocation {
335
+
336
+ const filterSensitiveLog: (obj: ErrorReportLocation) => any;
337
+ }
338
+
339
+ export interface ExecutionStats {
340
+
341
+ ExecutionTimeInMillis?: number;
342
+
343
+ DataWrites?: number;
344
+
345
+ BytesMetered?: number;
346
+
347
+ RecordsIngested?: number;
348
+
349
+ QueryResultRows?: number;
350
+ }
351
+ export declare namespace ExecutionStats {
352
+
353
+ const filterSensitiveLog: (obj: ExecutionStats) => any;
354
+ }
355
+ export declare enum ScheduledQueryRunStatus {
356
+ AUTO_TRIGGER_FAILURE = "AUTO_TRIGGER_FAILURE",
357
+ AUTO_TRIGGER_SUCCESS = "AUTO_TRIGGER_SUCCESS",
358
+ MANUAL_TRIGGER_FAILURE = "MANUAL_TRIGGER_FAILURE",
359
+ MANUAL_TRIGGER_SUCCESS = "MANUAL_TRIGGER_SUCCESS"
360
+ }
361
+
362
+ export interface ScheduledQueryRunSummary {
363
+
364
+ InvocationTime?: Date;
365
+
366
+ TriggerTime?: Date;
367
+
368
+ RunStatus?: ScheduledQueryRunStatus | string;
369
+
370
+ ExecutionStats?: ExecutionStats;
371
+
372
+ ErrorReportLocation?: ErrorReportLocation;
373
+
374
+ FailureReason?: string;
375
+ }
376
+ export declare namespace ScheduledQueryRunSummary {
377
+
378
+ const filterSensitiveLog: (obj: ScheduledQueryRunSummary) => any;
379
+ }
380
+ export declare enum ScheduledQueryState {
381
+ DISABLED = "DISABLED",
382
+ ENABLED = "ENABLED"
383
+ }
384
+
385
+ export interface ScheduledQueryDescription {
386
+
387
+ Arn: string | undefined;
388
+
389
+ Name: string | undefined;
390
+
391
+ QueryString: string | undefined;
392
+
393
+ CreationTime?: Date;
394
+
395
+ State: ScheduledQueryState | string | undefined;
396
+
397
+ PreviousInvocationTime?: Date;
398
+
399
+ NextInvocationTime?: Date;
400
+
401
+ ScheduleConfiguration: ScheduleConfiguration | undefined;
402
+
403
+ NotificationConfiguration: NotificationConfiguration | undefined;
404
+
405
+ TargetConfiguration?: TargetConfiguration;
406
+
407
+ ScheduledQueryExecutionRoleArn?: string;
408
+
409
+ KmsKeyId?: string;
410
+
411
+ ErrorReportConfiguration?: ErrorReportConfiguration;
412
+
413
+ LastRunSummary?: ScheduledQueryRunSummary;
414
+
415
+ RecentlyFailedRuns?: ScheduledQueryRunSummary[];
416
+ }
417
+ export declare namespace ScheduledQueryDescription {
418
+
419
+ const filterSensitiveLog: (obj: ScheduledQueryDescription) => any;
420
+ }
421
+ export interface DescribeScheduledQueryResponse {
422
+
423
+ ScheduledQuery: ScheduledQueryDescription | undefined;
424
+ }
425
+ export declare namespace DescribeScheduledQueryResponse {
426
+
427
+ const filterSensitiveLog: (obj: DescribeScheduledQueryResponse) => any;
428
+ }
429
+ export interface ExecuteScheduledQueryRequest {
430
+
431
+ ScheduledQueryArn: string | undefined;
432
+
433
+ InvocationTime: Date | undefined;
434
+
435
+ ClientToken?: string;
436
+ }
437
+ export declare namespace ExecuteScheduledQueryRequest {
438
+
439
+ const filterSensitiveLog: (obj: ExecuteScheduledQueryRequest) => any;
440
+ }
441
+ export interface ListScheduledQueriesRequest {
442
+
443
+ MaxResults?: number;
444
+
445
+ NextToken?: string;
446
+ }
447
+ export declare namespace ListScheduledQueriesRequest {
448
+
449
+ const filterSensitiveLog: (obj: ListScheduledQueriesRequest) => any;
450
+ }
451
+
452
+ export interface TimestreamDestination {
453
+
454
+ DatabaseName?: string;
455
+
456
+ TableName?: string;
457
+ }
458
+ export declare namespace TimestreamDestination {
459
+
460
+ const filterSensitiveLog: (obj: TimestreamDestination) => any;
461
+ }
462
+
463
+ export interface TargetDestination {
464
+
465
+ TimestreamDestination?: TimestreamDestination;
466
+ }
467
+ export declare namespace TargetDestination {
468
+
469
+ const filterSensitiveLog: (obj: TargetDestination) => any;
470
+ }
471
+
472
+ export interface ScheduledQuery {
473
+
474
+ Arn: string | undefined;
475
+
476
+ Name: string | undefined;
477
+
478
+ CreationTime?: Date;
479
+
480
+ State: ScheduledQueryState | string | undefined;
481
+
482
+ PreviousInvocationTime?: Date;
483
+
484
+ NextInvocationTime?: Date;
485
+
486
+ ErrorReportConfiguration?: ErrorReportConfiguration;
487
+
488
+ TargetDestination?: TargetDestination;
489
+
490
+ LastRunStatus?: ScheduledQueryRunStatus | string;
491
+ }
492
+ export declare namespace ScheduledQuery {
493
+
494
+ const filterSensitiveLog: (obj: ScheduledQuery) => any;
495
+ }
496
+ export interface ListScheduledQueriesResponse {
497
+
498
+ ScheduledQueries: ScheduledQuery[] | undefined;
499
+
500
+ NextToken?: string;
501
+ }
502
+ export declare namespace ListScheduledQueriesResponse {
503
+
504
+ const filterSensitiveLog: (obj: ListScheduledQueriesResponse) => any;
505
+ }
506
+ export interface ListTagsForResourceRequest {
507
+
508
+ ResourceARN: string | undefined;
509
+
510
+ MaxResults?: number;
511
+
512
+ NextToken?: string;
513
+ }
514
+ export declare namespace ListTagsForResourceRequest {
515
+
516
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
517
+ }
518
+ export interface ListTagsForResourceResponse {
519
+
520
+ Tags: Tag[] | undefined;
521
+
522
+ NextToken?: string;
523
+ }
524
+ export declare namespace ListTagsForResourceResponse {
525
+
526
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
527
+ }
528
+ export interface PrepareQueryRequest {
529
+
530
+ QueryString: string | undefined;
531
+
532
+ ValidateOnly?: boolean;
533
+ }
534
+ export declare namespace PrepareQueryRequest {
535
+
536
+ const filterSensitiveLog: (obj: PrepareQueryRequest) => any;
537
+ }
538
+
539
+ export interface QueryExecutionException extends __SmithyException, $MetadataBearer {
540
+ name: "QueryExecutionException";
541
+ $fault: "client";
542
+ Message?: string;
543
+ }
544
+ export interface QueryRequest {
545
+
546
+ QueryString: string | undefined;
547
+
548
+ ClientToken?: string;
549
+
550
+ NextToken?: string;
551
+
552
+ MaxRows?: number;
553
+ }
554
+ export declare namespace QueryRequest {
555
+
556
+ const filterSensitiveLog: (obj: QueryRequest) => any;
557
+ }
558
+
559
+ export interface QueryStatus {
560
+
561
+ ProgressPercentage?: number;
562
+
563
+ CumulativeBytesScanned?: number;
564
+
565
+ CumulativeBytesMetered?: number;
566
+ }
567
+ export declare namespace QueryStatus {
568
+
569
+ const filterSensitiveLog: (obj: QueryStatus) => any;
570
+ }
571
+ export interface TagResourceRequest {
572
+
573
+ ResourceARN: string | undefined;
574
+
575
+ Tags: Tag[] | undefined;
576
+ }
577
+ export declare namespace TagResourceRequest {
578
+
579
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
580
+ }
581
+ export interface TagResourceResponse {
582
+ }
583
+ export declare namespace TagResourceResponse {
584
+
585
+ const filterSensitiveLog: (obj: TagResourceResponse) => any;
586
+ }
587
+ export interface UntagResourceRequest {
588
+
589
+ ResourceARN: string | undefined;
590
+
591
+ TagKeys: string[] | undefined;
592
+ }
593
+ export declare namespace UntagResourceRequest {
594
+
595
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
596
+ }
597
+ export interface UntagResourceResponse {
598
+ }
599
+ export declare namespace UntagResourceResponse {
600
+
601
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
602
+ }
603
+ export interface UpdateScheduledQueryRequest {
604
+
605
+ ScheduledQueryArn: string | undefined;
606
+
607
+ State: ScheduledQueryState | string | undefined;
608
+ }
609
+ export declare namespace UpdateScheduledQueryRequest {
610
+
611
+ const filterSensitiveLog: (obj: UpdateScheduledQueryRequest) => any;
612
+ }
613
+
614
+ export interface ColumnInfo {
615
+
616
+ Name?: string;
617
+
618
+ Type: Type | undefined;
619
+ }
620
+ export declare namespace ColumnInfo {
621
+
622
+ const filterSensitiveLog: (obj: ColumnInfo) => any;
623
+ }
624
+
625
+ export interface Type {
626
+
627
+ ScalarType?: ScalarType | string;
628
+
629
+ ArrayColumnInfo?: ColumnInfo;
630
+
631
+ TimeSeriesMeasureValueColumnInfo?: ColumnInfo;
632
+
633
+ RowColumnInfo?: ColumnInfo[];
634
+ }
635
+ export declare namespace Type {
636
+
637
+ const filterSensitiveLog: (obj: Type) => any;
638
+ }
639
+
640
+ export interface Datum {
641
+
642
+ ScalarValue?: string;
643
+
644
+ TimeSeriesValue?: TimeSeriesDataPoint[];
645
+
646
+ ArrayValue?: Datum[];
647
+
648
+ RowValue?: Row;
649
+
650
+ NullValue?: boolean;
651
+ }
652
+ export declare namespace Datum {
653
+
654
+ const filterSensitiveLog: (obj: Datum) => any;
655
+ }
656
+
657
+ export interface ParameterMapping {
658
+
659
+ Name: string | undefined;
660
+
661
+ Type: Type | undefined;
662
+ }
663
+ export declare namespace ParameterMapping {
664
+
665
+ const filterSensitiveLog: (obj: ParameterMapping) => any;
666
+ }
667
+
668
+ export interface SelectColumn {
669
+
670
+ Name?: string;
671
+
672
+ Type?: Type;
673
+
674
+ DatabaseName?: string;
675
+
676
+ TableName?: string;
677
+
678
+ Aliased?: boolean;
679
+ }
680
+ export declare namespace SelectColumn {
681
+
682
+ const filterSensitiveLog: (obj: SelectColumn) => any;
683
+ }
684
+
685
+ export interface TimeSeriesDataPoint {
686
+
687
+ Time: string | undefined;
688
+
689
+ Value: Datum | undefined;
690
+ }
691
+ export declare namespace TimeSeriesDataPoint {
692
+
693
+ const filterSensitiveLog: (obj: TimeSeriesDataPoint) => any;
694
+ }
695
+
696
+ export interface Row {
697
+
698
+ Data: Datum[] | undefined;
699
+ }
700
+ export declare namespace Row {
701
+
702
+ const filterSensitiveLog: (obj: Row) => any;
703
+ }
704
+ export interface QueryResponse {
705
+
706
+ QueryId: string | undefined;
707
+
708
+ NextToken?: string;
709
+
710
+ Rows: Row[] | undefined;
711
+
712
+ ColumnInfo: ColumnInfo[] | undefined;
713
+
714
+ QueryStatus?: QueryStatus;
715
+ }
716
+ export declare namespace QueryResponse {
717
+
718
+ const filterSensitiveLog: (obj: QueryResponse) => any;
719
+ }
720
+ export interface PrepareQueryResponse {
721
+
722
+ QueryString: string | undefined;
723
+
724
+ Columns: SelectColumn[] | undefined;
725
+
726
+ Parameters: ParameterMapping[] | undefined;
727
+ }
728
+ export declare namespace PrepareQueryResponse {
729
+
730
+ const filterSensitiveLog: (obj: PrepareQueryResponse) => any;
731
+ }
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { TimestreamQuery } from "../TimestreamQuery";
3
+ import { TimestreamQueryClient } from "../TimestreamQueryClient";
4
+ export interface TimestreamQueryPaginationConfiguration extends PaginationConfiguration {
5
+ client: TimestreamQuery | TimestreamQueryClient;
6
+ }