/** * 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 waterfall visual.

See Also:

* AWS * API Reference

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

The field well configuration of a waterfall visual.

*/ inline const WaterfallChartAggregatedFieldWells& GetWaterfallChartAggregatedFieldWells() const{ return m_waterfallChartAggregatedFieldWells; } /** *

The field well configuration of a waterfall visual.

*/ inline bool WaterfallChartAggregatedFieldWellsHasBeenSet() const { return m_waterfallChartAggregatedFieldWellsHasBeenSet; } /** *

The field well configuration of a waterfall visual.

*/ inline void SetWaterfallChartAggregatedFieldWells(const WaterfallChartAggregatedFieldWells& value) { m_waterfallChartAggregatedFieldWellsHasBeenSet = true; m_waterfallChartAggregatedFieldWells = value; } /** *

The field well configuration of a waterfall visual.

*/ inline void SetWaterfallChartAggregatedFieldWells(WaterfallChartAggregatedFieldWells&& value) { m_waterfallChartAggregatedFieldWellsHasBeenSet = true; m_waterfallChartAggregatedFieldWells = std::move(value); } /** *

The field well configuration of a waterfall visual.

*/ inline WaterfallChartFieldWells& WithWaterfallChartAggregatedFieldWells(const WaterfallChartAggregatedFieldWells& value) { SetWaterfallChartAggregatedFieldWells(value); return *this;} /** *

The field well configuration of a waterfall visual.

*/ inline WaterfallChartFieldWells& WithWaterfallChartAggregatedFieldWells(WaterfallChartAggregatedFieldWells&& value) { SetWaterfallChartAggregatedFieldWells(std::move(value)); return *this;} private: WaterfallChartAggregatedFieldWells m_waterfallChartAggregatedFieldWells; bool m_waterfallChartAggregatedFieldWellsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws