/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details about the import file that contains the time series for which you
* want to create forecasts.See Also:
AWS
* API Reference
The format of the data, either CSV or PARQUET.
*/ inline const Aws::String& GetFormat() const{ return m_format; } /** *The format of the data, either CSV or PARQUET.
*/ inline bool FormatHasBeenSet() const { return m_formatHasBeenSet; } /** *The format of the data, either CSV or PARQUET.
*/ inline void SetFormat(const Aws::String& value) { m_formatHasBeenSet = true; m_format = value; } /** *The format of the data, either CSV or PARQUET.
*/ inline void SetFormat(Aws::String&& value) { m_formatHasBeenSet = true; m_format = std::move(value); } /** *The format of the data, either CSV or PARQUET.
*/ inline void SetFormat(const char* value) { m_formatHasBeenSet = true; m_format.assign(value); } /** *The format of the data, either CSV or PARQUET.
*/ inline TimeSeriesIdentifiers& WithFormat(const Aws::String& value) { SetFormat(value); return *this;} /** *The format of the data, either CSV or PARQUET.
*/ inline TimeSeriesIdentifiers& WithFormat(Aws::String&& value) { SetFormat(std::move(value)); return *this;} /** *The format of the data, either CSV or PARQUET.
*/ inline TimeSeriesIdentifiers& WithFormat(const char* value) { SetFormat(value); return *this;} private: DataSource m_dataSource; bool m_dataSourceHasBeenSet = false; Schema m_schema; bool m_schemaHasBeenSet = false; Aws::String m_format; bool m_formatHasBeenSet = false; }; } // namespace Model } // namespace ForecastService } // namespace Aws