/** * 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 FunnelChartVisual.

This * is a union type structure. For this structure to be valid, only one of the * attributes can be defined.

See Also:

AWS * API Reference

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

The field well configuration of a FunnelChartVisual.

*/ inline const FunnelChartAggregatedFieldWells& GetFunnelChartAggregatedFieldWells() const{ return m_funnelChartAggregatedFieldWells; } /** *

The field well configuration of a FunnelChartVisual.

*/ inline bool FunnelChartAggregatedFieldWellsHasBeenSet() const { return m_funnelChartAggregatedFieldWellsHasBeenSet; } /** *

The field well configuration of a FunnelChartVisual.

*/ inline void SetFunnelChartAggregatedFieldWells(const FunnelChartAggregatedFieldWells& value) { m_funnelChartAggregatedFieldWellsHasBeenSet = true; m_funnelChartAggregatedFieldWells = value; } /** *

The field well configuration of a FunnelChartVisual.

*/ inline void SetFunnelChartAggregatedFieldWells(FunnelChartAggregatedFieldWells&& value) { m_funnelChartAggregatedFieldWellsHasBeenSet = true; m_funnelChartAggregatedFieldWells = std::move(value); } /** *

The field well configuration of a FunnelChartVisual.

*/ inline FunnelChartFieldWells& WithFunnelChartAggregatedFieldWells(const FunnelChartAggregatedFieldWells& value) { SetFunnelChartAggregatedFieldWells(value); return *this;} /** *

The field well configuration of a FunnelChartVisual.

*/ inline FunnelChartFieldWells& WithFunnelChartAggregatedFieldWells(FunnelChartAggregatedFieldWells&& value) { SetFunnelChartAggregatedFieldWells(std::move(value)); return *this;} private: FunnelChartAggregatedFieldWells m_funnelChartAggregatedFieldWells; bool m_funnelChartAggregatedFieldWellsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws