/** * 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 heat map.

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 HeatMapFieldWells { public: AWS_QUICKSIGHT_API HeatMapFieldWells(); AWS_QUICKSIGHT_API HeatMapFieldWells(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API HeatMapFieldWells& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The aggregated field wells of a heat map.

*/ inline const HeatMapAggregatedFieldWells& GetHeatMapAggregatedFieldWells() const{ return m_heatMapAggregatedFieldWells; } /** *

The aggregated field wells of a heat map.

*/ inline bool HeatMapAggregatedFieldWellsHasBeenSet() const { return m_heatMapAggregatedFieldWellsHasBeenSet; } /** *

The aggregated field wells of a heat map.

*/ inline void SetHeatMapAggregatedFieldWells(const HeatMapAggregatedFieldWells& value) { m_heatMapAggregatedFieldWellsHasBeenSet = true; m_heatMapAggregatedFieldWells = value; } /** *

The aggregated field wells of a heat map.

*/ inline void SetHeatMapAggregatedFieldWells(HeatMapAggregatedFieldWells&& value) { m_heatMapAggregatedFieldWellsHasBeenSet = true; m_heatMapAggregatedFieldWells = std::move(value); } /** *

The aggregated field wells of a heat map.

*/ inline HeatMapFieldWells& WithHeatMapAggregatedFieldWells(const HeatMapAggregatedFieldWells& value) { SetHeatMapAggregatedFieldWells(value); return *this;} /** *

The aggregated field wells of a heat map.

*/ inline HeatMapFieldWells& WithHeatMapAggregatedFieldWells(HeatMapAggregatedFieldWells&& value) { SetHeatMapAggregatedFieldWells(std::move(value)); return *this;} private: HeatMapAggregatedFieldWells m_heatMapAggregatedFieldWells; bool m_heatMapAggregatedFieldWellsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws