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

The field well configuration of a line chart.

See Also:

AWS * API Reference

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

The field well configuration of a line chart.

*/ inline const LineChartAggregatedFieldWells& GetLineChartAggregatedFieldWells() const{ return m_lineChartAggregatedFieldWells; } /** *

The field well configuration of a line chart.

*/ inline bool LineChartAggregatedFieldWellsHasBeenSet() const { return m_lineChartAggregatedFieldWellsHasBeenSet; } /** *

The field well configuration of a line chart.

*/ inline void SetLineChartAggregatedFieldWells(const LineChartAggregatedFieldWells& value) { m_lineChartAggregatedFieldWellsHasBeenSet = true; m_lineChartAggregatedFieldWells = value; } /** *

The field well configuration of a line chart.

*/ inline void SetLineChartAggregatedFieldWells(LineChartAggregatedFieldWells&& value) { m_lineChartAggregatedFieldWellsHasBeenSet = true; m_lineChartAggregatedFieldWells = std::move(value); } /** *

The field well configuration of a line chart.

*/ inline LineChartFieldWells& WithLineChartAggregatedFieldWells(const LineChartAggregatedFieldWells& value) { SetLineChartAggregatedFieldWells(value); return *this;} /** *

The field well configuration of a line chart.

*/ inline LineChartFieldWells& WithLineChartAggregatedFieldWells(LineChartAggregatedFieldWells&& value) { SetLineChartAggregatedFieldWells(std::move(value)); return *this;} private: LineChartAggregatedFieldWells m_lineChartAggregatedFieldWells; bool m_lineChartAggregatedFieldWellsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws