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

The aggregated field wells of a heat map.

See Also:

AWS * API Reference

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

The rows field well of a heat map.

*/ inline const Aws::Vector& GetRows() const{ return m_rows; } /** *

The rows field well of a heat map.

*/ inline bool RowsHasBeenSet() const { return m_rowsHasBeenSet; } /** *

The rows field well of a heat map.

*/ inline void SetRows(const Aws::Vector& value) { m_rowsHasBeenSet = true; m_rows = value; } /** *

The rows field well of a heat map.

*/ inline void SetRows(Aws::Vector&& value) { m_rowsHasBeenSet = true; m_rows = std::move(value); } /** *

The rows field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& WithRows(const Aws::Vector& value) { SetRows(value); return *this;} /** *

The rows field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& WithRows(Aws::Vector&& value) { SetRows(std::move(value)); return *this;} /** *

The rows field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& AddRows(const DimensionField& value) { m_rowsHasBeenSet = true; m_rows.push_back(value); return *this; } /** *

The rows field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& AddRows(DimensionField&& value) { m_rowsHasBeenSet = true; m_rows.push_back(std::move(value)); return *this; } /** *

The columns field well of a heat map.

*/ inline const Aws::Vector& GetColumns() const{ return m_columns; } /** *

The columns field well of a heat map.

*/ inline bool ColumnsHasBeenSet() const { return m_columnsHasBeenSet; } /** *

The columns field well of a heat map.

*/ inline void SetColumns(const Aws::Vector& value) { m_columnsHasBeenSet = true; m_columns = value; } /** *

The columns field well of a heat map.

*/ inline void SetColumns(Aws::Vector&& value) { m_columnsHasBeenSet = true; m_columns = std::move(value); } /** *

The columns field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& WithColumns(const Aws::Vector& value) { SetColumns(value); return *this;} /** *

The columns field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& WithColumns(Aws::Vector&& value) { SetColumns(std::move(value)); return *this;} /** *

The columns field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& AddColumns(const DimensionField& value) { m_columnsHasBeenSet = true; m_columns.push_back(value); return *this; } /** *

The columns field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& AddColumns(DimensionField&& value) { m_columnsHasBeenSet = true; m_columns.push_back(std::move(value)); return *this; } /** *

The values field well of a heat map.

*/ inline const Aws::Vector& GetValues() const{ return m_values; } /** *

The values field well of a heat map.

*/ inline bool ValuesHasBeenSet() const { return m_valuesHasBeenSet; } /** *

The values field well of a heat map.

*/ inline void SetValues(const Aws::Vector& value) { m_valuesHasBeenSet = true; m_values = value; } /** *

The values field well of a heat map.

*/ inline void SetValues(Aws::Vector&& value) { m_valuesHasBeenSet = true; m_values = std::move(value); } /** *

The values field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& WithValues(const Aws::Vector& value) { SetValues(value); return *this;} /** *

The values field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& WithValues(Aws::Vector&& value) { SetValues(std::move(value)); return *this;} /** *

The values field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& AddValues(const MeasureField& value) { m_valuesHasBeenSet = true; m_values.push_back(value); return *this; } /** *

The values field well of a heat map.

*/ inline HeatMapAggregatedFieldWells& AddValues(MeasureField&& value) { m_valuesHasBeenSet = true; m_values.push_back(std::move(value)); return *this; } private: Aws::Vector m_rows; bool m_rowsHasBeenSet = false; Aws::Vector m_columns; bool m_columnsHasBeenSet = false; Aws::Vector m_values; bool m_valuesHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws