@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.
Files changed (28) hide show
  1. package/dist-cjs/endpoint/ruleset.js +3 -3
  2. package/dist-cjs/models/models_0.js +9 -4
  3. package/dist-cjs/protocols/Aws_json1_1.js +3 -0
  4. package/dist-es/endpoint/ruleset.js +3 -3
  5. package/dist-es/models/models_0.js +5 -0
  6. package/dist-es/protocols/Aws_json1_1.js +3 -0
  7. package/dist-types/Forecast.d.ts +102 -108
  8. package/dist-types/commands/CreateAutoPredictorCommand.d.ts +16 -18
  9. package/dist-types/commands/CreateDatasetImportJobCommand.d.ts +2 -2
  10. package/dist-types/commands/CreateExplainabilityCommand.d.ts +39 -39
  11. package/dist-types/commands/CreateExplainabilityExportCommand.d.ts +4 -4
  12. package/dist-types/commands/CreateForecastExportJobCommand.d.ts +1 -1
  13. package/dist-types/commands/CreatePredictorBacktestExportJobCommand.d.ts +7 -7
  14. package/dist-types/commands/CreatePredictorCommand.d.ts +0 -3
  15. package/dist-types/commands/CreateWhatIfAnalysisCommand.d.ts +7 -6
  16. package/dist-types/commands/CreateWhatIfForecastExportCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteExplainabilityCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteResourceTreeCommand.d.ts +9 -10
  19. package/dist-types/commands/DescribePredictorBacktestExportJobCommand.d.ts +12 -12
  20. package/dist-types/commands/GetAccuracyMetricsCommand.d.ts +0 -1
  21. package/dist-types/commands/ListExplainabilitiesCommand.d.ts +1 -1
  22. package/dist-types/commands/ListExplainabilityExportsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListPredictorBacktestExportJobsCommand.d.ts +1 -1
  24. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  25. package/dist-types/models/models_0.d.ts +448 -369
  26. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  27. package/dist-types/ts3.4/models/models_0.d.ts +7 -0
  28. 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?: string;
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.262.0",
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",