/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the forecast-2018-06-26.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.ForecastService.Model
{
///
/// Container for the parameters to the CreatePredictorBacktestExportJob operation.
/// 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:
///
///
///
/// <ExportJobName>_<ExportTimestamp>_<PartNumber>.csv
///
///
///
///
/// The <ExportTimestamp> 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.
///
///
///
public partial class CreatePredictorBacktestExportJobRequest : AmazonForecastServiceRequest
{
private DataDestination _destination;
private string _format;
private string _predictorArn;
private string _predictorBacktestExportJobName;
private List _tags = new List();
///
/// Gets and sets the property Destination.
///
[AWSProperty(Required=true)]
public DataDestination Destination
{
get { return this._destination; }
set { this._destination = value; }
}
// Check to see if Destination property is set
internal bool IsSetDestination()
{
return this._destination != null;
}
///
/// Gets and sets the property Format.
///
/// The format of the exported data, CSV or PARQUET. The default value is CSV.
///
///
[AWSProperty(Max=7)]
public string Format
{
get { return this._format; }
set { this._format = value; }
}
// Check to see if Format property is set
internal bool IsSetFormat()
{
return this._format != null;
}
///
/// Gets and sets the property PredictorArn.
///
/// The Amazon Resource Name (ARN) of the predictor that you want to export.
///
///
[AWSProperty(Required=true, Max=256)]
public string PredictorArn
{
get { return this._predictorArn; }
set { this._predictorArn = value; }
}
// Check to see if PredictorArn property is set
internal bool IsSetPredictorArn()
{
return this._predictorArn != null;
}
///
/// Gets and sets the property PredictorBacktestExportJobName.
///
/// The name for the backtest export job.
///
///
[AWSProperty(Required=true, Min=1, Max=63)]
public string PredictorBacktestExportJobName
{
get { return this._predictorBacktestExportJobName; }
set { this._predictorBacktestExportJobName = value; }
}
// Check to see if PredictorBacktestExportJobName property is set
internal bool IsSetPredictorBacktestExportJobName()
{
return this._predictorBacktestExportJobName != null;
}
///
/// Gets and sets the property Tags.
///
/// Optional metadata to help you categorize and organize your backtests. Each tag consists
/// of a key and an optional value, both of which you define. Tag keys and values are
/// case sensitive.
///
///
///
/// The following restrictions apply to tags:
///
/// -
///
/// For each resource, each tag key must be unique and each tag key must have one value.
///
///
-
///
/// Maximum number of tags per resource: 50.
///
///
-
///
/// Maximum key length: 128 Unicode characters in UTF-8.
///
///
-
///
/// Maximum value length: 256 Unicode characters in UTF-8.
///
///
-
///
/// Accepted characters: all letters and numbers, spaces representable in UTF-8, and +
/// - = . _ : / @. If your tagging schema is used across other services and resources,
/// the character restrictions of those services also apply.
///
///
-
///
/// Key prefixes cannot include any upper or lowercase combination of
aws:
/// or AWS:
. Values can have this prefix. If a tag value has aws
/// as its prefix but the key does not, Forecast considers it to be a user tag and will
/// count against the limit of 50 tags. Tags with only the key prefix of aws
/// do not count against your tags per resource limit. You cannot edit or delete tag keys
/// with this prefix.
///
///
///
[AWSProperty(Min=0, Max=200)]
public List Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}