@aws-sdk/client-forecast 3.262.0 → 3.263.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-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +9 -4
- package/dist-cjs/protocols/Aws_json1_1.js +3 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/protocols/Aws_json1_1.js +3 -0
- package/dist-types/Forecast.d.ts +102 -108
- package/dist-types/commands/CreateAutoPredictorCommand.d.ts +16 -18
- package/dist-types/commands/CreateDatasetImportJobCommand.d.ts +2 -2
- package/dist-types/commands/CreateExplainabilityCommand.d.ts +39 -39
- package/dist-types/commands/CreateExplainabilityExportCommand.d.ts +4 -4
- package/dist-types/commands/CreateForecastExportJobCommand.d.ts +1 -1
- package/dist-types/commands/CreatePredictorBacktestExportJobCommand.d.ts +7 -7
- package/dist-types/commands/CreatePredictorCommand.d.ts +0 -3
- package/dist-types/commands/CreateWhatIfAnalysisCommand.d.ts +7 -6
- package/dist-types/commands/CreateWhatIfForecastExportCommand.d.ts +1 -1
- package/dist-types/commands/DeleteExplainabilityCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResourceTreeCommand.d.ts +9 -10
- package/dist-types/commands/DescribePredictorBacktestExportJobCommand.d.ts +12 -12
- package/dist-types/commands/GetAccuracyMetricsCommand.d.ts +0 -1
- package/dist-types/commands/ListExplainabilitiesCommand.d.ts +1 -1
- package/dist-types/commands/ListExplainabilityExportsCommand.d.ts +1 -1
- package/dist-types/commands/ListPredictorBacktestExportJobsCommand.d.ts +1 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +448 -369
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +7 -0
- package/package.json +1 -1
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|
|
@@ -186,6 +186,10 @@ export interface S3Config {
|
|
|
186
186
|
export interface DataSource {
|
|
187
187
|
S3Config: S3Config | undefined;
|
|
188
188
|
}
|
|
189
|
+
export declare enum ImportMode {
|
|
190
|
+
FULL = "FULL",
|
|
191
|
+
INCREMENTAL = "INCREMENTAL",
|
|
192
|
+
}
|
|
189
193
|
export interface CreateDatasetImportJobRequest {
|
|
190
194
|
DatasetImportJobName: string | undefined;
|
|
191
195
|
DatasetArn: string | undefined;
|
|
@@ -196,6 +200,7 @@ export interface CreateDatasetImportJobRequest {
|
|
|
196
200
|
GeolocationFormat?: string;
|
|
197
201
|
Tags?: Tag[];
|
|
198
202
|
Format?: string;
|
|
203
|
+
ImportMode?: ImportMode | string;
|
|
199
204
|
}
|
|
200
205
|
export interface CreateDatasetImportJobResponse {
|
|
201
206
|
DatasetImportJobArn?: string;
|
|
@@ -560,6 +565,7 @@ export interface DescribeDatasetImportJobResponse {
|
|
|
560
565
|
CreationTime?: Date;
|
|
561
566
|
LastModificationTime?: Date;
|
|
562
567
|
Format?: string;
|
|
568
|
+
ImportMode?: ImportMode | string;
|
|
563
569
|
}
|
|
564
570
|
export interface DescribeExplainabilityRequest {
|
|
565
571
|
ExplainabilityArn: string | undefined;
|
|
@@ -836,6 +842,7 @@ export interface DatasetImportJobSummary {
|
|
|
836
842
|
Message?: string;
|
|
837
843
|
CreationTime?: Date;
|
|
838
844
|
LastModificationTime?: Date;
|
|
845
|
+
ImportMode?: ImportMode | string;
|
|
839
846
|
}
|
|
840
847
|
export interface ListDatasetImportJobsResponse {
|
|
841
848
|
DatasetImportJobs?: DatasetImportJobSummary[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-forecast",
|
|
3
3
|
"description": "AWS SDK for JavaScript Forecast Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.263.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",
|