/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A replacement dataset is a modified version of the baseline related time
* series that contains only the values that you want to include in a what-if
* forecast. The replacement dataset must contain the forecast dimensions and item
* identifiers in the baseline related time series as well as at least 1 changed
* time series. This dataset is merged with the baseline related time series to
* create a transformed dataset that is used for the what-if
* forecast.See Also:
AWS
* API Reference
The format of the replacement data, CSV or PARQUET.
*/ inline const Aws::String& GetFormat() const{ return m_format; } /** *The format of the replacement data, CSV or PARQUET.
*/ inline bool FormatHasBeenSet() const { return m_formatHasBeenSet; } /** *The format of the replacement data, CSV or PARQUET.
*/ inline void SetFormat(const Aws::String& value) { m_formatHasBeenSet = true; m_format = value; } /** *The format of the replacement data, CSV or PARQUET.
*/ inline void SetFormat(Aws::String&& value) { m_formatHasBeenSet = true; m_format = std::move(value); } /** *The format of the replacement data, CSV or PARQUET.
*/ inline void SetFormat(const char* value) { m_formatHasBeenSet = true; m_format.assign(value); } /** *The format of the replacement data, CSV or PARQUET.
*/ inline TimeSeriesReplacementsDataSource& WithFormat(const Aws::String& value) { SetFormat(value); return *this;} /** *The format of the replacement data, CSV or PARQUET.
*/ inline TimeSeriesReplacementsDataSource& WithFormat(Aws::String&& value) { SetFormat(std::move(value)); return *this;} /** *The format of the replacement data, CSV or PARQUET.
*/ inline TimeSeriesReplacementsDataSource& WithFormat(const char* value) { SetFormat(value); return *this;} /** *The timestamp format of the replacement data.
*/ inline const Aws::String& GetTimestampFormat() const{ return m_timestampFormat; } /** *The timestamp format of the replacement data.
*/ inline bool TimestampFormatHasBeenSet() const { return m_timestampFormatHasBeenSet; } /** *The timestamp format of the replacement data.
*/ inline void SetTimestampFormat(const Aws::String& value) { m_timestampFormatHasBeenSet = true; m_timestampFormat = value; } /** *The timestamp format of the replacement data.
*/ inline void SetTimestampFormat(Aws::String&& value) { m_timestampFormatHasBeenSet = true; m_timestampFormat = std::move(value); } /** *The timestamp format of the replacement data.
*/ inline void SetTimestampFormat(const char* value) { m_timestampFormatHasBeenSet = true; m_timestampFormat.assign(value); } /** *The timestamp format of the replacement data.
*/ inline TimeSeriesReplacementsDataSource& WithTimestampFormat(const Aws::String& value) { SetTimestampFormat(value); return *this;} /** *The timestamp format of the replacement data.
*/ inline TimeSeriesReplacementsDataSource& WithTimestampFormat(Aws::String&& value) { SetTimestampFormat(std::move(value)); return *this;} /** *The timestamp format of the replacement data.
*/ inline TimeSeriesReplacementsDataSource& WithTimestampFormat(const char* value) { SetTimestampFormat(value); return *this;} private: S3Config m_s3Config; bool m_s3ConfigHasBeenSet = false; Schema m_schema; bool m_schemaHasBeenSet = false; Aws::String m_format; bool m_formatHasBeenSet = false; Aws::String m_timestampFormat; bool m_timestampFormatHasBeenSet = false; }; } // namespace Model } // namespace ForecastService } // namespace Aws