@aws-sdk/client-timestream-write 3.300.0 → 3.301.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.
@@ -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
  * {
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.301.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,9 +21,9 @@
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",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",