@aws-sdk/client-forecast 3.41.0 → 3.46.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/CHANGELOG.md +47 -0
- package/README.md +7 -7
- package/dist-cjs/Forecast.js +150 -0
- package/dist-cjs/commands/CreateAutoPredictorCommand.js +36 -0
- package/dist-cjs/commands/CreateExplainabilityCommand.js +36 -0
- package/dist-cjs/commands/CreateExplainabilityExportCommand.js +36 -0
- package/dist-cjs/commands/DeleteExplainabilityCommand.js +36 -0
- package/dist-cjs/commands/DeleteExplainabilityExportCommand.js +36 -0
- package/dist-cjs/commands/DescribeAutoPredictorCommand.js +36 -0
- package/dist-cjs/commands/DescribeExplainabilityCommand.js +36 -0
- package/dist-cjs/commands/DescribeExplainabilityExportCommand.js +36 -0
- package/dist-cjs/commands/ListExplainabilitiesCommand.js +36 -0
- package/dist-cjs/commands/ListExplainabilityExportsCommand.js +36 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +236 -61
- package/dist-cjs/protocols/Aws_json1_1.js +1283 -98
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/Forecast.js +150 -0
- package/dist-es/commands/CreateAutoPredictorCommand.js +39 -0
- package/dist-es/commands/CreateExplainabilityCommand.js +39 -0
- package/dist-es/commands/CreateExplainabilityExportCommand.js +39 -0
- package/dist-es/commands/DeleteExplainabilityCommand.js +39 -0
- package/dist-es/commands/DeleteExplainabilityExportCommand.js +39 -0
- package/dist-es/commands/DescribeAutoPredictorCommand.js +39 -0
- package/dist-es/commands/DescribeExplainabilityCommand.js +39 -0
- package/dist-es/commands/DescribeExplainabilityExportCommand.js +39 -0
- package/dist-es/commands/ListExplainabilitiesCommand.js +39 -0
- package/dist-es/commands/ListExplainabilityExportsCommand.js +39 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +160 -40
- package/dist-es/protocols/Aws_json1_1.js +1367 -138
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/Forecast.d.ts +306 -40
- package/dist-types/ForecastClient.d.ts +12 -2
- package/dist-types/commands/CreateAutoPredictorCommand.d.ts +83 -0
- package/dist-types/commands/CreateExplainabilityCommand.d.ts +153 -0
- package/dist-types/commands/CreateExplainabilityExportCommand.d.ts +43 -0
- package/dist-types/commands/CreatePredictorBacktestExportJobCommand.d.ts +4 -4
- package/dist-types/commands/CreatePredictorCommand.d.ts +19 -18
- package/dist-types/commands/DeleteExplainabilityCommand.d.ts +37 -0
- package/dist-types/commands/DeleteExplainabilityExportCommand.d.ts +35 -0
- package/dist-types/commands/DeletePredictorCommand.d.ts +2 -3
- package/dist-types/commands/DescribeAutoPredictorCommand.d.ts +35 -0
- package/dist-types/commands/DescribeExplainabilityCommand.d.ts +35 -0
- package/dist-types/commands/DescribeExplainabilityExportCommand.d.ts +35 -0
- package/dist-types/commands/DescribePredictorBacktestExportJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribePredictorCommand.d.ts +5 -1
- package/dist-types/commands/ListExplainabilitiesCommand.d.ts +39 -0
- package/dist-types/commands/ListExplainabilityExportsCommand.d.ts +38 -0
- package/dist-types/commands/ListPredictorBacktestExportJobsCommand.d.ts +4 -4
- package/dist-types/commands/ListPredictorsCommand.d.ts +5 -5
- package/dist-types/commands/StopResourceCommand.d.ts +9 -3
- package/dist-types/commands/TagResourceCommand.d.ts +4 -1
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +2109 -495
- package/dist-types/protocols/Aws_json1_1.d.ts +30 -0
- package/dist-types/ts3.4/Forecast.d.ts +50 -0
- package/dist-types/ts3.4/ForecastClient.d.ts +12 -2
- package/dist-types/ts3.4/commands/CreateAutoPredictorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateExplainabilityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateExplainabilityExportCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteExplainabilityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteExplainabilityExportCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAutoPredictorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeExplainabilityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeExplainabilityExportCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListExplainabilitiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListExplainabilityExportsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +492 -83
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +30 -0
- package/package.json +36 -43
|
@@ -1,55 +1,60 @@
|
|
|
1
1
|
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
|
|
3
|
+
export interface AdditionalDataset {
|
|
4
|
+
|
|
5
|
+
Name: string | undefined;
|
|
6
|
+
|
|
7
|
+
Configuration?: {
|
|
8
|
+
[key: string]: string[];
|
|
9
|
+
};
|
|
6
10
|
}
|
|
7
|
-
export declare
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
INVENTORY_PLANNING = "INVENTORY_PLANNING",
|
|
11
|
-
METRICS = "METRICS",
|
|
12
|
-
RETAIL = "RETAIL",
|
|
13
|
-
WEB_TRAFFIC = "WEB_TRAFFIC",
|
|
14
|
-
WORK_FORCE = "WORK_FORCE"
|
|
11
|
+
export declare namespace AdditionalDataset {
|
|
12
|
+
|
|
13
|
+
const filterSensitiveLog: (obj: AdditionalDataset) => any;
|
|
15
14
|
}
|
|
16
15
|
|
|
17
|
-
export interface
|
|
16
|
+
export interface AttributeConfig {
|
|
18
17
|
|
|
19
|
-
|
|
18
|
+
AttributeName: string | undefined;
|
|
20
19
|
|
|
21
|
-
|
|
20
|
+
Transformations: {
|
|
21
|
+
[key: string]: string;
|
|
22
|
+
} | undefined;
|
|
22
23
|
}
|
|
23
|
-
export declare namespace
|
|
24
|
+
export declare namespace AttributeConfig {
|
|
24
25
|
|
|
25
|
-
const filterSensitiveLog: (obj:
|
|
26
|
-
}
|
|
27
|
-
export declare enum AttributeType {
|
|
28
|
-
FLOAT = "float",
|
|
29
|
-
GEOLOCATION = "geolocation",
|
|
30
|
-
INTEGER = "integer",
|
|
31
|
-
STRING = "string",
|
|
32
|
-
TIMESTAMP = "timestamp"
|
|
26
|
+
const filterSensitiveLog: (obj: AttributeConfig) => any;
|
|
33
27
|
}
|
|
34
28
|
|
|
35
|
-
export interface
|
|
29
|
+
export interface DataConfig {
|
|
36
30
|
|
|
37
|
-
|
|
31
|
+
DatasetGroupArn: string | undefined;
|
|
38
32
|
|
|
39
|
-
|
|
33
|
+
AttributeConfigs?: AttributeConfig[];
|
|
34
|
+
|
|
35
|
+
AdditionalDatasets?: AdditionalDataset[];
|
|
40
36
|
}
|
|
41
|
-
export declare namespace
|
|
37
|
+
export declare namespace DataConfig {
|
|
42
38
|
|
|
43
|
-
const filterSensitiveLog: (obj:
|
|
39
|
+
const filterSensitiveLog: (obj: DataConfig) => any;
|
|
44
40
|
}
|
|
45
41
|
|
|
46
|
-
export interface
|
|
42
|
+
export interface EncryptionConfig {
|
|
47
43
|
|
|
48
|
-
|
|
44
|
+
RoleArn: string | undefined;
|
|
45
|
+
|
|
46
|
+
KMSKeyArn: string | undefined;
|
|
49
47
|
}
|
|
50
|
-
export declare namespace
|
|
48
|
+
export declare namespace EncryptionConfig {
|
|
51
49
|
|
|
52
|
-
const filterSensitiveLog: (obj:
|
|
50
|
+
const filterSensitiveLog: (obj: EncryptionConfig) => any;
|
|
51
|
+
}
|
|
52
|
+
export declare enum OptimizationMetric {
|
|
53
|
+
AverageWeightedQuantileLoss = "AverageWeightedQuantileLoss",
|
|
54
|
+
MAPE = "MAPE",
|
|
55
|
+
MASE = "MASE",
|
|
56
|
+
RMSE = "RMSE",
|
|
57
|
+
WAPE = "WAPE"
|
|
53
58
|
}
|
|
54
59
|
|
|
55
60
|
export interface Tag {
|
|
@@ -62,33 +67,41 @@ export declare namespace Tag {
|
|
|
62
67
|
|
|
63
68
|
const filterSensitiveLog: (obj: Tag) => any;
|
|
64
69
|
}
|
|
65
|
-
export interface
|
|
70
|
+
export interface CreateAutoPredictorRequest {
|
|
66
71
|
|
|
67
|
-
|
|
72
|
+
PredictorName: string | undefined;
|
|
68
73
|
|
|
69
|
-
|
|
74
|
+
ForecastHorizon?: number;
|
|
70
75
|
|
|
71
|
-
|
|
76
|
+
ForecastTypes?: string[];
|
|
72
77
|
|
|
73
|
-
|
|
78
|
+
ForecastDimensions?: string[];
|
|
74
79
|
|
|
75
|
-
|
|
80
|
+
ForecastFrequency?: string;
|
|
81
|
+
|
|
82
|
+
DataConfig?: DataConfig;
|
|
76
83
|
|
|
77
84
|
EncryptionConfig?: EncryptionConfig;
|
|
78
85
|
|
|
86
|
+
ReferencePredictorArn?: string;
|
|
87
|
+
|
|
88
|
+
OptimizationMetric?: OptimizationMetric | string;
|
|
89
|
+
|
|
90
|
+
ExplainPredictor?: boolean;
|
|
91
|
+
|
|
79
92
|
Tags?: Tag[];
|
|
80
93
|
}
|
|
81
|
-
export declare namespace
|
|
94
|
+
export declare namespace CreateAutoPredictorRequest {
|
|
82
95
|
|
|
83
|
-
const filterSensitiveLog: (obj:
|
|
96
|
+
const filterSensitiveLog: (obj: CreateAutoPredictorRequest) => any;
|
|
84
97
|
}
|
|
85
|
-
export interface
|
|
98
|
+
export interface CreateAutoPredictorResponse {
|
|
86
99
|
|
|
87
|
-
|
|
100
|
+
PredictorArn?: string;
|
|
88
101
|
}
|
|
89
|
-
export declare namespace
|
|
102
|
+
export declare namespace CreateAutoPredictorResponse {
|
|
90
103
|
|
|
91
|
-
const filterSensitiveLog: (obj:
|
|
104
|
+
const filterSensitiveLog: (obj: CreateAutoPredictorResponse) => any;
|
|
92
105
|
}
|
|
93
106
|
|
|
94
107
|
export interface InvalidInputException extends __SmithyException, $MetadataBearer {
|
|
@@ -120,6 +133,95 @@ export declare namespace ResourceAlreadyExistsException {
|
|
|
120
133
|
|
|
121
134
|
const filterSensitiveLog: (obj: ResourceAlreadyExistsException) => any;
|
|
122
135
|
}
|
|
136
|
+
|
|
137
|
+
export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
|
|
138
|
+
name: "ResourceInUseException";
|
|
139
|
+
$fault: "client";
|
|
140
|
+
Message?: string;
|
|
141
|
+
}
|
|
142
|
+
export declare namespace ResourceInUseException {
|
|
143
|
+
|
|
144
|
+
const filterSensitiveLog: (obj: ResourceInUseException) => any;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
148
|
+
name: "ResourceNotFoundException";
|
|
149
|
+
$fault: "client";
|
|
150
|
+
Message?: string;
|
|
151
|
+
}
|
|
152
|
+
export declare namespace ResourceNotFoundException {
|
|
153
|
+
|
|
154
|
+
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
155
|
+
}
|
|
156
|
+
export declare enum DatasetType {
|
|
157
|
+
ITEM_METADATA = "ITEM_METADATA",
|
|
158
|
+
RELATED_TIME_SERIES = "RELATED_TIME_SERIES",
|
|
159
|
+
TARGET_TIME_SERIES = "TARGET_TIME_SERIES"
|
|
160
|
+
}
|
|
161
|
+
export declare enum Domain {
|
|
162
|
+
CUSTOM = "CUSTOM",
|
|
163
|
+
EC2_CAPACITY = "EC2_CAPACITY",
|
|
164
|
+
INVENTORY_PLANNING = "INVENTORY_PLANNING",
|
|
165
|
+
METRICS = "METRICS",
|
|
166
|
+
RETAIL = "RETAIL",
|
|
167
|
+
WEB_TRAFFIC = "WEB_TRAFFIC",
|
|
168
|
+
WORK_FORCE = "WORK_FORCE"
|
|
169
|
+
}
|
|
170
|
+
export declare enum AttributeType {
|
|
171
|
+
FLOAT = "float",
|
|
172
|
+
GEOLOCATION = "geolocation",
|
|
173
|
+
INTEGER = "integer",
|
|
174
|
+
STRING = "string",
|
|
175
|
+
TIMESTAMP = "timestamp"
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export interface SchemaAttribute {
|
|
179
|
+
|
|
180
|
+
AttributeName?: string;
|
|
181
|
+
|
|
182
|
+
AttributeType?: AttributeType | string;
|
|
183
|
+
}
|
|
184
|
+
export declare namespace SchemaAttribute {
|
|
185
|
+
|
|
186
|
+
const filterSensitiveLog: (obj: SchemaAttribute) => any;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export interface Schema {
|
|
190
|
+
|
|
191
|
+
Attributes?: SchemaAttribute[];
|
|
192
|
+
}
|
|
193
|
+
export declare namespace Schema {
|
|
194
|
+
|
|
195
|
+
const filterSensitiveLog: (obj: Schema) => any;
|
|
196
|
+
}
|
|
197
|
+
export interface CreateDatasetRequest {
|
|
198
|
+
|
|
199
|
+
DatasetName: string | undefined;
|
|
200
|
+
|
|
201
|
+
Domain: Domain | string | undefined;
|
|
202
|
+
|
|
203
|
+
DatasetType: DatasetType | string | undefined;
|
|
204
|
+
|
|
205
|
+
DataFrequency?: string;
|
|
206
|
+
|
|
207
|
+
Schema: Schema | undefined;
|
|
208
|
+
|
|
209
|
+
EncryptionConfig?: EncryptionConfig;
|
|
210
|
+
|
|
211
|
+
Tags?: Tag[];
|
|
212
|
+
}
|
|
213
|
+
export declare namespace CreateDatasetRequest {
|
|
214
|
+
|
|
215
|
+
const filterSensitiveLog: (obj: CreateDatasetRequest) => any;
|
|
216
|
+
}
|
|
217
|
+
export interface CreateDatasetResponse {
|
|
218
|
+
|
|
219
|
+
DatasetArn?: string;
|
|
220
|
+
}
|
|
221
|
+
export declare namespace CreateDatasetResponse {
|
|
222
|
+
|
|
223
|
+
const filterSensitiveLog: (obj: CreateDatasetResponse) => any;
|
|
224
|
+
}
|
|
123
225
|
export interface CreateDatasetGroupRequest {
|
|
124
226
|
|
|
125
227
|
DatasetGroupName: string | undefined;
|
|
@@ -143,26 +245,6 @@ export declare namespace CreateDatasetGroupResponse {
|
|
|
143
245
|
const filterSensitiveLog: (obj: CreateDatasetGroupResponse) => any;
|
|
144
246
|
}
|
|
145
247
|
|
|
146
|
-
export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
|
|
147
|
-
name: "ResourceInUseException";
|
|
148
|
-
$fault: "client";
|
|
149
|
-
Message?: string;
|
|
150
|
-
}
|
|
151
|
-
export declare namespace ResourceInUseException {
|
|
152
|
-
|
|
153
|
-
const filterSensitiveLog: (obj: ResourceInUseException) => any;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
157
|
-
name: "ResourceNotFoundException";
|
|
158
|
-
$fault: "client";
|
|
159
|
-
Message?: string;
|
|
160
|
-
}
|
|
161
|
-
export declare namespace ResourceNotFoundException {
|
|
162
|
-
|
|
163
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
248
|
export interface S3Config {
|
|
167
249
|
|
|
168
250
|
Path: string | undefined;
|
|
@@ -214,6 +296,88 @@ export declare namespace CreateDatasetImportJobResponse {
|
|
|
214
296
|
|
|
215
297
|
const filterSensitiveLog: (obj: CreateDatasetImportJobResponse) => any;
|
|
216
298
|
}
|
|
299
|
+
export declare enum TimePointGranularity {
|
|
300
|
+
ALL = "ALL",
|
|
301
|
+
SPECIFIC = "SPECIFIC"
|
|
302
|
+
}
|
|
303
|
+
export declare enum TimeSeriesGranularity {
|
|
304
|
+
ALL = "ALL",
|
|
305
|
+
SPECIFIC = "SPECIFIC"
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
export interface ExplainabilityConfig {
|
|
309
|
+
|
|
310
|
+
TimeSeriesGranularity: TimeSeriesGranularity | string | undefined;
|
|
311
|
+
|
|
312
|
+
TimePointGranularity: TimePointGranularity | string | undefined;
|
|
313
|
+
}
|
|
314
|
+
export declare namespace ExplainabilityConfig {
|
|
315
|
+
|
|
316
|
+
const filterSensitiveLog: (obj: ExplainabilityConfig) => any;
|
|
317
|
+
}
|
|
318
|
+
export interface CreateExplainabilityRequest {
|
|
319
|
+
|
|
320
|
+
ExplainabilityName: string | undefined;
|
|
321
|
+
|
|
322
|
+
ResourceArn: string | undefined;
|
|
323
|
+
|
|
324
|
+
ExplainabilityConfig: ExplainabilityConfig | undefined;
|
|
325
|
+
|
|
326
|
+
DataSource?: DataSource;
|
|
327
|
+
|
|
328
|
+
Schema?: Schema;
|
|
329
|
+
|
|
330
|
+
EnableVisualization?: boolean;
|
|
331
|
+
|
|
332
|
+
StartDateTime?: string;
|
|
333
|
+
|
|
334
|
+
EndDateTime?: string;
|
|
335
|
+
|
|
336
|
+
Tags?: Tag[];
|
|
337
|
+
}
|
|
338
|
+
export declare namespace CreateExplainabilityRequest {
|
|
339
|
+
|
|
340
|
+
const filterSensitiveLog: (obj: CreateExplainabilityRequest) => any;
|
|
341
|
+
}
|
|
342
|
+
export interface CreateExplainabilityResponse {
|
|
343
|
+
|
|
344
|
+
ExplainabilityArn?: string;
|
|
345
|
+
}
|
|
346
|
+
export declare namespace CreateExplainabilityResponse {
|
|
347
|
+
|
|
348
|
+
const filterSensitiveLog: (obj: CreateExplainabilityResponse) => any;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
export interface DataDestination {
|
|
352
|
+
|
|
353
|
+
S3Config: S3Config | undefined;
|
|
354
|
+
}
|
|
355
|
+
export declare namespace DataDestination {
|
|
356
|
+
|
|
357
|
+
const filterSensitiveLog: (obj: DataDestination) => any;
|
|
358
|
+
}
|
|
359
|
+
export interface CreateExplainabilityExportRequest {
|
|
360
|
+
|
|
361
|
+
ExplainabilityExportName: string | undefined;
|
|
362
|
+
|
|
363
|
+
ExplainabilityArn: string | undefined;
|
|
364
|
+
|
|
365
|
+
Destination: DataDestination | undefined;
|
|
366
|
+
|
|
367
|
+
Tags?: Tag[];
|
|
368
|
+
}
|
|
369
|
+
export declare namespace CreateExplainabilityExportRequest {
|
|
370
|
+
|
|
371
|
+
const filterSensitiveLog: (obj: CreateExplainabilityExportRequest) => any;
|
|
372
|
+
}
|
|
373
|
+
export interface CreateExplainabilityExportResponse {
|
|
374
|
+
|
|
375
|
+
ExplainabilityExportArn?: string;
|
|
376
|
+
}
|
|
377
|
+
export declare namespace CreateExplainabilityExportResponse {
|
|
378
|
+
|
|
379
|
+
const filterSensitiveLog: (obj: CreateExplainabilityExportResponse) => any;
|
|
380
|
+
}
|
|
217
381
|
export interface CreateForecastRequest {
|
|
218
382
|
|
|
219
383
|
ForecastName: string | undefined;
|
|
@@ -236,15 +400,6 @@ export declare namespace CreateForecastResponse {
|
|
|
236
400
|
|
|
237
401
|
const filterSensitiveLog: (obj: CreateForecastResponse) => any;
|
|
238
402
|
}
|
|
239
|
-
|
|
240
|
-
export interface DataDestination {
|
|
241
|
-
|
|
242
|
-
S3Config: S3Config | undefined;
|
|
243
|
-
}
|
|
244
|
-
export declare namespace DataDestination {
|
|
245
|
-
|
|
246
|
-
const filterSensitiveLog: (obj: DataDestination) => any;
|
|
247
|
-
}
|
|
248
403
|
export interface CreateForecastExportJobRequest {
|
|
249
404
|
|
|
250
405
|
ForecastExportJobName: string | undefined;
|
|
@@ -268,6 +423,7 @@ export declare namespace CreateForecastExportJobResponse {
|
|
|
268
423
|
const filterSensitiveLog: (obj: CreateForecastExportJobResponse) => any;
|
|
269
424
|
}
|
|
270
425
|
export declare enum AutoMLOverrideStrategy {
|
|
426
|
+
AccuracyOptimized = "AccuracyOptimized",
|
|
271
427
|
LatencyOptimized = "LatencyOptimized"
|
|
272
428
|
}
|
|
273
429
|
|
|
@@ -412,13 +568,6 @@ export declare namespace InputDataConfig {
|
|
|
412
568
|
|
|
413
569
|
const filterSensitiveLog: (obj: InputDataConfig) => any;
|
|
414
570
|
}
|
|
415
|
-
export declare enum OptimizationMetric {
|
|
416
|
-
AverageWeightedQuantileLoss = "AverageWeightedQuantileLoss",
|
|
417
|
-
MAPE = "MAPE",
|
|
418
|
-
MASE = "MASE",
|
|
419
|
-
RMSE = "RMSE",
|
|
420
|
-
WAPE = "WAPE"
|
|
421
|
-
}
|
|
422
571
|
export interface CreatePredictorRequest {
|
|
423
572
|
|
|
424
573
|
PredictorName: string | undefined;
|
|
@@ -511,6 +660,22 @@ export declare namespace DeleteDatasetImportJobRequest {
|
|
|
511
660
|
|
|
512
661
|
const filterSensitiveLog: (obj: DeleteDatasetImportJobRequest) => any;
|
|
513
662
|
}
|
|
663
|
+
export interface DeleteExplainabilityRequest {
|
|
664
|
+
|
|
665
|
+
ExplainabilityArn: string | undefined;
|
|
666
|
+
}
|
|
667
|
+
export declare namespace DeleteExplainabilityRequest {
|
|
668
|
+
|
|
669
|
+
const filterSensitiveLog: (obj: DeleteExplainabilityRequest) => any;
|
|
670
|
+
}
|
|
671
|
+
export interface DeleteExplainabilityExportRequest {
|
|
672
|
+
|
|
673
|
+
ExplainabilityExportArn: string | undefined;
|
|
674
|
+
}
|
|
675
|
+
export declare namespace DeleteExplainabilityExportRequest {
|
|
676
|
+
|
|
677
|
+
const filterSensitiveLog: (obj: DeleteExplainabilityExportRequest) => any;
|
|
678
|
+
}
|
|
514
679
|
export interface DeleteForecastRequest {
|
|
515
680
|
|
|
516
681
|
ForecastArn: string | undefined;
|
|
@@ -551,6 +716,80 @@ export declare namespace DeleteResourceTreeRequest {
|
|
|
551
716
|
|
|
552
717
|
const filterSensitiveLog: (obj: DeleteResourceTreeRequest) => any;
|
|
553
718
|
}
|
|
719
|
+
export interface DescribeAutoPredictorRequest {
|
|
720
|
+
|
|
721
|
+
PredictorArn: string | undefined;
|
|
722
|
+
}
|
|
723
|
+
export declare namespace DescribeAutoPredictorRequest {
|
|
724
|
+
|
|
725
|
+
const filterSensitiveLog: (obj: DescribeAutoPredictorRequest) => any;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
export interface ExplainabilityInfo {
|
|
729
|
+
|
|
730
|
+
ExplainabilityArn?: string;
|
|
731
|
+
|
|
732
|
+
Status?: string;
|
|
733
|
+
}
|
|
734
|
+
export declare namespace ExplainabilityInfo {
|
|
735
|
+
|
|
736
|
+
const filterSensitiveLog: (obj: ExplainabilityInfo) => any;
|
|
737
|
+
}
|
|
738
|
+
export declare enum State {
|
|
739
|
+
Active = "Active",
|
|
740
|
+
Deleted = "Deleted"
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
export interface ReferencePredictorSummary {
|
|
744
|
+
|
|
745
|
+
Arn?: string;
|
|
746
|
+
|
|
747
|
+
State?: State | string;
|
|
748
|
+
}
|
|
749
|
+
export declare namespace ReferencePredictorSummary {
|
|
750
|
+
|
|
751
|
+
const filterSensitiveLog: (obj: ReferencePredictorSummary) => any;
|
|
752
|
+
}
|
|
753
|
+
export interface DescribeAutoPredictorResponse {
|
|
754
|
+
|
|
755
|
+
PredictorArn?: string;
|
|
756
|
+
|
|
757
|
+
PredictorName?: string;
|
|
758
|
+
|
|
759
|
+
ForecastHorizon?: number;
|
|
760
|
+
|
|
761
|
+
ForecastTypes?: string[];
|
|
762
|
+
|
|
763
|
+
ForecastFrequency?: string;
|
|
764
|
+
|
|
765
|
+
ForecastDimensions?: string[];
|
|
766
|
+
|
|
767
|
+
DatasetImportJobArns?: string[];
|
|
768
|
+
|
|
769
|
+
DataConfig?: DataConfig;
|
|
770
|
+
|
|
771
|
+
EncryptionConfig?: EncryptionConfig;
|
|
772
|
+
|
|
773
|
+
ReferencePredictorSummary?: ReferencePredictorSummary;
|
|
774
|
+
|
|
775
|
+
EstimatedTimeRemainingInMinutes?: number;
|
|
776
|
+
|
|
777
|
+
Status?: string;
|
|
778
|
+
|
|
779
|
+
Message?: string;
|
|
780
|
+
|
|
781
|
+
CreationTime?: Date;
|
|
782
|
+
|
|
783
|
+
LastModificationTime?: Date;
|
|
784
|
+
|
|
785
|
+
OptimizationMetric?: OptimizationMetric | string;
|
|
786
|
+
|
|
787
|
+
ExplainabilityInfo?: ExplainabilityInfo;
|
|
788
|
+
}
|
|
789
|
+
export declare namespace DescribeAutoPredictorResponse {
|
|
790
|
+
|
|
791
|
+
const filterSensitiveLog: (obj: DescribeAutoPredictorResponse) => any;
|
|
792
|
+
}
|
|
554
793
|
export interface DescribeDatasetRequest {
|
|
555
794
|
|
|
556
795
|
DatasetArn: string | undefined;
|
|
@@ -690,6 +929,78 @@ export declare namespace DescribeDatasetImportJobResponse {
|
|
|
690
929
|
|
|
691
930
|
const filterSensitiveLog: (obj: DescribeDatasetImportJobResponse) => any;
|
|
692
931
|
}
|
|
932
|
+
export interface DescribeExplainabilityRequest {
|
|
933
|
+
|
|
934
|
+
ExplainabilityArn: string | undefined;
|
|
935
|
+
}
|
|
936
|
+
export declare namespace DescribeExplainabilityRequest {
|
|
937
|
+
|
|
938
|
+
const filterSensitiveLog: (obj: DescribeExplainabilityRequest) => any;
|
|
939
|
+
}
|
|
940
|
+
export interface DescribeExplainabilityResponse {
|
|
941
|
+
|
|
942
|
+
ExplainabilityArn?: string;
|
|
943
|
+
|
|
944
|
+
ExplainabilityName?: string;
|
|
945
|
+
|
|
946
|
+
ResourceArn?: string;
|
|
947
|
+
|
|
948
|
+
ExplainabilityConfig?: ExplainabilityConfig;
|
|
949
|
+
|
|
950
|
+
EnableVisualization?: boolean;
|
|
951
|
+
|
|
952
|
+
DataSource?: DataSource;
|
|
953
|
+
|
|
954
|
+
Schema?: Schema;
|
|
955
|
+
|
|
956
|
+
StartDateTime?: string;
|
|
957
|
+
|
|
958
|
+
EndDateTime?: string;
|
|
959
|
+
|
|
960
|
+
EstimatedTimeRemainingInMinutes?: number;
|
|
961
|
+
|
|
962
|
+
Message?: string;
|
|
963
|
+
|
|
964
|
+
Status?: string;
|
|
965
|
+
|
|
966
|
+
CreationTime?: Date;
|
|
967
|
+
|
|
968
|
+
LastModificationTime?: Date;
|
|
969
|
+
}
|
|
970
|
+
export declare namespace DescribeExplainabilityResponse {
|
|
971
|
+
|
|
972
|
+
const filterSensitiveLog: (obj: DescribeExplainabilityResponse) => any;
|
|
973
|
+
}
|
|
974
|
+
export interface DescribeExplainabilityExportRequest {
|
|
975
|
+
|
|
976
|
+
ExplainabilityExportArn: string | undefined;
|
|
977
|
+
}
|
|
978
|
+
export declare namespace DescribeExplainabilityExportRequest {
|
|
979
|
+
|
|
980
|
+
const filterSensitiveLog: (obj: DescribeExplainabilityExportRequest) => any;
|
|
981
|
+
}
|
|
982
|
+
export interface DescribeExplainabilityExportResponse {
|
|
983
|
+
|
|
984
|
+
ExplainabilityExportArn?: string;
|
|
985
|
+
|
|
986
|
+
ExplainabilityExportName?: string;
|
|
987
|
+
|
|
988
|
+
ExplainabilityArn?: string;
|
|
989
|
+
|
|
990
|
+
Destination?: DataDestination;
|
|
991
|
+
|
|
992
|
+
Message?: string;
|
|
993
|
+
|
|
994
|
+
Status?: string;
|
|
995
|
+
|
|
996
|
+
CreationTime?: Date;
|
|
997
|
+
|
|
998
|
+
LastModificationTime?: Date;
|
|
999
|
+
}
|
|
1000
|
+
export declare namespace DescribeExplainabilityExportResponse {
|
|
1001
|
+
|
|
1002
|
+
const filterSensitiveLog: (obj: DescribeExplainabilityExportResponse) => any;
|
|
1003
|
+
}
|
|
693
1004
|
export interface DescribeForecastRequest {
|
|
694
1005
|
|
|
695
1006
|
ForecastArn: string | undefined;
|
|
@@ -805,6 +1116,8 @@ export interface DescribePredictorResponse {
|
|
|
805
1116
|
|
|
806
1117
|
AlgorithmArn?: string;
|
|
807
1118
|
|
|
1119
|
+
AutoMLAlgorithmArns?: string[];
|
|
1120
|
+
|
|
808
1121
|
ForecastHorizon?: number;
|
|
809
1122
|
|
|
810
1123
|
ForecastTypes?: string[];
|
|
@@ -833,9 +1146,9 @@ export interface DescribePredictorResponse {
|
|
|
833
1146
|
|
|
834
1147
|
EstimatedTimeRemainingInMinutes?: number;
|
|
835
1148
|
|
|
836
|
-
|
|
1149
|
+
IsAutoPredictor?: boolean;
|
|
837
1150
|
|
|
838
|
-
|
|
1151
|
+
DatasetImportJobArns?: string[];
|
|
839
1152
|
|
|
840
1153
|
Status?: string;
|
|
841
1154
|
|
|
@@ -968,6 +1281,8 @@ export interface GetAccuracyMetricsResponse {
|
|
|
968
1281
|
|
|
969
1282
|
PredictorEvaluationResults?: EvaluationResult[];
|
|
970
1283
|
|
|
1284
|
+
IsAutoPredictor?: boolean;
|
|
1285
|
+
|
|
971
1286
|
AutoMLOverrideStrategy?: AutoMLOverrideStrategy | string;
|
|
972
1287
|
|
|
973
1288
|
OptimizationMetric?: OptimizationMetric | string;
|
|
@@ -1120,6 +1435,94 @@ export declare namespace ListDatasetsResponse {
|
|
|
1120
1435
|
|
|
1121
1436
|
const filterSensitiveLog: (obj: ListDatasetsResponse) => any;
|
|
1122
1437
|
}
|
|
1438
|
+
export interface ListExplainabilitiesRequest {
|
|
1439
|
+
|
|
1440
|
+
NextToken?: string;
|
|
1441
|
+
|
|
1442
|
+
MaxResults?: number;
|
|
1443
|
+
|
|
1444
|
+
Filters?: Filter[];
|
|
1445
|
+
}
|
|
1446
|
+
export declare namespace ListExplainabilitiesRequest {
|
|
1447
|
+
|
|
1448
|
+
const filterSensitiveLog: (obj: ListExplainabilitiesRequest) => any;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
export interface ExplainabilitySummary {
|
|
1452
|
+
|
|
1453
|
+
ExplainabilityArn?: string;
|
|
1454
|
+
|
|
1455
|
+
ExplainabilityName?: string;
|
|
1456
|
+
|
|
1457
|
+
ResourceArn?: string;
|
|
1458
|
+
|
|
1459
|
+
ExplainabilityConfig?: ExplainabilityConfig;
|
|
1460
|
+
|
|
1461
|
+
Status?: string;
|
|
1462
|
+
|
|
1463
|
+
Message?: string;
|
|
1464
|
+
|
|
1465
|
+
CreationTime?: Date;
|
|
1466
|
+
|
|
1467
|
+
LastModificationTime?: Date;
|
|
1468
|
+
}
|
|
1469
|
+
export declare namespace ExplainabilitySummary {
|
|
1470
|
+
|
|
1471
|
+
const filterSensitiveLog: (obj: ExplainabilitySummary) => any;
|
|
1472
|
+
}
|
|
1473
|
+
export interface ListExplainabilitiesResponse {
|
|
1474
|
+
|
|
1475
|
+
Explainabilities?: ExplainabilitySummary[];
|
|
1476
|
+
|
|
1477
|
+
NextToken?: string;
|
|
1478
|
+
}
|
|
1479
|
+
export declare namespace ListExplainabilitiesResponse {
|
|
1480
|
+
|
|
1481
|
+
const filterSensitiveLog: (obj: ListExplainabilitiesResponse) => any;
|
|
1482
|
+
}
|
|
1483
|
+
export interface ListExplainabilityExportsRequest {
|
|
1484
|
+
|
|
1485
|
+
NextToken?: string;
|
|
1486
|
+
|
|
1487
|
+
MaxResults?: number;
|
|
1488
|
+
|
|
1489
|
+
Filters?: Filter[];
|
|
1490
|
+
}
|
|
1491
|
+
export declare namespace ListExplainabilityExportsRequest {
|
|
1492
|
+
|
|
1493
|
+
const filterSensitiveLog: (obj: ListExplainabilityExportsRequest) => any;
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
export interface ExplainabilityExportSummary {
|
|
1497
|
+
|
|
1498
|
+
ExplainabilityExportArn?: string;
|
|
1499
|
+
|
|
1500
|
+
ExplainabilityExportName?: string;
|
|
1501
|
+
|
|
1502
|
+
Destination?: DataDestination;
|
|
1503
|
+
|
|
1504
|
+
Status?: string;
|
|
1505
|
+
|
|
1506
|
+
Message?: string;
|
|
1507
|
+
|
|
1508
|
+
CreationTime?: Date;
|
|
1509
|
+
|
|
1510
|
+
LastModificationTime?: Date;
|
|
1511
|
+
}
|
|
1512
|
+
export declare namespace ExplainabilityExportSummary {
|
|
1513
|
+
|
|
1514
|
+
const filterSensitiveLog: (obj: ExplainabilityExportSummary) => any;
|
|
1515
|
+
}
|
|
1516
|
+
export interface ListExplainabilityExportsResponse {
|
|
1517
|
+
|
|
1518
|
+
ExplainabilityExports?: ExplainabilityExportSummary[];
|
|
1519
|
+
|
|
1520
|
+
NextToken?: string;
|
|
1521
|
+
}
|
|
1522
|
+
export declare namespace ListExplainabilityExportsResponse {
|
|
1523
|
+
|
|
1524
|
+
const filterSensitiveLog: (obj: ListExplainabilityExportsResponse) => any;
|
|
1525
|
+
}
|
|
1123
1526
|
export interface ListForecastExportJobsRequest {
|
|
1124
1527
|
|
|
1125
1528
|
NextToken?: string;
|
|
@@ -1184,6 +1587,8 @@ export interface ForecastSummary {
|
|
|
1184
1587
|
|
|
1185
1588
|
PredictorArn?: string;
|
|
1186
1589
|
|
|
1590
|
+
CreatedUsingAutoPredictor?: boolean;
|
|
1591
|
+
|
|
1187
1592
|
DatasetGroupArn?: string;
|
|
1188
1593
|
|
|
1189
1594
|
Status?: string;
|
|
@@ -1272,6 +1677,10 @@ export interface PredictorSummary {
|
|
|
1272
1677
|
|
|
1273
1678
|
DatasetGroupArn?: string;
|
|
1274
1679
|
|
|
1680
|
+
IsAutoPredictor?: boolean;
|
|
1681
|
+
|
|
1682
|
+
ReferencePredictorSummary?: ReferencePredictorSummary;
|
|
1683
|
+
|
|
1275
1684
|
Status?: string;
|
|
1276
1685
|
|
|
1277
1686
|
Message?: string;
|