/** * 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 wells of a radar chart visual.

See Also:

AWS * API Reference

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

The aggregated field wells of a radar chart visual.

*/ inline const RadarChartAggregatedFieldWells& GetRadarChartAggregatedFieldWells() const{ return m_radarChartAggregatedFieldWells; } /** *

The aggregated field wells of a radar chart visual.

*/ inline bool RadarChartAggregatedFieldWellsHasBeenSet() const { return m_radarChartAggregatedFieldWellsHasBeenSet; } /** *

The aggregated field wells of a radar chart visual.

*/ inline void SetRadarChartAggregatedFieldWells(const RadarChartAggregatedFieldWells& value) { m_radarChartAggregatedFieldWellsHasBeenSet = true; m_radarChartAggregatedFieldWells = value; } /** *

The aggregated field wells of a radar chart visual.

*/ inline void SetRadarChartAggregatedFieldWells(RadarChartAggregatedFieldWells&& value) { m_radarChartAggregatedFieldWellsHasBeenSet = true; m_radarChartAggregatedFieldWells = std::move(value); } /** *

The aggregated field wells of a radar chart visual.

*/ inline RadarChartFieldWells& WithRadarChartAggregatedFieldWells(const RadarChartAggregatedFieldWells& value) { SetRadarChartAggregatedFieldWells(value); return *this;} /** *

The aggregated field wells of a radar chart visual.

*/ inline RadarChartFieldWells& WithRadarChartAggregatedFieldWells(RadarChartAggregatedFieldWells&& value) { SetRadarChartAggregatedFieldWells(std::move(value)); return *this;} private: RadarChartAggregatedFieldWells m_radarChartAggregatedFieldWells; bool m_radarChartAggregatedFieldWellsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws