/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace LookoutMetrics { namespace Model { /** *

An auto detection source config.

See Also:

AWS * API Reference

*/ class AutoDetectionS3SourceConfig { public: AWS_LOOKOUTMETRICS_API AutoDetectionS3SourceConfig(); AWS_LOOKOUTMETRICS_API AutoDetectionS3SourceConfig(Aws::Utils::Json::JsonView jsonValue); AWS_LOOKOUTMETRICS_API AutoDetectionS3SourceConfig& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_LOOKOUTMETRICS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The config's templated path list.

*/ inline const Aws::Vector& GetTemplatedPathList() const{ return m_templatedPathList; } /** *

The config's templated path list.

*/ inline bool TemplatedPathListHasBeenSet() const { return m_templatedPathListHasBeenSet; } /** *

The config's templated path list.

*/ inline void SetTemplatedPathList(const Aws::Vector& value) { m_templatedPathListHasBeenSet = true; m_templatedPathList = value; } /** *

The config's templated path list.

*/ inline void SetTemplatedPathList(Aws::Vector&& value) { m_templatedPathListHasBeenSet = true; m_templatedPathList = std::move(value); } /** *

The config's templated path list.

*/ inline AutoDetectionS3SourceConfig& WithTemplatedPathList(const Aws::Vector& value) { SetTemplatedPathList(value); return *this;} /** *

The config's templated path list.

*/ inline AutoDetectionS3SourceConfig& WithTemplatedPathList(Aws::Vector&& value) { SetTemplatedPathList(std::move(value)); return *this;} /** *

The config's templated path list.

*/ inline AutoDetectionS3SourceConfig& AddTemplatedPathList(const Aws::String& value) { m_templatedPathListHasBeenSet = true; m_templatedPathList.push_back(value); return *this; } /** *

The config's templated path list.

*/ inline AutoDetectionS3SourceConfig& AddTemplatedPathList(Aws::String&& value) { m_templatedPathListHasBeenSet = true; m_templatedPathList.push_back(std::move(value)); return *this; } /** *

The config's templated path list.

*/ inline AutoDetectionS3SourceConfig& AddTemplatedPathList(const char* value) { m_templatedPathListHasBeenSet = true; m_templatedPathList.push_back(value); return *this; } /** *

The config's historical data path list.

*/ inline const Aws::Vector& GetHistoricalDataPathList() const{ return m_historicalDataPathList; } /** *

The config's historical data path list.

*/ inline bool HistoricalDataPathListHasBeenSet() const { return m_historicalDataPathListHasBeenSet; } /** *

The config's historical data path list.

*/ inline void SetHistoricalDataPathList(const Aws::Vector& value) { m_historicalDataPathListHasBeenSet = true; m_historicalDataPathList = value; } /** *

The config's historical data path list.

*/ inline void SetHistoricalDataPathList(Aws::Vector&& value) { m_historicalDataPathListHasBeenSet = true; m_historicalDataPathList = std::move(value); } /** *

The config's historical data path list.

*/ inline AutoDetectionS3SourceConfig& WithHistoricalDataPathList(const Aws::Vector& value) { SetHistoricalDataPathList(value); return *this;} /** *

The config's historical data path list.

*/ inline AutoDetectionS3SourceConfig& WithHistoricalDataPathList(Aws::Vector&& value) { SetHistoricalDataPathList(std::move(value)); return *this;} /** *

The config's historical data path list.

*/ inline AutoDetectionS3SourceConfig& AddHistoricalDataPathList(const Aws::String& value) { m_historicalDataPathListHasBeenSet = true; m_historicalDataPathList.push_back(value); return *this; } /** *

The config's historical data path list.

*/ inline AutoDetectionS3SourceConfig& AddHistoricalDataPathList(Aws::String&& value) { m_historicalDataPathListHasBeenSet = true; m_historicalDataPathList.push_back(std::move(value)); return *this; } /** *

The config's historical data path list.

*/ inline AutoDetectionS3SourceConfig& AddHistoricalDataPathList(const char* value) { m_historicalDataPathListHasBeenSet = true; m_historicalDataPathList.push_back(value); return *this; } private: Aws::Vector m_templatedPathList; bool m_templatedPathListHasBeenSet = false; Aws::Vector m_historicalDataPathList; bool m_historicalDataPathListHasBeenSet = false; }; } // namespace Model } // namespace LookoutMetrics } // namespace Aws