@aws-sdk/client-timestream-query 3.934.0 → 3.936.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.
@@ -0,0 +1,161 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ScalarType: {
6
+ readonly BIGINT: "BIGINT";
7
+ readonly BOOLEAN: "BOOLEAN";
8
+ readonly DATE: "DATE";
9
+ readonly DOUBLE: "DOUBLE";
10
+ readonly INTEGER: "INTEGER";
11
+ readonly INTERVAL_DAY_TO_SECOND: "INTERVAL_DAY_TO_SECOND";
12
+ readonly INTERVAL_YEAR_TO_MONTH: "INTERVAL_YEAR_TO_MONTH";
13
+ readonly TIME: "TIME";
14
+ readonly TIMESTAMP: "TIMESTAMP";
15
+ readonly UNKNOWN: "UNKNOWN";
16
+ readonly VARCHAR: "VARCHAR";
17
+ };
18
+ /**
19
+ * @public
20
+ */
21
+ export type ScalarType = (typeof ScalarType)[keyof typeof ScalarType];
22
+ /**
23
+ * @public
24
+ * @enum
25
+ */
26
+ export declare const ComputeMode: {
27
+ readonly ON_DEMAND: "ON_DEMAND";
28
+ readonly PROVISIONED: "PROVISIONED";
29
+ };
30
+ /**
31
+ * @public
32
+ */
33
+ export type ComputeMode = (typeof ComputeMode)[keyof typeof ComputeMode];
34
+ /**
35
+ * @public
36
+ * @enum
37
+ */
38
+ export declare const S3EncryptionOption: {
39
+ readonly SSE_KMS: "SSE_KMS";
40
+ readonly SSE_S3: "SSE_S3";
41
+ };
42
+ /**
43
+ * @public
44
+ */
45
+ export type S3EncryptionOption = (typeof S3EncryptionOption)[keyof typeof S3EncryptionOption];
46
+ /**
47
+ * @public
48
+ * @enum
49
+ */
50
+ export declare const DimensionValueType: {
51
+ readonly VARCHAR: "VARCHAR";
52
+ };
53
+ /**
54
+ * @public
55
+ */
56
+ export type DimensionValueType = (typeof DimensionValueType)[keyof typeof DimensionValueType];
57
+ /**
58
+ * @public
59
+ * @enum
60
+ */
61
+ export declare const MeasureValueType: {
62
+ readonly BIGINT: "BIGINT";
63
+ readonly BOOLEAN: "BOOLEAN";
64
+ readonly DOUBLE: "DOUBLE";
65
+ readonly MULTI: "MULTI";
66
+ readonly VARCHAR: "VARCHAR";
67
+ };
68
+ /**
69
+ * @public
70
+ */
71
+ export type MeasureValueType = (typeof MeasureValueType)[keyof typeof MeasureValueType];
72
+ /**
73
+ * @public
74
+ * @enum
75
+ */
76
+ export declare const ScalarMeasureValueType: {
77
+ readonly BIGINT: "BIGINT";
78
+ readonly BOOLEAN: "BOOLEAN";
79
+ readonly DOUBLE: "DOUBLE";
80
+ readonly TIMESTAMP: "TIMESTAMP";
81
+ readonly VARCHAR: "VARCHAR";
82
+ };
83
+ /**
84
+ * @public
85
+ */
86
+ export type ScalarMeasureValueType = (typeof ScalarMeasureValueType)[keyof typeof ScalarMeasureValueType];
87
+ /**
88
+ * @public
89
+ * @enum
90
+ */
91
+ export declare const LastUpdateStatus: {
92
+ readonly FAILED: "FAILED";
93
+ readonly PENDING: "PENDING";
94
+ readonly SUCCEEDED: "SUCCEEDED";
95
+ };
96
+ /**
97
+ * @public
98
+ */
99
+ export type LastUpdateStatus = (typeof LastUpdateStatus)[keyof typeof LastUpdateStatus];
100
+ /**
101
+ * @public
102
+ * @enum
103
+ */
104
+ export declare const QueryPricingModel: {
105
+ readonly BYTES_SCANNED: "BYTES_SCANNED";
106
+ readonly COMPUTE_UNITS: "COMPUTE_UNITS";
107
+ };
108
+ /**
109
+ * @public
110
+ */
111
+ export type QueryPricingModel = (typeof QueryPricingModel)[keyof typeof QueryPricingModel];
112
+ /**
113
+ * @public
114
+ * @enum
115
+ */
116
+ export declare const ScheduledQueryRunStatus: {
117
+ readonly AUTO_TRIGGER_FAILURE: "AUTO_TRIGGER_FAILURE";
118
+ readonly AUTO_TRIGGER_SUCCESS: "AUTO_TRIGGER_SUCCESS";
119
+ readonly MANUAL_TRIGGER_FAILURE: "MANUAL_TRIGGER_FAILURE";
120
+ readonly MANUAL_TRIGGER_SUCCESS: "MANUAL_TRIGGER_SUCCESS";
121
+ };
122
+ /**
123
+ * @public
124
+ */
125
+ export type ScheduledQueryRunStatus = (typeof ScheduledQueryRunStatus)[keyof typeof ScheduledQueryRunStatus];
126
+ /**
127
+ * @public
128
+ * @enum
129
+ */
130
+ export declare const ScheduledQueryState: {
131
+ readonly DISABLED: "DISABLED";
132
+ readonly ENABLED: "ENABLED";
133
+ };
134
+ /**
135
+ * @public
136
+ */
137
+ export type ScheduledQueryState = (typeof ScheduledQueryState)[keyof typeof ScheduledQueryState];
138
+ /**
139
+ * @public
140
+ * @enum
141
+ */
142
+ export declare const ScheduledQueryInsightsMode: {
143
+ readonly DISABLED: "DISABLED";
144
+ readonly ENABLED_WITH_RATE_CONTROL: "ENABLED_WITH_RATE_CONTROL";
145
+ };
146
+ /**
147
+ * @public
148
+ */
149
+ export type ScheduledQueryInsightsMode = (typeof ScheduledQueryInsightsMode)[keyof typeof ScheduledQueryInsightsMode];
150
+ /**
151
+ * @public
152
+ * @enum
153
+ */
154
+ export declare const QueryInsightsMode: {
155
+ readonly DISABLED: "DISABLED";
156
+ readonly ENABLED_WITH_RATE_CONTROL: "ENABLED_WITH_RATE_CONTROL";
157
+ };
158
+ /**
159
+ * @public
160
+ */
161
+ export type QueryInsightsMode = (typeof QueryInsightsMode)[keyof typeof QueryInsightsMode];
@@ -0,0 +1,125 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { TimestreamQueryServiceException as __BaseException } from "./TimestreamQueryServiceException";
3
+ /**
4
+ * <p>You do not have the necessary permissions to access the account settings.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ Message?: string | undefined;
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
+ }
16
+ /**
17
+ * <p>An internal server error occurred while processing the request.</p>
18
+ * @public
19
+ */
20
+ export declare class InternalServerException extends __BaseException {
21
+ readonly name: "InternalServerException";
22
+ readonly $fault: "server";
23
+ Message?: string | undefined;
24
+ /**
25
+ * @internal
26
+ */
27
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
28
+ }
29
+ /**
30
+ * <p>The requested endpoint is invalid.</p>
31
+ * @public
32
+ */
33
+ export declare class InvalidEndpointException extends __BaseException {
34
+ readonly name: "InvalidEndpointException";
35
+ readonly $fault: "client";
36
+ Message?: string | undefined;
37
+ /**
38
+ * @internal
39
+ */
40
+ constructor(opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>);
41
+ }
42
+ /**
43
+ * <p>The request was throttled due to excessive requests.</p>
44
+ * @public
45
+ */
46
+ export declare class ThrottlingException extends __BaseException {
47
+ readonly name: "ThrottlingException";
48
+ readonly $fault: "client";
49
+ Message?: string | undefined;
50
+ /**
51
+ * @internal
52
+ */
53
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
54
+ }
55
+ /**
56
+ * <p> Invalid or malformed request. </p>
57
+ * @public
58
+ */
59
+ export declare class ValidationException extends __BaseException {
60
+ readonly name: "ValidationException";
61
+ readonly $fault: "client";
62
+ Message?: string | undefined;
63
+ /**
64
+ * @internal
65
+ */
66
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
67
+ }
68
+ /**
69
+ * <p> Unable to poll results for a cancelled query. </p>
70
+ * @public
71
+ */
72
+ export declare class ConflictException extends __BaseException {
73
+ readonly name: "ConflictException";
74
+ readonly $fault: "client";
75
+ Message?: string | undefined;
76
+ /**
77
+ * @internal
78
+ */
79
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
80
+ }
81
+ /**
82
+ * <p>You have exceeded the service quota.</p>
83
+ * @public
84
+ */
85
+ export declare class ServiceQuotaExceededException extends __BaseException {
86
+ readonly name: "ServiceQuotaExceededException";
87
+ readonly $fault: "client";
88
+ Message?: string | undefined;
89
+ /**
90
+ * @internal
91
+ */
92
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
93
+ }
94
+ /**
95
+ * <p>The requested resource could not be found.</p>
96
+ * @public
97
+ */
98
+ export declare class ResourceNotFoundException extends __BaseException {
99
+ readonly name: "ResourceNotFoundException";
100
+ readonly $fault: "client";
101
+ Message?: string | undefined;
102
+ /**
103
+ * <p>The ARN of the scheduled query.</p>
104
+ * @public
105
+ */
106
+ ScheduledQueryArn?: string | undefined;
107
+ /**
108
+ * @internal
109
+ */
110
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
111
+ }
112
+ /**
113
+ * <p>
114
+ * Timestream was unable to run the query successfully. </p>
115
+ * @public
116
+ */
117
+ export declare class QueryExecutionException extends __BaseException {
118
+ readonly name: "QueryExecutionException";
119
+ readonly $fault: "client";
120
+ Message?: string | undefined;
121
+ /**
122
+ * @internal
123
+ */
124
+ constructor(opts: __ExceptionOptionType<QueryExecutionException, __BaseException>);
125
+ }
@@ -1,18 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { TimestreamQueryServiceException as __BaseException } from "./TimestreamQueryServiceException";
3
- /**
4
- * <p>You do not have the necessary permissions to access the account settings.</p>
5
- * @public
6
- */
7
- export declare class AccessDeniedException extends __BaseException {
8
- readonly name: "AccessDeniedException";
9
- readonly $fault: "client";
10
- Message?: string | undefined;
11
- /**
12
- * @internal
13
- */
14
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
- }
1
+ import { ComputeMode, DimensionValueType, LastUpdateStatus, MeasureValueType, QueryInsightsMode, QueryPricingModel, S3EncryptionOption, ScalarMeasureValueType, ScalarType, ScheduledQueryInsightsMode, ScheduledQueryRunStatus, ScheduledQueryState } from "./enums";
16
2
  /**
17
3
  * <p>Details on SNS that are required to send the notification.</p>
18
4
  * @public
@@ -62,116 +48,6 @@ export interface CancelQueryResponse {
62
48
  */
63
49
  CancellationMessage?: string | undefined;
64
50
  }
65
- /**
66
- * <p>An internal server error occurred while processing the request.</p>
67
- * @public
68
- */
69
- export declare class InternalServerException extends __BaseException {
70
- readonly name: "InternalServerException";
71
- readonly $fault: "server";
72
- Message?: string | undefined;
73
- /**
74
- * @internal
75
- */
76
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
77
- }
78
- /**
79
- * <p>The requested endpoint is invalid.</p>
80
- * @public
81
- */
82
- export declare class InvalidEndpointException extends __BaseException {
83
- readonly name: "InvalidEndpointException";
84
- readonly $fault: "client";
85
- Message?: string | undefined;
86
- /**
87
- * @internal
88
- */
89
- constructor(opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>);
90
- }
91
- /**
92
- * <p>The request was throttled due to excessive requests.</p>
93
- * @public
94
- */
95
- export declare class ThrottlingException extends __BaseException {
96
- readonly name: "ThrottlingException";
97
- readonly $fault: "client";
98
- Message?: string | undefined;
99
- /**
100
- * @internal
101
- */
102
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
103
- }
104
- /**
105
- * <p> Invalid or malformed request. </p>
106
- * @public
107
- */
108
- export declare class ValidationException extends __BaseException {
109
- readonly name: "ValidationException";
110
- readonly $fault: "client";
111
- Message?: string | undefined;
112
- /**
113
- * @internal
114
- */
115
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
116
- }
117
- /**
118
- * @public
119
- * @enum
120
- */
121
- export declare const ScalarType: {
122
- readonly BIGINT: "BIGINT";
123
- readonly BOOLEAN: "BOOLEAN";
124
- readonly DATE: "DATE";
125
- readonly DOUBLE: "DOUBLE";
126
- readonly INTEGER: "INTEGER";
127
- readonly INTERVAL_DAY_TO_SECOND: "INTERVAL_DAY_TO_SECOND";
128
- readonly INTERVAL_YEAR_TO_MONTH: "INTERVAL_YEAR_TO_MONTH";
129
- readonly TIME: "TIME";
130
- readonly TIMESTAMP: "TIMESTAMP";
131
- readonly UNKNOWN: "UNKNOWN";
132
- readonly VARCHAR: "VARCHAR";
133
- };
134
- /**
135
- * @public
136
- */
137
- export type ScalarType = (typeof ScalarType)[keyof typeof ScalarType];
138
- /**
139
- * @public
140
- * @enum
141
- */
142
- export declare const ComputeMode: {
143
- readonly ON_DEMAND: "ON_DEMAND";
144
- readonly PROVISIONED: "PROVISIONED";
145
- };
146
- /**
147
- * @public
148
- */
149
- export type ComputeMode = (typeof ComputeMode)[keyof typeof ComputeMode];
150
- /**
151
- * <p> Unable to poll results for a cancelled query. </p>
152
- * @public
153
- */
154
- export declare class ConflictException extends __BaseException {
155
- readonly name: "ConflictException";
156
- readonly $fault: "client";
157
- Message?: string | undefined;
158
- /**
159
- * @internal
160
- */
161
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
162
- }
163
- /**
164
- * @public
165
- * @enum
166
- */
167
- export declare const S3EncryptionOption: {
168
- readonly SSE_KMS: "SSE_KMS";
169
- readonly SSE_S3: "SSE_S3";
170
- };
171
- /**
172
- * @public
173
- */
174
- export type S3EncryptionOption = (typeof S3EncryptionOption)[keyof typeof S3EncryptionOption];
175
51
  /**
176
52
  * <p>Details on S3 location for error reports that result from running a query. </p>
177
53
  * @public
@@ -249,17 +125,6 @@ export interface Tag {
249
125
  */
250
126
  Value: string | undefined;
251
127
  }
252
- /**
253
- * @public
254
- * @enum
255
- */
256
- export declare const DimensionValueType: {
257
- readonly VARCHAR: "VARCHAR";
258
- };
259
- /**
260
- * @public
261
- */
262
- export type DimensionValueType = (typeof DimensionValueType)[keyof typeof DimensionValueType];
263
128
  /**
264
129
  * <p>This type is used to map column(s) from the query result to a dimension in the
265
130
  * destination table.</p>
@@ -277,36 +142,6 @@ export interface DimensionMapping {
277
142
  */
278
143
  DimensionValueType: DimensionValueType | undefined;
279
144
  }
280
- /**
281
- * @public
282
- * @enum
283
- */
284
- export declare const MeasureValueType: {
285
- readonly BIGINT: "BIGINT";
286
- readonly BOOLEAN: "BOOLEAN";
287
- readonly DOUBLE: "DOUBLE";
288
- readonly MULTI: "MULTI";
289
- readonly VARCHAR: "VARCHAR";
290
- };
291
- /**
292
- * @public
293
- */
294
- export type MeasureValueType = (typeof MeasureValueType)[keyof typeof MeasureValueType];
295
- /**
296
- * @public
297
- * @enum
298
- */
299
- export declare const ScalarMeasureValueType: {
300
- readonly BIGINT: "BIGINT";
301
- readonly BOOLEAN: "BOOLEAN";
302
- readonly DOUBLE: "DOUBLE";
303
- readonly TIMESTAMP: "TIMESTAMP";
304
- readonly VARCHAR: "VARCHAR";
305
- };
306
- /**
307
- * @public
308
- */
309
- export type ScalarMeasureValueType = (typeof ScalarMeasureValueType)[keyof typeof ScalarMeasureValueType];
310
145
  /**
311
146
  * <p>Attribute mapping for MULTI value measures.</p>
312
147
  * @public
@@ -540,19 +375,6 @@ export interface CreateScheduledQueryResponse {
540
375
  */
541
376
  Arn: string | undefined;
542
377
  }
543
- /**
544
- * <p>You have exceeded the service quota.</p>
545
- * @public
546
- */
547
- export declare class ServiceQuotaExceededException extends __BaseException {
548
- readonly name: "ServiceQuotaExceededException";
549
- readonly $fault: "client";
550
- Message?: string | undefined;
551
- /**
552
- * @internal
553
- */
554
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
555
- }
556
378
  /**
557
379
  * @public
558
380
  */
@@ -563,42 +385,11 @@ export interface DeleteScheduledQueryRequest {
563
385
  */
564
386
  ScheduledQueryArn: string | undefined;
565
387
  }
566
- /**
567
- * <p>The requested resource could not be found.</p>
568
- * @public
569
- */
570
- export declare class ResourceNotFoundException extends __BaseException {
571
- readonly name: "ResourceNotFoundException";
572
- readonly $fault: "client";
573
- Message?: string | undefined;
574
- /**
575
- * <p>The ARN of the scheduled query.</p>
576
- * @public
577
- */
578
- ScheduledQueryArn?: string | undefined;
579
- /**
580
- * @internal
581
- */
582
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
583
- }
584
388
  /**
585
389
  * @public
586
390
  */
587
391
  export interface DescribeAccountSettingsRequest {
588
392
  }
589
- /**
590
- * @public
591
- * @enum
592
- */
593
- export declare const LastUpdateStatus: {
594
- readonly FAILED: "FAILED";
595
- readonly PENDING: "PENDING";
596
- readonly SUCCEEDED: "SUCCEEDED";
597
- };
598
- /**
599
- * @public
600
- */
601
- export type LastUpdateStatus = (typeof LastUpdateStatus)[keyof typeof LastUpdateStatus];
602
393
  /**
603
394
  * <p>Configuration object that contains the most recent account settings update, visible only if settings have been updated previously.</p>
604
395
  * @public
@@ -657,18 +448,6 @@ export interface QueryComputeResponse {
657
448
  */
658
449
  ProvisionedCapacity?: ProvisionedCapacityResponse | undefined;
659
450
  }
660
- /**
661
- * @public
662
- * @enum
663
- */
664
- export declare const QueryPricingModel: {
665
- readonly BYTES_SCANNED: "BYTES_SCANNED";
666
- readonly COMPUTE_UNITS: "COMPUTE_UNITS";
667
- };
668
- /**
669
- * @public
670
- */
671
- export type QueryPricingModel = (typeof QueryPricingModel)[keyof typeof QueryPricingModel];
672
451
  /**
673
452
  * @public
674
453
  */
@@ -938,20 +717,6 @@ export interface ScheduledQueryInsightsResponse {
938
717
  */
939
718
  OutputBytes?: number | undefined;
940
719
  }
941
- /**
942
- * @public
943
- * @enum
944
- */
945
- export declare const ScheduledQueryRunStatus: {
946
- readonly AUTO_TRIGGER_FAILURE: "AUTO_TRIGGER_FAILURE";
947
- readonly AUTO_TRIGGER_SUCCESS: "AUTO_TRIGGER_SUCCESS";
948
- readonly MANUAL_TRIGGER_FAILURE: "MANUAL_TRIGGER_FAILURE";
949
- readonly MANUAL_TRIGGER_SUCCESS: "MANUAL_TRIGGER_SUCCESS";
950
- };
951
- /**
952
- * @public
953
- */
954
- export type ScheduledQueryRunStatus = (typeof ScheduledQueryRunStatus)[keyof typeof ScheduledQueryRunStatus];
955
720
  /**
956
721
  * <p>Run summary for the scheduled query</p>
957
722
  * @public
@@ -996,18 +761,6 @@ export interface ScheduledQueryRunSummary {
996
761
  */
997
762
  FailureReason?: string | undefined;
998
763
  }
999
- /**
1000
- * @public
1001
- * @enum
1002
- */
1003
- export declare const ScheduledQueryState: {
1004
- readonly DISABLED: "DISABLED";
1005
- readonly ENABLED: "ENABLED";
1006
- };
1007
- /**
1008
- * @public
1009
- */
1010
- export type ScheduledQueryState = (typeof ScheduledQueryState)[keyof typeof ScheduledQueryState];
1011
764
  /**
1012
765
  * <p>Structure that describes scheduled query.</p>
1013
766
  * @public
@@ -1099,18 +852,6 @@ export interface DescribeScheduledQueryResponse {
1099
852
  */
1100
853
  ScheduledQuery: ScheduledQueryDescription | undefined;
1101
854
  }
1102
- /**
1103
- * @public
1104
- * @enum
1105
- */
1106
- export declare const ScheduledQueryInsightsMode: {
1107
- readonly DISABLED: "DISABLED";
1108
- readonly ENABLED_WITH_RATE_CONTROL: "ENABLED_WITH_RATE_CONTROL";
1109
- };
1110
- /**
1111
- * @public
1112
- */
1113
- export type ScheduledQueryInsightsMode = (typeof ScheduledQueryInsightsMode)[keyof typeof ScheduledQueryInsightsMode];
1114
855
  /**
1115
856
  * <p>Encapsulates settings for enabling <code>QueryInsights</code> on an <code>ExecuteScheduledQueryRequest</code>.</p>
1116
857
  * @public
@@ -1344,32 +1085,6 @@ export interface ProvisionedCapacityRequest {
1344
1085
  */
1345
1086
  NotificationConfiguration?: AccountSettingsNotificationConfiguration | undefined;
1346
1087
  }
1347
- /**
1348
- * <p>
1349
- * Timestream was unable to run the query successfully. </p>
1350
- * @public
1351
- */
1352
- export declare class QueryExecutionException extends __BaseException {
1353
- readonly name: "QueryExecutionException";
1354
- readonly $fault: "client";
1355
- Message?: string | undefined;
1356
- /**
1357
- * @internal
1358
- */
1359
- constructor(opts: __ExceptionOptionType<QueryExecutionException, __BaseException>);
1360
- }
1361
- /**
1362
- * @public
1363
- * @enum
1364
- */
1365
- export declare const QueryInsightsMode: {
1366
- readonly DISABLED: "DISABLED";
1367
- readonly ENABLED_WITH_RATE_CONTROL: "ENABLED_WITH_RATE_CONTROL";
1368
- };
1369
- /**
1370
- * @public
1371
- */
1372
- export type QueryInsightsMode = (typeof QueryInsightsMode)[keyof typeof QueryInsightsMode];
1373
1088
  /**
1374
1089
  * <p>
1375
1090
  * <code>QueryInsights</code> is a performance tuning feature that helps you optimize your queries, reducing costs and improving performance. With <code>QueryInsights</code>, you can assess the pruning efficiency of your queries and identify areas for improvement to enhance query performance. With <code>QueryInsights</code>, you can also analyze the effectiveness of your queries in terms of temporal and spatial pruning, and identify opportunities to improve performance. Specifically, you can evaluate how well your queries use time-based and partition key-based indexing strategies to optimize data retrieval. To optimize query performance, it's essential that you fine-tune both the temporal and spatial parameters that govern query execution.</p>
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { TimestreamQueryExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { TimestreamQueryServiceException } from "./models/TimestreamQueryServiceException";