AWS SDK Version 4 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Exports backtest forecasts and accuracy metrics generated by the CreateAutoPredictor or CreatePredictor operations. Two folders containing CSV or Parquet files are exported to your specified S3 bucket.

The export file names will match the following conventions:

__.csv

The component is in Java SimpleDate format (yyyy-MM-ddTHH-mm-ssZ).

You must specify a DataDestination object that includes an Amazon S3 bucket and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket. For more information, see aws-forecast-iam-roles.

The Status of the export job must be ACTIVE before you can access the export in your Amazon S3 bucket. To get the status, use the DescribePredictorBacktestExportJob operation.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to CreatePredictorBacktestExportJobAsync.

Namespace: Amazon.ForecastService
Assembly: AWSSDK.ForecastService.dll
Version: 3.x.y.z

Syntax

C#
public virtual CreatePredictorBacktestExportJobResponse CreatePredictorBacktestExportJob(
         CreatePredictorBacktestExportJobRequest request
)

Parameters

request
Type: Amazon.ForecastService.Model.CreatePredictorBacktestExportJobRequest

Container for the necessary parameters to execute the CreatePredictorBacktestExportJob service method.

Return Value


The response from the CreatePredictorBacktestExportJob service method, as returned by ForecastService.

Exceptions

ExceptionCondition
InvalidInputException We can't process the request because it includes an invalid value or a value that exceeds the valid range.
LimitExceededException The limit on the number of resources per account has been exceeded.
ResourceAlreadyExistsException There is already a resource with this name. Try again with a different name.
ResourceInUseException The specified resource is in use.
ResourceNotFoundException We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try again.

Version Information

.NET Framework:
Supported in: 4.7.2 and newer

See Also