@aws-sdk/client-timestream-write 3.300.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({
@@ -34,30 +34,30 @@ export interface CreateBatchLoadTaskCommandOutput extends CreateBatchLoadTaskRes
34
34
  * import { TimestreamWriteClient, CreateBatchLoadTaskCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
35
35
  * // const { TimestreamWriteClient, CreateBatchLoadTaskCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
36
36
  * const client = new TimestreamWriteClient(config);
37
- * const input = {
37
+ * const input = { // CreateBatchLoadTaskRequest
38
38
  * ClientToken: "STRING_VALUE",
39
- * DataModelConfiguration: {
40
- * DataModel: {
39
+ * DataModelConfiguration: { // DataModelConfiguration
40
+ * DataModel: { // DataModel
41
41
  * TimeColumn: "STRING_VALUE",
42
42
  * TimeUnit: "MILLISECONDS" || "SECONDS" || "MICROSECONDS" || "NANOSECONDS",
43
- * DimensionMappings: [ // required
44
- * {
43
+ * DimensionMappings: [ // DimensionMappings // required
44
+ * { // DimensionMapping
45
45
  * SourceColumn: "STRING_VALUE",
46
46
  * DestinationColumn: "STRING_VALUE",
47
47
  * },
48
48
  * ],
49
- * MultiMeasureMappings: {
49
+ * MultiMeasureMappings: { // MultiMeasureMappings
50
50
  * TargetMultiMeasureName: "STRING_VALUE",
51
- * MultiMeasureAttributeMappings: [ // required
52
- * {
51
+ * MultiMeasureAttributeMappings: [ // MultiMeasureAttributeMappingList // required
52
+ * { // MultiMeasureAttributeMapping
53
53
  * SourceColumn: "STRING_VALUE", // required
54
54
  * TargetMultiMeasureAttributeName: "STRING_VALUE",
55
55
  * MeasureValueType: "DOUBLE" || "BIGINT" || "BOOLEAN" || "VARCHAR" || "TIMESTAMP",
56
56
  * },
57
57
  * ],
58
58
  * },
59
- * MixedMeasureMappings: [
60
- * {
59
+ * MixedMeasureMappings: [ // MixedMeasureMappingList
60
+ * { // MixedMeasureMapping
61
61
  * MeasureName: "STRING_VALUE",
62
62
  * SourceColumn: "STRING_VALUE",
63
63
  * TargetMeasureName: "STRING_VALUE",
@@ -73,17 +73,17 @@ export interface CreateBatchLoadTaskCommandOutput extends CreateBatchLoadTaskRes
73
73
  * ],
74
74
  * MeasureNameColumn: "STRING_VALUE",
75
75
  * },
76
- * DataModelS3Configuration: {
76
+ * DataModelS3Configuration: { // DataModelS3Configuration
77
77
  * BucketName: "STRING_VALUE",
78
78
  * ObjectKey: "STRING_VALUE",
79
79
  * },
80
80
  * },
81
- * DataSourceConfiguration: {
82
- * DataSourceS3Configuration: {
81
+ * DataSourceConfiguration: { // DataSourceConfiguration
82
+ * DataSourceS3Configuration: { // DataSourceS3Configuration
83
83
  * BucketName: "STRING_VALUE", // required
84
84
  * ObjectKeyPrefix: "STRING_VALUE",
85
85
  * },
86
- * CsvConfiguration: {
86
+ * CsvConfiguration: { // CsvConfiguration
87
87
  * ColumnSeparator: "STRING_VALUE",
88
88
  * EscapeChar: "STRING_VALUE",
89
89
  * QuoteChar: "STRING_VALUE",
@@ -92,8 +92,8 @@ export interface CreateBatchLoadTaskCommandOutput extends CreateBatchLoadTaskRes
92
92
  * },
93
93
  * DataFormat: "CSV", // required
94
94
  * },
95
- * ReportConfiguration: {
96
- * ReportS3Configuration: {
95
+ * ReportConfiguration: { // ReportConfiguration
96
+ * ReportS3Configuration: { // ReportS3Configuration
97
97
  * BucketName: "STRING_VALUE", // required
98
98
  * ObjectKeyPrefix: "STRING_VALUE",
99
99
  * EncryptionOption: "SSE_S3" || "SSE_KMS",
@@ -29,11 +29,11 @@ export interface CreateDatabaseCommandOutput extends CreateDatabaseResponse, __M
29
29
  * import { TimestreamWriteClient, CreateDatabaseCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
30
30
  * // const { TimestreamWriteClient, CreateDatabaseCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
31
31
  * const client = new TimestreamWriteClient(config);
32
- * const input = {
32
+ * const input = { // CreateDatabaseRequest
33
33
  * DatabaseName: "STRING_VALUE", // required
34
34
  * KmsKeyId: "STRING_VALUE",
35
- * Tags: [
36
- * {
35
+ * Tags: [ // TagList
36
+ * { // Tag
37
37
  * Key: "STRING_VALUE", // required
38
38
  * Value: "STRING_VALUE", // required
39
39
  * },
@@ -31,23 +31,23 @@ export interface CreateTableCommandOutput extends CreateTableResponse, __Metadat
31
31
  * import { TimestreamWriteClient, CreateTableCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
32
32
  * // const { TimestreamWriteClient, CreateTableCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
33
33
  * const client = new TimestreamWriteClient(config);
34
- * const input = {
34
+ * const input = { // CreateTableRequest
35
35
  * DatabaseName: "STRING_VALUE", // required
36
36
  * TableName: "STRING_VALUE", // required
37
- * RetentionProperties: {
37
+ * RetentionProperties: { // RetentionProperties
38
38
  * MemoryStoreRetentionPeriodInHours: Number("long"), // required
39
39
  * MagneticStoreRetentionPeriodInDays: Number("long"), // required
40
40
  * },
41
- * Tags: [
42
- * {
41
+ * Tags: [ // TagList
42
+ * { // Tag
43
43
  * Key: "STRING_VALUE", // required
44
44
  * Value: "STRING_VALUE", // required
45
45
  * },
46
46
  * ],
47
- * MagneticStoreWriteProperties: {
47
+ * MagneticStoreWriteProperties: { // MagneticStoreWriteProperties
48
48
  * EnableMagneticStoreWrites: true || false, // required
49
- * MagneticStoreRejectedDataLocation: {
50
- * S3Configuration: {
49
+ * MagneticStoreRejectedDataLocation: { // MagneticStoreRejectedDataLocation
50
+ * S3Configuration: { // S3Configuration
51
51
  * BucketName: "STRING_VALUE",
52
52
  * ObjectKeyPrefix: "STRING_VALUE",
53
53
  * EncryptionOption: "SSE_S3" || "SSE_KMS",
@@ -37,7 +37,7 @@ export interface DeleteDatabaseCommandOutput extends __MetadataBearer {
37
37
  * import { TimestreamWriteClient, DeleteDatabaseCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
38
38
  * // const { TimestreamWriteClient, DeleteDatabaseCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
39
39
  * const client = new TimestreamWriteClient(config);
40
- * const input = {
40
+ * const input = { // DeleteDatabaseRequest
41
41
  * DatabaseName: "STRING_VALUE", // required
42
42
  * };
43
43
  * const command = new DeleteDatabaseCommand(input);
@@ -34,7 +34,7 @@ export interface DeleteTableCommandOutput extends __MetadataBearer {
34
34
  * import { TimestreamWriteClient, DeleteTableCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
35
35
  * // const { TimestreamWriteClient, DeleteTableCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
36
36
  * const client = new TimestreamWriteClient(config);
37
- * const input = {
37
+ * const input = { // DeleteTableRequest
38
38
  * DatabaseName: "STRING_VALUE", // required
39
39
  * TableName: "STRING_VALUE", // required
40
40
  * };
@@ -29,7 +29,7 @@ export interface DescribeBatchLoadTaskCommandOutput extends DescribeBatchLoadTas
29
29
  * import { TimestreamWriteClient, DescribeBatchLoadTaskCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
30
30
  * // const { TimestreamWriteClient, DescribeBatchLoadTaskCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
31
31
  * const client = new TimestreamWriteClient(config);
32
- * const input = {
32
+ * const input = { // DescribeBatchLoadTaskRequest
33
33
  * TaskId: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new DescribeBatchLoadTaskCommand(input);
@@ -29,7 +29,7 @@ export interface DescribeDatabaseCommandOutput extends DescribeDatabaseResponse,
29
29
  * import { TimestreamWriteClient, DescribeDatabaseCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
30
30
  * // const { TimestreamWriteClient, DescribeDatabaseCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
31
31
  * const client = new TimestreamWriteClient(config);
32
- * const input = {
32
+ * const input = { // DescribeDatabaseRequest
33
33
  * DatabaseName: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new DescribeDatabaseCommand(input);
@@ -29,7 +29,7 @@ export interface DescribeTableCommandOutput extends DescribeTableResponse, __Met
29
29
  * import { TimestreamWriteClient, DescribeTableCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
30
30
  * // const { TimestreamWriteClient, DescribeTableCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
31
31
  * const client = new TimestreamWriteClient(config);
32
- * const input = {
32
+ * const input = { // DescribeTableRequest
33
33
  * DatabaseName: "STRING_VALUE", // required
34
34
  * TableName: "STRING_VALUE", // required
35
35
  * };
@@ -28,7 +28,7 @@ export interface ListBatchLoadTasksCommandOutput extends ListBatchLoadTasksRespo
28
28
  * import { TimestreamWriteClient, ListBatchLoadTasksCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
29
29
  * // const { TimestreamWriteClient, ListBatchLoadTasksCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
30
30
  * const client = new TimestreamWriteClient(config);
31
- * const input = {
31
+ * const input = { // ListBatchLoadTasksRequest
32
32
  * NextToken: "STRING_VALUE",
33
33
  * MaxResults: Number("int"),
34
34
  * TaskStatus: "CREATED" || "IN_PROGRESS" || "FAILED" || "SUCCEEDED" || "PROGRESS_STOPPED" || "PENDING_RESUME",
@@ -28,7 +28,7 @@ export interface ListDatabasesCommandOutput extends ListDatabasesResponse, __Met
28
28
  * import { TimestreamWriteClient, ListDatabasesCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
29
29
  * // const { TimestreamWriteClient, ListDatabasesCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
30
30
  * const client = new TimestreamWriteClient(config);
31
- * const input = {
31
+ * const input = { // ListDatabasesRequest
32
32
  * NextToken: "STRING_VALUE",
33
33
  * MaxResults: Number("int"),
34
34
  * };
@@ -28,7 +28,7 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB
28
28
  * import { TimestreamWriteClient, ListTablesCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
29
29
  * // const { TimestreamWriteClient, ListTablesCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
30
30
  * const client = new TimestreamWriteClient(config);
31
- * const input = {
31
+ * const input = { // ListTablesRequest
32
32
  * DatabaseName: "STRING_VALUE",
33
33
  * NextToken: "STRING_VALUE",
34
34
  * MaxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { TimestreamWriteClient, ListTagsForResourceCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
27
27
  * // const { TimestreamWriteClient, ListTagsForResourceCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
28
28
  * const client = new TimestreamWriteClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -27,7 +27,7 @@ export interface ResumeBatchLoadTaskCommandOutput extends ResumeBatchLoadTaskRes
27
27
  * import { TimestreamWriteClient, ResumeBatchLoadTaskCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
28
28
  * // const { TimestreamWriteClient, ResumeBatchLoadTaskCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
29
29
  * const client = new TimestreamWriteClient(config);
30
- * const input = {
30
+ * const input = { // ResumeBatchLoadTaskRequest
31
31
  * TaskId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new ResumeBatchLoadTaskCommand(input);
@@ -28,10 +28,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
28
28
  * import { TimestreamWriteClient, TagResourceCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
29
29
  * // const { TimestreamWriteClient, TagResourceCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
30
30
  * const client = new TimestreamWriteClient(config);
31
- * const input = {
31
+ * const input = { // TagResourceRequest
32
32
  * ResourceARN: "STRING_VALUE", // required
33
- * Tags: [ // required
34
- * {
33
+ * Tags: [ // TagList // required
34
+ * { // Tag
35
35
  * Key: "STRING_VALUE", // required
36
36
  * Value: "STRING_VALUE", // required
37
37
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { TimestreamWriteClient, UntagResourceCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
27
27
  * // const { TimestreamWriteClient, UntagResourceCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
28
28
  * const client = new TimestreamWriteClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
- * TagKeys: [ // required
31
+ * TagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -30,7 +30,7 @@ export interface UpdateDatabaseCommandOutput extends UpdateDatabaseResponse, __M
30
30
  * import { TimestreamWriteClient, UpdateDatabaseCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
31
31
  * // const { TimestreamWriteClient, UpdateDatabaseCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
32
32
  * const client = new TimestreamWriteClient(config);
33
- * const input = {
33
+ * const input = { // UpdateDatabaseRequest
34
34
  * DatabaseName: "STRING_VALUE", // required
35
35
  * KmsKeyId: "STRING_VALUE", // required
36
36
  * };
@@ -31,17 +31,17 @@ export interface UpdateTableCommandOutput extends UpdateTableResponse, __Metadat
31
31
  * import { TimestreamWriteClient, UpdateTableCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
32
32
  * // const { TimestreamWriteClient, UpdateTableCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
33
33
  * const client = new TimestreamWriteClient(config);
34
- * const input = {
34
+ * const input = { // UpdateTableRequest
35
35
  * DatabaseName: "STRING_VALUE", // required
36
36
  * TableName: "STRING_VALUE", // required
37
- * RetentionProperties: {
37
+ * RetentionProperties: { // RetentionProperties
38
38
  * MemoryStoreRetentionPeriodInHours: Number("long"), // required
39
39
  * MagneticStoreRetentionPeriodInDays: Number("long"), // required
40
40
  * },
41
- * MagneticStoreWriteProperties: {
41
+ * MagneticStoreWriteProperties: { // MagneticStoreWriteProperties
42
42
  * EnableMagneticStoreWrites: true || false, // required
43
- * MagneticStoreRejectedDataLocation: {
44
- * S3Configuration: {
43
+ * MagneticStoreRejectedDataLocation: { // MagneticStoreRejectedDataLocation
44
+ * S3Configuration: { // S3Configuration
45
45
  * BucketName: "STRING_VALUE",
46
46
  * ObjectKeyPrefix: "STRING_VALUE",
47
47
  * EncryptionOption: "SSE_S3" || "SSE_KMS",
@@ -64,12 +64,12 @@ export interface WriteRecordsCommandOutput extends WriteRecordsResponse, __Metad
64
64
  * import { TimestreamWriteClient, WriteRecordsCommand } from "@aws-sdk/client-timestream-write"; // ES Modules import
65
65
  * // const { TimestreamWriteClient, WriteRecordsCommand } = require("@aws-sdk/client-timestream-write"); // CommonJS import
66
66
  * const client = new TimestreamWriteClient(config);
67
- * const input = {
67
+ * const input = { // WriteRecordsRequest
68
68
  * DatabaseName: "STRING_VALUE", // required
69
69
  * TableName: "STRING_VALUE", // required
70
- * CommonAttributes: {
71
- * Dimensions: [
72
- * {
70
+ * CommonAttributes: { // Record
71
+ * Dimensions: [ // Dimensions
72
+ * { // Dimension
73
73
  * Name: "STRING_VALUE", // required
74
74
  * Value: "STRING_VALUE", // required
75
75
  * DimensionValueType: "VARCHAR",
@@ -81,15 +81,15 @@ export interface WriteRecordsCommandOutput extends WriteRecordsResponse, __Metad
81
81
  * Time: "STRING_VALUE",
82
82
  * TimeUnit: "MILLISECONDS" || "SECONDS" || "MICROSECONDS" || "NANOSECONDS",
83
83
  * Version: Number("long"),
84
- * MeasureValues: [
85
- * {
84
+ * MeasureValues: [ // MeasureValues
85
+ * { // MeasureValue
86
86
  * Name: "STRING_VALUE", // required
87
87
  * Value: "STRING_VALUE", // required
88
88
  * Type: "DOUBLE" || "BIGINT" || "VARCHAR" || "BOOLEAN" || "TIMESTAMP" || "MULTI", // required
89
89
  * },
90
90
  * ],
91
91
  * },
92
- * Records: [ // required
92
+ * Records: [ // Records // required
93
93
  * {
94
94
  * Dimensions: [
95
95
  * {
@@ -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.300.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.300.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.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",