/* * 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 CreateExplainabilityExport operation. /// Exports an Explainability resource created by the CreateExplainability operation. /// Exported files are exported to an Amazon Simple Storage Service (Amazon S3) bucket. /// /// /// /// 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 DescribeExplainabilityExport /// operation. /// /// /// public partial class CreateExplainabilityExportRequest : AmazonForecastServiceRequest { private DataDestination _destination; private string _explainabilityArn; private string _explainabilityExportName; private string _format; 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 ExplainabilityArn. /// /// The Amazon Resource Name (ARN) of the Explainability to export. /// /// [AWSProperty(Required=true, Max=256)] public string ExplainabilityArn { get { return this._explainabilityArn; } set { this._explainabilityArn = value; } } // Check to see if ExplainabilityArn property is set internal bool IsSetExplainabilityArn() { return this._explainabilityArn != null; } /// /// Gets and sets the property ExplainabilityExportName. /// /// A unique name for the Explainability export. /// /// [AWSProperty(Required=true, Min=1, Max=63)] public string ExplainabilityExportName { get { return this._explainabilityExportName; } set { this._explainabilityExportName = value; } } // Check to see if ExplainabilityExportName property is set internal bool IsSetExplainabilityExportName() { return this._explainabilityExportName != null; } /// /// Gets and sets the property Format. /// /// The format of the exported data, CSV or PARQUET. /// /// [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 Tags. /// /// Optional metadata to help you categorize and organize your resources. 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; } } }