@aws-sdk/client-timestream-write 3.301.0 → 3.306.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-cjs/models/models_0.js +44 -52
- package/dist-es/models/models_0.js +44 -52
- package/dist-types/models/models_0.d.ts +84 -44
- package/dist-types/ts3.4/models/models_0.d.ts +58 -44
- package/package.json +35 -35
|
@@ -17,48 +17,42 @@ class AccessDeniedException extends TimestreamWriteServiceException_1.Timestream
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
exports.AccessDeniedException = AccessDeniedException;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
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
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
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
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
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
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
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
|
|
20
|
-
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
|
|
56
|
-
CREATED
|
|
57
|
-
FAILED
|
|
58
|
-
IN_PROGRESS
|
|
59
|
-
PENDING_RESUME
|
|
60
|
-
PROGRESS_STOPPED
|
|
61
|
-
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
|
|
117
|
-
BIGINT
|
|
118
|
-
BOOLEAN
|
|
119
|
-
DOUBLE
|
|
120
|
-
MULTI
|
|
121
|
-
TIMESTAMP
|
|
122
|
-
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
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
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
|
|
196
|
-
MICROSECONDS
|
|
197
|
-
MILLISECONDS
|
|
198
|
-
NANOSECONDS
|
|
199
|
-
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
|
|
328
|
-
SSE_KMS
|
|
329
|
-
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
|
|
733
|
-
ACTIVE
|
|
734
|
-
DELETING
|
|
735
|
-
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
|
|
910
|
-
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
|
|
12
|
-
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
|
|
23
|
-
CREATED
|
|
24
|
-
FAILED
|
|
25
|
-
IN_PROGRESS
|
|
26
|
-
PENDING_RESUME
|
|
27
|
-
PROGRESS_STOPPED
|
|
28
|
-
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
|
|
44
|
-
BIGINT
|
|
45
|
-
BOOLEAN
|
|
46
|
-
DOUBLE
|
|
47
|
-
MULTI
|
|
48
|
-
TIMESTAMP
|
|
49
|
-
VARCHAR
|
|
50
|
-
}
|
|
51
|
-
export
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
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
|
|
75
|
-
MICROSECONDS
|
|
76
|
-
MILLISECONDS
|
|
77
|
-
NANOSECONDS
|
|
78
|
-
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
|
|
113
|
-
SSE_KMS
|
|
114
|
-
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
|
|
251
|
-
ACTIVE
|
|
252
|
-
DELETING
|
|
253
|
-
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
|
|
303
|
-
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.
|
|
4
|
+
"version": "3.306.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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-endpoint-discovery": "3.
|
|
33
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
34
|
-
"@aws-sdk/middleware-logger": "3.
|
|
35
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
36
|
-
"@aws-sdk/middleware-retry": "3.
|
|
37
|
-
"@aws-sdk/middleware-serde": "3.
|
|
38
|
-
"@aws-sdk/middleware-signing": "3.
|
|
39
|
-
"@aws-sdk/middleware-stack": "3.
|
|
40
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
41
|
-
"@aws-sdk/node-config-provider": "3.
|
|
42
|
-
"@aws-sdk/node-http-handler": "3.
|
|
43
|
-
"@aws-sdk/protocol-http": "3.
|
|
44
|
-
"@aws-sdk/smithy-client": "3.
|
|
45
|
-
"@aws-sdk/types": "3.
|
|
46
|
-
"@aws-sdk/url-parser": "3.
|
|
47
|
-
"@aws-sdk/util-base64": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
49
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
51
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
52
|
-
"@aws-sdk/util-endpoints": "3.
|
|
53
|
-
"@aws-sdk/util-retry": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
56
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-endpoint-discovery": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
40
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
42
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
43
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
44
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
45
|
+
"@aws-sdk/types": "3.306.0",
|
|
46
|
+
"@aws-sdk/url-parser": "3.306.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.306.0",
|
|
51
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.306.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.
|
|
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",
|