@aws-sdk/client-timestream-write 3.301.0 → 3.303.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.
@@ -17,48 +17,42 @@ class AccessDeniedException extends TimestreamWriteServiceException_1.Timestream
17
17
  }
18
18
  }
19
19
  exports.AccessDeniedException = AccessDeniedException;
20
- var BatchLoadDataFormat;
21
- (function (BatchLoadDataFormat) {
22
- BatchLoadDataFormat["CSV"] = "CSV";
23
- })(BatchLoadDataFormat = exports.BatchLoadDataFormat || (exports.BatchLoadDataFormat = {}));
24
- var BatchLoadStatus;
25
- (function (BatchLoadStatus) {
26
- BatchLoadStatus["CREATED"] = "CREATED";
27
- BatchLoadStatus["FAILED"] = "FAILED";
28
- BatchLoadStatus["IN_PROGRESS"] = "IN_PROGRESS";
29
- BatchLoadStatus["PENDING_RESUME"] = "PENDING_RESUME";
30
- BatchLoadStatus["PROGRESS_STOPPED"] = "PROGRESS_STOPPED";
31
- BatchLoadStatus["SUCCEEDED"] = "SUCCEEDED";
32
- })(BatchLoadStatus = exports.BatchLoadStatus || (exports.BatchLoadStatus = {}));
33
- var MeasureValueType;
34
- (function (MeasureValueType) {
35
- MeasureValueType["BIGINT"] = "BIGINT";
36
- MeasureValueType["BOOLEAN"] = "BOOLEAN";
37
- MeasureValueType["DOUBLE"] = "DOUBLE";
38
- MeasureValueType["MULTI"] = "MULTI";
39
- MeasureValueType["TIMESTAMP"] = "TIMESTAMP";
40
- MeasureValueType["VARCHAR"] = "VARCHAR";
41
- })(MeasureValueType = exports.MeasureValueType || (exports.MeasureValueType = {}));
42
- var ScalarMeasureValueType;
43
- (function (ScalarMeasureValueType) {
44
- ScalarMeasureValueType["BIGINT"] = "BIGINT";
45
- ScalarMeasureValueType["BOOLEAN"] = "BOOLEAN";
46
- ScalarMeasureValueType["DOUBLE"] = "DOUBLE";
47
- ScalarMeasureValueType["TIMESTAMP"] = "TIMESTAMP";
48
- ScalarMeasureValueType["VARCHAR"] = "VARCHAR";
49
- })(ScalarMeasureValueType = exports.ScalarMeasureValueType || (exports.ScalarMeasureValueType = {}));
50
- var TimeUnit;
51
- (function (TimeUnit) {
52
- TimeUnit["MICROSECONDS"] = "MICROSECONDS";
53
- TimeUnit["MILLISECONDS"] = "MILLISECONDS";
54
- TimeUnit["NANOSECONDS"] = "NANOSECONDS";
55
- TimeUnit["SECONDS"] = "SECONDS";
56
- })(TimeUnit = exports.TimeUnit || (exports.TimeUnit = {}));
57
- var S3EncryptionOption;
58
- (function (S3EncryptionOption) {
59
- S3EncryptionOption["SSE_KMS"] = "SSE_KMS";
60
- S3EncryptionOption["SSE_S3"] = "SSE_S3";
61
- })(S3EncryptionOption = exports.S3EncryptionOption || (exports.S3EncryptionOption = {}));
20
+ exports.BatchLoadDataFormat = {
21
+ CSV: "CSV",
22
+ };
23
+ exports.BatchLoadStatus = {
24
+ CREATED: "CREATED",
25
+ FAILED: "FAILED",
26
+ IN_PROGRESS: "IN_PROGRESS",
27
+ PENDING_RESUME: "PENDING_RESUME",
28
+ PROGRESS_STOPPED: "PROGRESS_STOPPED",
29
+ SUCCEEDED: "SUCCEEDED",
30
+ };
31
+ exports.MeasureValueType = {
32
+ BIGINT: "BIGINT",
33
+ BOOLEAN: "BOOLEAN",
34
+ DOUBLE: "DOUBLE",
35
+ MULTI: "MULTI",
36
+ TIMESTAMP: "TIMESTAMP",
37
+ VARCHAR: "VARCHAR",
38
+ };
39
+ exports.ScalarMeasureValueType = {
40
+ BIGINT: "BIGINT",
41
+ BOOLEAN: "BOOLEAN",
42
+ DOUBLE: "DOUBLE",
43
+ TIMESTAMP: "TIMESTAMP",
44
+ VARCHAR: "VARCHAR",
45
+ };
46
+ exports.TimeUnit = {
47
+ MICROSECONDS: "MICROSECONDS",
48
+ MILLISECONDS: "MILLISECONDS",
49
+ NANOSECONDS: "NANOSECONDS",
50
+ SECONDS: "SECONDS",
51
+ };
52
+ exports.S3EncryptionOption = {
53
+ SSE_KMS: "SSE_KMS",
54
+ SSE_S3: "SSE_S3",
55
+ };
62
56
  class ConflictException extends TimestreamWriteServiceException_1.TimestreamWriteServiceException {
63
57
  constructor(opts) {
64
58
  super({
@@ -157,16 +151,14 @@ class ValidationException extends TimestreamWriteServiceException_1.TimestreamWr
157
151
  }
158
152
  }
159
153
  exports.ValidationException = ValidationException;
160
- var TableStatus;
161
- (function (TableStatus) {
162
- TableStatus["ACTIVE"] = "ACTIVE";
163
- TableStatus["DELETING"] = "DELETING";
164
- TableStatus["RESTORING"] = "RESTORING";
165
- })(TableStatus = exports.TableStatus || (exports.TableStatus = {}));
166
- var DimensionValueType;
167
- (function (DimensionValueType) {
168
- DimensionValueType["VARCHAR"] = "VARCHAR";
169
- })(DimensionValueType = exports.DimensionValueType || (exports.DimensionValueType = {}));
154
+ exports.TableStatus = {
155
+ ACTIVE: "ACTIVE",
156
+ DELETING: "DELETING",
157
+ RESTORING: "RESTORING",
158
+ };
159
+ exports.DimensionValueType = {
160
+ VARCHAR: "VARCHAR",
161
+ };
170
162
  class RejectedRecordsException extends TimestreamWriteServiceException_1.TimestreamWriteServiceException {
171
163
  constructor(opts) {
172
164
  super({
@@ -13,48 +13,42 @@ export class AccessDeniedException extends __BaseException {
13
13
  this.Message = opts.Message;
14
14
  }
15
15
  }
16
- export var BatchLoadDataFormat;
17
- (function (BatchLoadDataFormat) {
18
- BatchLoadDataFormat["CSV"] = "CSV";
19
- })(BatchLoadDataFormat || (BatchLoadDataFormat = {}));
20
- export var BatchLoadStatus;
21
- (function (BatchLoadStatus) {
22
- BatchLoadStatus["CREATED"] = "CREATED";
23
- BatchLoadStatus["FAILED"] = "FAILED";
24
- BatchLoadStatus["IN_PROGRESS"] = "IN_PROGRESS";
25
- BatchLoadStatus["PENDING_RESUME"] = "PENDING_RESUME";
26
- BatchLoadStatus["PROGRESS_STOPPED"] = "PROGRESS_STOPPED";
27
- BatchLoadStatus["SUCCEEDED"] = "SUCCEEDED";
28
- })(BatchLoadStatus || (BatchLoadStatus = {}));
29
- export var MeasureValueType;
30
- (function (MeasureValueType) {
31
- MeasureValueType["BIGINT"] = "BIGINT";
32
- MeasureValueType["BOOLEAN"] = "BOOLEAN";
33
- MeasureValueType["DOUBLE"] = "DOUBLE";
34
- MeasureValueType["MULTI"] = "MULTI";
35
- MeasureValueType["TIMESTAMP"] = "TIMESTAMP";
36
- MeasureValueType["VARCHAR"] = "VARCHAR";
37
- })(MeasureValueType || (MeasureValueType = {}));
38
- export var ScalarMeasureValueType;
39
- (function (ScalarMeasureValueType) {
40
- ScalarMeasureValueType["BIGINT"] = "BIGINT";
41
- ScalarMeasureValueType["BOOLEAN"] = "BOOLEAN";
42
- ScalarMeasureValueType["DOUBLE"] = "DOUBLE";
43
- ScalarMeasureValueType["TIMESTAMP"] = "TIMESTAMP";
44
- ScalarMeasureValueType["VARCHAR"] = "VARCHAR";
45
- })(ScalarMeasureValueType || (ScalarMeasureValueType = {}));
46
- export var TimeUnit;
47
- (function (TimeUnit) {
48
- TimeUnit["MICROSECONDS"] = "MICROSECONDS";
49
- TimeUnit["MILLISECONDS"] = "MILLISECONDS";
50
- TimeUnit["NANOSECONDS"] = "NANOSECONDS";
51
- TimeUnit["SECONDS"] = "SECONDS";
52
- })(TimeUnit || (TimeUnit = {}));
53
- export var S3EncryptionOption;
54
- (function (S3EncryptionOption) {
55
- S3EncryptionOption["SSE_KMS"] = "SSE_KMS";
56
- S3EncryptionOption["SSE_S3"] = "SSE_S3";
57
- })(S3EncryptionOption || (S3EncryptionOption = {}));
16
+ export const BatchLoadDataFormat = {
17
+ CSV: "CSV",
18
+ };
19
+ export const BatchLoadStatus = {
20
+ CREATED: "CREATED",
21
+ FAILED: "FAILED",
22
+ IN_PROGRESS: "IN_PROGRESS",
23
+ PENDING_RESUME: "PENDING_RESUME",
24
+ PROGRESS_STOPPED: "PROGRESS_STOPPED",
25
+ SUCCEEDED: "SUCCEEDED",
26
+ };
27
+ export const MeasureValueType = {
28
+ BIGINT: "BIGINT",
29
+ BOOLEAN: "BOOLEAN",
30
+ DOUBLE: "DOUBLE",
31
+ MULTI: "MULTI",
32
+ TIMESTAMP: "TIMESTAMP",
33
+ VARCHAR: "VARCHAR",
34
+ };
35
+ export const ScalarMeasureValueType = {
36
+ BIGINT: "BIGINT",
37
+ BOOLEAN: "BOOLEAN",
38
+ DOUBLE: "DOUBLE",
39
+ TIMESTAMP: "TIMESTAMP",
40
+ VARCHAR: "VARCHAR",
41
+ };
42
+ export const TimeUnit = {
43
+ MICROSECONDS: "MICROSECONDS",
44
+ MILLISECONDS: "MILLISECONDS",
45
+ NANOSECONDS: "NANOSECONDS",
46
+ SECONDS: "SECONDS",
47
+ };
48
+ export const S3EncryptionOption = {
49
+ SSE_KMS: "SSE_KMS",
50
+ SSE_S3: "SSE_S3",
51
+ };
58
52
  export class ConflictException extends __BaseException {
59
53
  constructor(opts) {
60
54
  super({
@@ -146,16 +140,14 @@ export class ValidationException extends __BaseException {
146
140
  this.Message = opts.Message;
147
141
  }
148
142
  }
149
- export var TableStatus;
150
- (function (TableStatus) {
151
- TableStatus["ACTIVE"] = "ACTIVE";
152
- TableStatus["DELETING"] = "DELETING";
153
- TableStatus["RESTORING"] = "RESTORING";
154
- })(TableStatus || (TableStatus = {}));
155
- export var DimensionValueType;
156
- (function (DimensionValueType) {
157
- DimensionValueType["VARCHAR"] = "VARCHAR";
158
- })(DimensionValueType || (DimensionValueType = {}));
143
+ export const TableStatus = {
144
+ ACTIVE: "ACTIVE",
145
+ DELETING: "DELETING",
146
+ RESTORING: "RESTORING",
147
+ };
148
+ export const DimensionValueType = {
149
+ VARCHAR: "VARCHAR",
150
+ };
159
151
  export class RejectedRecordsException extends __BaseException {
160
152
  constructor(opts) {
161
153
  super({
@@ -15,10 +15,15 @@ export declare class AccessDeniedException extends __BaseException {
15
15
  }
16
16
  /**
17
17
  * @public
18
+ * @enum
18
19
  */
19
- export declare enum BatchLoadDataFormat {
20
- CSV = "CSV"
21
- }
20
+ export declare const BatchLoadDataFormat: {
21
+ readonly CSV: "CSV";
22
+ };
23
+ /**
24
+ * @public
25
+ */
26
+ export type BatchLoadDataFormat = (typeof BatchLoadDataFormat)[keyof typeof BatchLoadDataFormat];
22
27
  /**
23
28
  * @public
24
29
  * <p>Details about the progress of a batch load task.</p>
@@ -51,15 +56,20 @@ export interface BatchLoadProgressReport {
51
56
  }
52
57
  /**
53
58
  * @public
59
+ * @enum
54
60
  */
55
- export declare enum BatchLoadStatus {
56
- CREATED = "CREATED",
57
- FAILED = "FAILED",
58
- IN_PROGRESS = "IN_PROGRESS",
59
- PENDING_RESUME = "PENDING_RESUME",
60
- PROGRESS_STOPPED = "PROGRESS_STOPPED",
61
- SUCCEEDED = "SUCCEEDED"
62
- }
61
+ export declare const BatchLoadStatus: {
62
+ readonly CREATED: "CREATED";
63
+ readonly FAILED: "FAILED";
64
+ readonly IN_PROGRESS: "IN_PROGRESS";
65
+ readonly PENDING_RESUME: "PENDING_RESUME";
66
+ readonly PROGRESS_STOPPED: "PROGRESS_STOPPED";
67
+ readonly SUCCEEDED: "SUCCEEDED";
68
+ };
69
+ /**
70
+ * @public
71
+ */
72
+ export type BatchLoadStatus = (typeof BatchLoadStatus)[keyof typeof BatchLoadStatus];
63
73
  /**
64
74
  * @public
65
75
  * <p>Details about a batch load task.</p>
@@ -112,25 +122,35 @@ export interface DimensionMapping {
112
122
  }
113
123
  /**
114
124
  * @public
125
+ * @enum
115
126
  */
116
- export declare enum MeasureValueType {
117
- BIGINT = "BIGINT",
118
- BOOLEAN = "BOOLEAN",
119
- DOUBLE = "DOUBLE",
120
- MULTI = "MULTI",
121
- TIMESTAMP = "TIMESTAMP",
122
- VARCHAR = "VARCHAR"
123
- }
127
+ export declare const MeasureValueType: {
128
+ readonly BIGINT: "BIGINT";
129
+ readonly BOOLEAN: "BOOLEAN";
130
+ readonly DOUBLE: "DOUBLE";
131
+ readonly MULTI: "MULTI";
132
+ readonly TIMESTAMP: "TIMESTAMP";
133
+ readonly VARCHAR: "VARCHAR";
134
+ };
124
135
  /**
125
136
  * @public
126
137
  */
127
- export declare enum ScalarMeasureValueType {
128
- BIGINT = "BIGINT",
129
- BOOLEAN = "BOOLEAN",
130
- DOUBLE = "DOUBLE",
131
- TIMESTAMP = "TIMESTAMP",
132
- VARCHAR = "VARCHAR"
133
- }
138
+ export type MeasureValueType = (typeof MeasureValueType)[keyof typeof MeasureValueType];
139
+ /**
140
+ * @public
141
+ * @enum
142
+ */
143
+ export declare const ScalarMeasureValueType: {
144
+ readonly BIGINT: "BIGINT";
145
+ readonly BOOLEAN: "BOOLEAN";
146
+ readonly DOUBLE: "DOUBLE";
147
+ readonly TIMESTAMP: "TIMESTAMP";
148
+ readonly VARCHAR: "VARCHAR";
149
+ };
150
+ /**
151
+ * @public
152
+ */
153
+ export type ScalarMeasureValueType = (typeof ScalarMeasureValueType)[keyof typeof ScalarMeasureValueType];
134
154
  /**
135
155
  * @public
136
156
  * <p></p>
@@ -191,13 +211,18 @@ export interface MultiMeasureMappings {
191
211
  }
192
212
  /**
193
213
  * @public
214
+ * @enum
194
215
  */
195
- export declare enum TimeUnit {
196
- MICROSECONDS = "MICROSECONDS",
197
- MILLISECONDS = "MILLISECONDS",
198
- NANOSECONDS = "NANOSECONDS",
199
- SECONDS = "SECONDS"
200
- }
216
+ export declare const TimeUnit: {
217
+ readonly MICROSECONDS: "MICROSECONDS";
218
+ readonly MILLISECONDS: "MILLISECONDS";
219
+ readonly NANOSECONDS: "NANOSECONDS";
220
+ readonly SECONDS: "SECONDS";
221
+ };
222
+ /**
223
+ * @public
224
+ */
225
+ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
201
226
  /**
202
227
  * @public
203
228
  * <p>Data model for a batch load task.</p>
@@ -323,11 +348,16 @@ export interface DataSourceConfiguration {
323
348
  }
324
349
  /**
325
350
  * @public
351
+ * @enum
326
352
  */
327
- export declare enum S3EncryptionOption {
328
- SSE_KMS = "SSE_KMS",
329
- SSE_S3 = "SSE_S3"
330
- }
353
+ export declare const S3EncryptionOption: {
354
+ readonly SSE_KMS: "SSE_KMS";
355
+ readonly SSE_S3: "SSE_S3";
356
+ };
357
+ /**
358
+ * @public
359
+ */
360
+ export type S3EncryptionOption = (typeof S3EncryptionOption)[keyof typeof S3EncryptionOption];
331
361
  /**
332
362
  * @public
333
363
  * <p></p>
@@ -728,12 +758,17 @@ export interface CreateTableRequest {
728
758
  }
729
759
  /**
730
760
  * @public
761
+ * @enum
731
762
  */
732
- export declare enum TableStatus {
733
- ACTIVE = "ACTIVE",
734
- DELETING = "DELETING",
735
- RESTORING = "RESTORING"
736
- }
763
+ export declare const TableStatus: {
764
+ readonly ACTIVE: "ACTIVE";
765
+ readonly DELETING: "DELETING";
766
+ readonly RESTORING: "RESTORING";
767
+ };
768
+ /**
769
+ * @public
770
+ */
771
+ export type TableStatus = (typeof TableStatus)[keyof typeof TableStatus];
737
772
  /**
738
773
  * @public
739
774
  * <p>Represents a database table in Timestream. Tables contain one or more related
@@ -905,10 +940,15 @@ export interface DescribeTableResponse {
905
940
  }
906
941
  /**
907
942
  * @public
943
+ * @enum
908
944
  */
909
- export declare enum DimensionValueType {
910
- VARCHAR = "VARCHAR"
911
- }
945
+ export declare const DimensionValueType: {
946
+ readonly VARCHAR: "VARCHAR";
947
+ };
948
+ /**
949
+ * @public
950
+ */
951
+ export type DimensionValueType = (typeof DimensionValueType)[keyof typeof DimensionValueType];
912
952
  /**
913
953
  * @public
914
954
  * <p>Represents the metadata attributes of the time series. For example, the name and
@@ -8,9 +8,11 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
- export declare enum BatchLoadDataFormat {
12
- CSV = "CSV",
13
- }
11
+ export declare const BatchLoadDataFormat: {
12
+ readonly CSV: "CSV";
13
+ };
14
+ export type BatchLoadDataFormat =
15
+ (typeof BatchLoadDataFormat)[keyof typeof BatchLoadDataFormat];
14
16
  export interface BatchLoadProgressReport {
15
17
  RecordsProcessed?: number;
16
18
  RecordsIngested?: number;
@@ -19,14 +21,16 @@ export interface BatchLoadProgressReport {
19
21
  FileFailures?: number;
20
22
  BytesMetered?: number;
21
23
  }
22
- export declare enum BatchLoadStatus {
23
- CREATED = "CREATED",
24
- FAILED = "FAILED",
25
- IN_PROGRESS = "IN_PROGRESS",
26
- PENDING_RESUME = "PENDING_RESUME",
27
- PROGRESS_STOPPED = "PROGRESS_STOPPED",
28
- SUCCEEDED = "SUCCEEDED",
29
- }
24
+ export declare const BatchLoadStatus: {
25
+ readonly CREATED: "CREATED";
26
+ readonly FAILED: "FAILED";
27
+ readonly IN_PROGRESS: "IN_PROGRESS";
28
+ readonly PENDING_RESUME: "PENDING_RESUME";
29
+ readonly PROGRESS_STOPPED: "PROGRESS_STOPPED";
30
+ readonly SUCCEEDED: "SUCCEEDED";
31
+ };
32
+ export type BatchLoadStatus =
33
+ (typeof BatchLoadStatus)[keyof typeof BatchLoadStatus];
30
34
  export interface BatchLoadTask {
31
35
  TaskId?: string;
32
36
  TaskStatus?: BatchLoadStatus | string;
@@ -40,21 +44,25 @@ export interface DimensionMapping {
40
44
  SourceColumn?: string;
41
45
  DestinationColumn?: string;
42
46
  }
43
- export declare enum MeasureValueType {
44
- BIGINT = "BIGINT",
45
- BOOLEAN = "BOOLEAN",
46
- DOUBLE = "DOUBLE",
47
- MULTI = "MULTI",
48
- TIMESTAMP = "TIMESTAMP",
49
- VARCHAR = "VARCHAR",
50
- }
51
- export declare enum ScalarMeasureValueType {
52
- BIGINT = "BIGINT",
53
- BOOLEAN = "BOOLEAN",
54
- DOUBLE = "DOUBLE",
55
- TIMESTAMP = "TIMESTAMP",
56
- VARCHAR = "VARCHAR",
57
- }
47
+ export declare const MeasureValueType: {
48
+ readonly BIGINT: "BIGINT";
49
+ readonly BOOLEAN: "BOOLEAN";
50
+ readonly DOUBLE: "DOUBLE";
51
+ readonly MULTI: "MULTI";
52
+ readonly TIMESTAMP: "TIMESTAMP";
53
+ readonly VARCHAR: "VARCHAR";
54
+ };
55
+ export type MeasureValueType =
56
+ (typeof MeasureValueType)[keyof typeof MeasureValueType];
57
+ export declare const ScalarMeasureValueType: {
58
+ readonly BIGINT: "BIGINT";
59
+ readonly BOOLEAN: "BOOLEAN";
60
+ readonly DOUBLE: "DOUBLE";
61
+ readonly TIMESTAMP: "TIMESTAMP";
62
+ readonly VARCHAR: "VARCHAR";
63
+ };
64
+ export type ScalarMeasureValueType =
65
+ (typeof ScalarMeasureValueType)[keyof typeof ScalarMeasureValueType];
58
66
  export interface MultiMeasureAttributeMapping {
59
67
  SourceColumn: string | undefined;
60
68
  TargetMultiMeasureAttributeName?: string;
@@ -71,12 +79,13 @@ export interface MultiMeasureMappings {
71
79
  TargetMultiMeasureName?: string;
72
80
  MultiMeasureAttributeMappings: MultiMeasureAttributeMapping[] | undefined;
73
81
  }
74
- export declare enum TimeUnit {
75
- MICROSECONDS = "MICROSECONDS",
76
- MILLISECONDS = "MILLISECONDS",
77
- NANOSECONDS = "NANOSECONDS",
78
- SECONDS = "SECONDS",
79
- }
82
+ export declare const TimeUnit: {
83
+ readonly MICROSECONDS: "MICROSECONDS";
84
+ readonly MILLISECONDS: "MILLISECONDS";
85
+ readonly NANOSECONDS: "NANOSECONDS";
86
+ readonly SECONDS: "SECONDS";
87
+ };
88
+ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
80
89
  export interface DataModel {
81
90
  TimeColumn?: string;
82
91
  TimeUnit?: TimeUnit | string;
@@ -109,10 +118,12 @@ export interface DataSourceConfiguration {
109
118
  CsvConfiguration?: CsvConfiguration;
110
119
  DataFormat: BatchLoadDataFormat | string | undefined;
111
120
  }
112
- export declare enum S3EncryptionOption {
113
- SSE_KMS = "SSE_KMS",
114
- SSE_S3 = "SSE_S3",
115
- }
121
+ export declare const S3EncryptionOption: {
122
+ readonly SSE_KMS: "SSE_KMS";
123
+ readonly SSE_S3: "SSE_S3";
124
+ };
125
+ export type S3EncryptionOption =
126
+ (typeof S3EncryptionOption)[keyof typeof S3EncryptionOption];
116
127
  export interface ReportS3Configuration {
117
128
  BucketName: string | undefined;
118
129
  ObjectKeyPrefix?: string;
@@ -247,11 +258,12 @@ export interface CreateTableRequest {
247
258
  Tags?: Tag[];
248
259
  MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
249
260
  }
250
- export declare enum TableStatus {
251
- ACTIVE = "ACTIVE",
252
- DELETING = "DELETING",
253
- RESTORING = "RESTORING",
254
- }
261
+ export declare const TableStatus: {
262
+ readonly ACTIVE: "ACTIVE";
263
+ readonly DELETING: "DELETING";
264
+ readonly RESTORING: "RESTORING";
265
+ };
266
+ export type TableStatus = (typeof TableStatus)[keyof typeof TableStatus];
255
267
  export interface Table {
256
268
  Arn?: string;
257
269
  TableName?: string;
@@ -299,9 +311,11 @@ export interface DescribeTableRequest {
299
311
  export interface DescribeTableResponse {
300
312
  Table?: Table;
301
313
  }
302
- export declare enum DimensionValueType {
303
- VARCHAR = "VARCHAR",
304
- }
314
+ export declare const DimensionValueType: {
315
+ readonly VARCHAR: "VARCHAR";
316
+ };
317
+ export type DimensionValueType =
318
+ (typeof DimensionValueType)[keyof typeof DimensionValueType];
305
319
  export interface Dimension {
306
320
  Name: string | undefined;
307
321
  Value: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-timestream-write",
3
3
  "description": "AWS SDK for JavaScript Timestream Write Client for Node.js, Browser and React Native",
4
- "version": "3.301.0",
4
+ "version": "3.303.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,44 +21,44 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-endpoint-discovery": "3.300.0",
33
- "@aws-sdk/middleware-host-header": "3.296.0",
34
- "@aws-sdk/middleware-logger": "3.296.0",
35
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
36
- "@aws-sdk/middleware-retry": "3.300.0",
37
- "@aws-sdk/middleware-serde": "3.296.0",
38
- "@aws-sdk/middleware-signing": "3.299.0",
39
- "@aws-sdk/middleware-stack": "3.296.0",
40
- "@aws-sdk/middleware-user-agent": "3.299.0",
41
- "@aws-sdk/node-config-provider": "3.300.0",
42
- "@aws-sdk/node-http-handler": "3.296.0",
43
- "@aws-sdk/protocol-http": "3.296.0",
44
- "@aws-sdk/smithy-client": "3.296.0",
45
- "@aws-sdk/types": "3.296.0",
46
- "@aws-sdk/url-parser": "3.296.0",
47
- "@aws-sdk/util-base64": "3.295.0",
48
- "@aws-sdk/util-body-length-browser": "3.295.0",
49
- "@aws-sdk/util-body-length-node": "3.295.0",
50
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
51
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
52
- "@aws-sdk/util-endpoints": "3.296.0",
53
- "@aws-sdk/util-retry": "3.296.0",
54
- "@aws-sdk/util-user-agent-browser": "3.299.0",
55
- "@aws-sdk/util-user-agent-node": "3.300.0",
56
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-endpoint-discovery": "3.303.0",
33
+ "@aws-sdk/middleware-host-header": "3.303.0",
34
+ "@aws-sdk/middleware-logger": "3.303.0",
35
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
36
+ "@aws-sdk/middleware-retry": "3.303.0",
37
+ "@aws-sdk/middleware-serde": "3.303.0",
38
+ "@aws-sdk/middleware-signing": "3.303.0",
39
+ "@aws-sdk/middleware-stack": "3.303.0",
40
+ "@aws-sdk/middleware-user-agent": "3.303.0",
41
+ "@aws-sdk/node-config-provider": "3.303.0",
42
+ "@aws-sdk/node-http-handler": "3.303.0",
43
+ "@aws-sdk/protocol-http": "3.303.0",
44
+ "@aws-sdk/smithy-client": "3.303.0",
45
+ "@aws-sdk/types": "3.303.0",
46
+ "@aws-sdk/url-parser": "3.303.0",
47
+ "@aws-sdk/util-base64": "3.303.0",
48
+ "@aws-sdk/util-body-length-browser": "3.303.0",
49
+ "@aws-sdk/util-body-length-node": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
51
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
52
+ "@aws-sdk/util-endpoints": "3.303.0",
53
+ "@aws-sdk/util-retry": "3.303.0",
54
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
55
+ "@aws-sdk/util-user-agent-node": "3.303.0",
56
+ "@aws-sdk/util-utf8": "3.303.0",
57
57
  "tslib": "^2.5.0",
58
58
  "uuid": "^8.3.2"
59
59
  },
60
60
  "devDependencies": {
61
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
61
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
62
62
  "@tsconfig/node14": "1.0.3",
63
63
  "@types/node": "^14.14.31",
64
64
  "@types/uuid": "^8.3.0",