@aws-sdk/client-forecastquery 3.379.1 → 3.385.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.
|
@@ -44,20 +44,24 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
44
44
|
*/
|
|
45
45
|
export interface QueryForecastRequest {
|
|
46
46
|
/**
|
|
47
|
+
* @public
|
|
47
48
|
* <p>The Amazon Resource Name (ARN) of the forecast to query.</p>
|
|
48
49
|
*/
|
|
49
50
|
ForecastArn: string | undefined;
|
|
50
51
|
/**
|
|
52
|
+
* @public
|
|
51
53
|
* <p>The start date for the forecast. Specify the date using this format: yyyy-MM-dd'T'HH:mm:ss
|
|
52
54
|
* (ISO 8601 format). For example, 2015-01-01T08:00:00.</p>
|
|
53
55
|
*/
|
|
54
56
|
StartDate?: string;
|
|
55
57
|
/**
|
|
58
|
+
* @public
|
|
56
59
|
* <p>The end date for the forecast. Specify the date using this format: yyyy-MM-dd'T'HH:mm:ss
|
|
57
60
|
* (ISO 8601 format). For example, 2015-01-01T20:00:00. </p>
|
|
58
61
|
*/
|
|
59
62
|
EndDate?: string;
|
|
60
63
|
/**
|
|
64
|
+
* @public
|
|
61
65
|
* <p>The filtering criteria to apply when retrieving the forecast. For example, to get the
|
|
62
66
|
* forecast for <code>client_21</code> in the electricity usage dataset, specify the
|
|
63
67
|
* following:</p>
|
|
@@ -70,6 +74,7 @@ export interface QueryForecastRequest {
|
|
|
70
74
|
*/
|
|
71
75
|
Filters: Record<string, string> | undefined;
|
|
72
76
|
/**
|
|
77
|
+
* @public
|
|
73
78
|
* <p>If the result of the previous request was truncated, the response includes a
|
|
74
79
|
* <code>NextToken</code>. To retrieve the next set of results, use the token in the next
|
|
75
80
|
* request. Tokens expire after 24 hours.</p>
|
|
@@ -83,10 +88,12 @@ export interface QueryForecastRequest {
|
|
|
83
88
|
*/
|
|
84
89
|
export interface DataPoint {
|
|
85
90
|
/**
|
|
91
|
+
* @public
|
|
86
92
|
* <p>The timestamp of the specific forecast.</p>
|
|
87
93
|
*/
|
|
88
94
|
Timestamp?: string;
|
|
89
95
|
/**
|
|
96
|
+
* @public
|
|
90
97
|
* <p>The forecast value.</p>
|
|
91
98
|
*/
|
|
92
99
|
Value?: number;
|
|
@@ -97,6 +104,7 @@ export interface DataPoint {
|
|
|
97
104
|
*/
|
|
98
105
|
export interface Forecast {
|
|
99
106
|
/**
|
|
107
|
+
* @public
|
|
100
108
|
* <p>The forecast.</p>
|
|
101
109
|
* <p>The <i>string</i> of the string-to-array map is one of the following
|
|
102
110
|
* values:</p>
|
|
@@ -121,6 +129,7 @@ export interface Forecast {
|
|
|
121
129
|
*/
|
|
122
130
|
export interface QueryForecastResponse {
|
|
123
131
|
/**
|
|
132
|
+
* @public
|
|
124
133
|
* <p>The forecast.</p>
|
|
125
134
|
*/
|
|
126
135
|
Forecast?: Forecast;
|
|
@@ -157,20 +166,24 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
157
166
|
*/
|
|
158
167
|
export interface QueryWhatIfForecastRequest {
|
|
159
168
|
/**
|
|
169
|
+
* @public
|
|
160
170
|
* <p>The Amazon Resource Name (ARN) of the what-if forecast to query.</p>
|
|
161
171
|
*/
|
|
162
172
|
WhatIfForecastArn: string | undefined;
|
|
163
173
|
/**
|
|
174
|
+
* @public
|
|
164
175
|
* <p>The start date for the what-if forecast. Specify the date using this format: yyyy-MM-dd'T'HH:mm:ss
|
|
165
176
|
* (ISO 8601 format). For example, 2015-01-01T08:00:00.</p>
|
|
166
177
|
*/
|
|
167
178
|
StartDate?: string;
|
|
168
179
|
/**
|
|
180
|
+
* @public
|
|
169
181
|
* <p>The end date for the what-if forecast. Specify the date using this format: yyyy-MM-dd'T'HH:mm:ss
|
|
170
182
|
* (ISO 8601 format). For example, 2015-01-01T20:00:00. </p>
|
|
171
183
|
*/
|
|
172
184
|
EndDate?: string;
|
|
173
185
|
/**
|
|
186
|
+
* @public
|
|
174
187
|
* <p>The filtering criteria to apply when retrieving the forecast. For example, to get the
|
|
175
188
|
* forecast for <code>client_21</code> in the electricity usage dataset, specify the
|
|
176
189
|
* following:</p>
|
|
@@ -181,6 +194,7 @@ export interface QueryWhatIfForecastRequest {
|
|
|
181
194
|
*/
|
|
182
195
|
Filters: Record<string, string> | undefined;
|
|
183
196
|
/**
|
|
197
|
+
* @public
|
|
184
198
|
* <p>If the result of the previous request was truncated, the response includes a
|
|
185
199
|
* <code>NextToken</code>. To retrieve the next set of results, use the token in the next
|
|
186
200
|
* request. Tokens expire after 24 hours.</p>
|
|
@@ -192,6 +206,7 @@ export interface QueryWhatIfForecastRequest {
|
|
|
192
206
|
*/
|
|
193
207
|
export interface QueryWhatIfForecastResponse {
|
|
194
208
|
/**
|
|
209
|
+
* @public
|
|
195
210
|
* <p>Provides information about a forecast. Returned as part of the <a>QueryForecast</a> response.</p>
|
|
196
211
|
*/
|
|
197
212
|
Forecast?: Forecast;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-forecastquery",
|
|
3
3
|
"description": "AWS SDK for JavaScript Forecastquery Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.385.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,15 +21,15 @@
|
|
|
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/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|