You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/client-forecast/src/Forecast.ts
+5-7Lines changed: 5 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -462,18 +462,14 @@ export class Forecast extends ForecastClient {
462
462
* AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the data, as Amazon Forecast makes a copy
463
463
* of your data and processes it in an internal AWS system. For more information, see <a href="https://docs.aws.amazon.com/forecast/latest/dg/aws-forecast-iam-roles.html">Set up
464
464
* permissions</a>.</p>
465
-
* <p>The training data must be in CSV format. The delimiter must be a comma (,).</p>
466
-
* <p>You can specify the path to a specific CSV file, the S3 bucket, or to a folder in the S3
465
+
* <p>The training data must be in CSV or Parquet format. The delimiter must be a comma (,).</p>
466
+
* <p>You can specify the path to a specific file, the S3 bucket, or to a folder in the S3
467
467
* bucket. For the latter two cases, Amazon Forecast imports all files up to the limit of 10,000
468
468
* files.</p>
469
-
*
470
-
*
471
469
* <p>Because dataset imports are not aggregated, your most recent dataset import is the one
472
470
* that is used when training a predictor or generating a forecast. Make sure that your most
473
471
* recent dataset import contains all of the data you want to model off of, and not just the new
474
472
* data collected since the previous import.</p>
475
-
*
476
-
*
477
473
* <p>To get a list of all your dataset import jobs, filtered by specified criteria, use the
@@ -716,6 +712,8 @@ export class Forecast extends ForecastClient {
716
712
* or export the forecast. Use the <a>DescribeForecast</a> operation to get the
717
713
* status.</p>
718
714
* </note>
715
+
* <p>By default, a forecast includes predictions for every item (<code>item_id</code>) in the dataset group that was used to train the predictor.
716
+
* However, you can use the <code>TimeSeriesSelector</code> object to generate a forecast on a subset of time series. Forecast creation is skipped for any time series that you specify that are not in the input dataset. The forecast export file will not contain these time series or their forecasted values.</p>
719
717
*/
720
718
publiccreateForecast(
721
719
args: CreateForecastCommandInput,
@@ -921,7 +919,7 @@ export class Forecast extends ForecastClient {
921
919
922
920
/**
923
921
* <p>Exports backtest forecasts and accuracy metrics generated by the <a>CreateAutoPredictor</a> or <a>CreatePredictor</a> operations. Two
924
-
* folders containing CSV files are exported to your specified S3 bucket.</p>
922
+
* folders containing CSV or Parquet files are exported to your specified S3 bucket.</p>
925
923
* <p> The export file names will match the following conventions:</p>
* AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the data, as Amazon Forecast makes a copy
31
31
* of your data and processes it in an internal AWS system. For more information, see <a href="https://docs.aws.amazon.com/forecast/latest/dg/aws-forecast-iam-roles.html">Set up
32
32
* permissions</a>.</p>
33
-
* <p>The training data must be in CSV format. The delimiter must be a comma (,).</p>
34
-
* <p>You can specify the path to a specific CSV file, the S3 bucket, or to a folder in the S3
33
+
* <p>The training data must be in CSV or Parquet format. The delimiter must be a comma (,).</p>
34
+
* <p>You can specify the path to a specific file, the S3 bucket, or to a folder in the S3
35
35
* bucket. For the latter two cases, Amazon Forecast imports all files up to the limit of 10,000
36
36
* files.</p>
37
-
*
38
-
*
39
37
* <p>Because dataset imports are not aggregated, your most recent dataset import is the one
40
38
* that is used when training a predictor or generating a forecast. Make sure that your most
41
39
* recent dataset import contains all of the data you want to model off of, and not just the new
42
40
* data collected since the previous import.</p>
43
-
*
44
-
*
45
41
* <p>To get a list of all your dataset import jobs, filtered by specified criteria, use the
* or export the forecast. Use the <a>DescribeForecast</a> operation to get the
43
43
* status.</p>
44
44
* </note>
45
+
* <p>By default, a forecast includes predictions for every item (<code>item_id</code>) in the dataset group that was used to train the predictor.
46
+
* However, you can use the <code>TimeSeriesSelector</code> object to generate a forecast on a subset of time series. Forecast creation is skipped for any time series that you specify that are not in the input dataset. The forecast export file will not contain these time series or their forecasted values.</p>
45
47
* @example
46
48
* Use a bare-bones client and the command you need to make an API call.
0 commit comments