@aws-sdk/client-timestream-query 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.
- package/dist-types/commands/CancelQueryCommand.d.ts +1 -1
- package/dist-types/commands/CreateScheduledQueryCommand.d.ts +17 -17
- package/dist-types/commands/DeleteScheduledQueryCommand.d.ts +1 -1
- package/dist-types/commands/DescribeScheduledQueryCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteScheduledQueryCommand.d.ts +1 -1
- package/dist-types/commands/ListScheduledQueriesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PrepareQueryCommand.d.ts +1 -1
- package/dist-types/commands/QueryCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -31,7 +31,7 @@ export interface CancelQueryCommandOutput extends CancelQueryResponse, __Metadat
|
|
|
31
31
|
* import { TimestreamQueryClient, CancelQueryCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
32
32
|
* // const { TimestreamQueryClient, CancelQueryCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
33
33
|
* const client = new TimestreamQueryClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // CancelQueryRequest
|
|
35
35
|
* QueryId: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CancelQueryCommand(input);
|
|
@@ -30,40 +30,40 @@ export interface CreateScheduledQueryCommandOutput extends CreateScheduledQueryR
|
|
|
30
30
|
* import { TimestreamQueryClient, CreateScheduledQueryCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
31
31
|
* // const { TimestreamQueryClient, CreateScheduledQueryCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
32
32
|
* const client = new TimestreamQueryClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // CreateScheduledQueryRequest
|
|
34
34
|
* Name: "STRING_VALUE", // required
|
|
35
35
|
* QueryString: "STRING_VALUE", // required
|
|
36
|
-
* ScheduleConfiguration: {
|
|
36
|
+
* ScheduleConfiguration: { // ScheduleConfiguration
|
|
37
37
|
* ScheduleExpression: "STRING_VALUE", // required
|
|
38
38
|
* },
|
|
39
|
-
* NotificationConfiguration: {
|
|
40
|
-
* SnsConfiguration: {
|
|
39
|
+
* NotificationConfiguration: { // NotificationConfiguration
|
|
40
|
+
* SnsConfiguration: { // SnsConfiguration
|
|
41
41
|
* TopicArn: "STRING_VALUE", // required
|
|
42
42
|
* },
|
|
43
43
|
* },
|
|
44
|
-
* TargetConfiguration: {
|
|
45
|
-
* TimestreamConfiguration: {
|
|
44
|
+
* TargetConfiguration: { // TargetConfiguration
|
|
45
|
+
* TimestreamConfiguration: { // TimestreamConfiguration
|
|
46
46
|
* DatabaseName: "STRING_VALUE", // required
|
|
47
47
|
* TableName: "STRING_VALUE", // required
|
|
48
48
|
* TimeColumn: "STRING_VALUE", // required
|
|
49
|
-
* DimensionMappings: [ // required
|
|
50
|
-
* {
|
|
49
|
+
* DimensionMappings: [ // DimensionMappingList // required
|
|
50
|
+
* { // DimensionMapping
|
|
51
51
|
* Name: "STRING_VALUE", // required
|
|
52
52
|
* DimensionValueType: "STRING_VALUE", // required
|
|
53
53
|
* },
|
|
54
54
|
* ],
|
|
55
|
-
* MultiMeasureMappings: {
|
|
55
|
+
* MultiMeasureMappings: { // MultiMeasureMappings
|
|
56
56
|
* TargetMultiMeasureName: "STRING_VALUE",
|
|
57
|
-
* MultiMeasureAttributeMappings: [ // required
|
|
58
|
-
* {
|
|
57
|
+
* MultiMeasureAttributeMappings: [ // MultiMeasureAttributeMappingList // required
|
|
58
|
+
* { // MultiMeasureAttributeMapping
|
|
59
59
|
* SourceColumn: "STRING_VALUE", // required
|
|
60
60
|
* TargetMultiMeasureAttributeName: "STRING_VALUE",
|
|
61
61
|
* MeasureValueType: "STRING_VALUE", // required
|
|
62
62
|
* },
|
|
63
63
|
* ],
|
|
64
64
|
* },
|
|
65
|
-
* MixedMeasureMappings: [
|
|
66
|
-
* {
|
|
65
|
+
* MixedMeasureMappings: [ // MixedMeasureMappingList
|
|
66
|
+
* { // MixedMeasureMapping
|
|
67
67
|
* MeasureName: "STRING_VALUE",
|
|
68
68
|
* SourceColumn: "STRING_VALUE",
|
|
69
69
|
* TargetMeasureName: "STRING_VALUE",
|
|
@@ -82,15 +82,15 @@ export interface CreateScheduledQueryCommandOutput extends CreateScheduledQueryR
|
|
|
82
82
|
* },
|
|
83
83
|
* ClientToken: "STRING_VALUE",
|
|
84
84
|
* ScheduledQueryExecutionRoleArn: "STRING_VALUE", // required
|
|
85
|
-
* Tags: [
|
|
86
|
-
* {
|
|
85
|
+
* Tags: [ // TagList
|
|
86
|
+
* { // Tag
|
|
87
87
|
* Key: "STRING_VALUE", // required
|
|
88
88
|
* Value: "STRING_VALUE", // required
|
|
89
89
|
* },
|
|
90
90
|
* ],
|
|
91
91
|
* KmsKeyId: "STRING_VALUE",
|
|
92
|
-
* ErrorReportConfiguration: {
|
|
93
|
-
* S3Configuration: {
|
|
92
|
+
* ErrorReportConfiguration: { // ErrorReportConfiguration
|
|
93
|
+
* S3Configuration: { // S3Configuration
|
|
94
94
|
* BucketName: "STRING_VALUE", // required
|
|
95
95
|
* ObjectKeyPrefix: "STRING_VALUE",
|
|
96
96
|
* EncryptionOption: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface DeleteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { TimestreamQueryClient, DeleteScheduledQueryCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
27
27
|
* // const { TimestreamQueryClient, DeleteScheduledQueryCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
28
28
|
* const client = new TimestreamQueryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteScheduledQueryRequest
|
|
30
30
|
* ScheduledQueryArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteScheduledQueryCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeScheduledQueryCommandOutput extends DescribeScheduledQu
|
|
|
26
26
|
* import { TimestreamQueryClient, DescribeScheduledQueryCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
27
27
|
* // const { TimestreamQueryClient, DescribeScheduledQueryCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
28
28
|
* const client = new TimestreamQueryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeScheduledQueryRequest
|
|
30
30
|
* ScheduledQueryArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeScheduledQueryCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ExecuteScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { TimestreamQueryClient, ExecuteScheduledQueryCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
27
27
|
* // const { TimestreamQueryClient, ExecuteScheduledQueryCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
28
28
|
* const client = new TimestreamQueryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ExecuteScheduledQueryRequest
|
|
30
30
|
* ScheduledQueryArn: "STRING_VALUE", // required
|
|
31
31
|
* InvocationTime: new Date("TIMESTAMP"), // required
|
|
32
32
|
* ClientToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListScheduledQueriesCommandOutput extends ListScheduledQueriesR
|
|
|
26
26
|
* import { TimestreamQueryClient, ListScheduledQueriesCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
27
27
|
* // const { TimestreamQueryClient, ListScheduledQueriesCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
28
28
|
* const client = new TimestreamQueryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListScheduledQueriesRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { TimestreamQueryClient, ListTagsForResourceCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
27
27
|
* // const { TimestreamQueryClient, ListTagsForResourceCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
28
28
|
* const client = new TimestreamQueryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface PrepareQueryCommandOutput extends PrepareQueryResponse, __Metad
|
|
|
28
28
|
* import { TimestreamQueryClient, PrepareQueryCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
29
29
|
* // const { TimestreamQueryClient, PrepareQueryCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
30
30
|
* const client = new TimestreamQueryClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // PrepareQueryRequest
|
|
32
32
|
* QueryString: "STRING_VALUE", // required
|
|
33
33
|
* ValidateOnly: true || false,
|
|
34
34
|
* };
|
|
@@ -56,7 +56,7 @@ export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {
|
|
|
56
56
|
* import { TimestreamQueryClient, QueryCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
57
57
|
* // const { TimestreamQueryClient, QueryCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
58
58
|
* const client = new TimestreamQueryClient(config);
|
|
59
|
-
* const input = {
|
|
59
|
+
* const input = { // QueryRequest
|
|
60
60
|
* QueryString: "STRING_VALUE", // required
|
|
61
61
|
* ClientToken: "STRING_VALUE",
|
|
62
62
|
* NextToken: "STRING_VALUE",
|
|
@@ -28,10 +28,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
28
28
|
* import { TimestreamQueryClient, TagResourceCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
29
29
|
* // const { TimestreamQueryClient, TagResourceCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
30
30
|
* const client = new TimestreamQueryClient(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 { TimestreamQueryClient, UntagResourceCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
27
27
|
* // const { TimestreamQueryClient, UntagResourceCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
28
28
|
* const client = new TimestreamQueryClient(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
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateScheduledQueryCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { TimestreamQueryClient, UpdateScheduledQueryCommand } from "@aws-sdk/client-timestream-query"; // ES Modules import
|
|
27
27
|
* // const { TimestreamQueryClient, UpdateScheduledQueryCommand } = require("@aws-sdk/client-timestream-query"); // CommonJS import
|
|
28
28
|
* const client = new TimestreamQueryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateScheduledQueryRequest
|
|
30
30
|
* ScheduledQueryArn: "STRING_VALUE", // required
|
|
31
31
|
* State: "STRING_VALUE", // required
|
|
32
32
|
* };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-query",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Query Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|