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