/* * 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 lookoutmetrics-2017-07-25.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.LookoutMetrics.Model { /// /// An auto detection source config. /// public partial class AutoDetectionS3SourceConfig { private List _historicalDataPathList = new List(); private List _templatedPathList = new List(); /// /// Gets and sets the property HistoricalDataPathList. /// /// The config's historical data path list. /// /// [AWSProperty(Min=1, Max=1)] public List HistoricalDataPathList { get { return this._historicalDataPathList; } set { this._historicalDataPathList = value; } } // Check to see if HistoricalDataPathList property is set internal bool IsSetHistoricalDataPathList() { return this._historicalDataPathList != null && this._historicalDataPathList.Count > 0; } /// /// Gets and sets the property TemplatedPathList. /// /// The config's templated path list. /// /// [AWSProperty(Min=1, Max=1)] public List TemplatedPathList { get { return this._templatedPathList; } set { this._templatedPathList = value; } } // Check to see if TemplatedPathList property is set internal bool IsSetTemplatedPathList() { return this._templatedPathList != null && this._templatedPathList.Count > 0; } } }