/** * 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 well of the filled map.

See Also:

AWS * API Reference

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

The aggregated location field well of the filled map. Values are grouped by * location fields.

*/ inline const Aws::Vector& GetGeospatial() const{ return m_geospatial; } /** *

The aggregated location field well of the filled map. Values are grouped by * location fields.

*/ inline bool GeospatialHasBeenSet() const { return m_geospatialHasBeenSet; } /** *

The aggregated location field well of the filled map. Values are grouped by * location fields.

*/ inline void SetGeospatial(const Aws::Vector& value) { m_geospatialHasBeenSet = true; m_geospatial = value; } /** *

The aggregated location field well of the filled map. Values are grouped by * location fields.

*/ inline void SetGeospatial(Aws::Vector&& value) { m_geospatialHasBeenSet = true; m_geospatial = std::move(value); } /** *

The aggregated location field well of the filled map. Values are grouped by * location fields.

*/ inline FilledMapAggregatedFieldWells& WithGeospatial(const Aws::Vector& value) { SetGeospatial(value); return *this;} /** *

The aggregated location field well of the filled map. Values are grouped by * location fields.

*/ inline FilledMapAggregatedFieldWells& WithGeospatial(Aws::Vector&& value) { SetGeospatial(std::move(value)); return *this;} /** *

The aggregated location field well of the filled map. Values are grouped by * location fields.

*/ inline FilledMapAggregatedFieldWells& AddGeospatial(const DimensionField& value) { m_geospatialHasBeenSet = true; m_geospatial.push_back(value); return *this; } /** *

The aggregated location field well of the filled map. Values are grouped by * location fields.

*/ inline FilledMapAggregatedFieldWells& AddGeospatial(DimensionField&& value) { m_geospatialHasBeenSet = true; m_geospatial.push_back(std::move(value)); return *this; } /** *

The aggregated color field well of a filled map. Values are aggregated based * on location fields.

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

The aggregated color field well of a filled map. Values are aggregated based * on location fields.

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

The aggregated color field well of a filled map. Values are aggregated based * on location fields.

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

The aggregated color field well of a filled map. Values are aggregated based * on location fields.

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

The aggregated color field well of a filled map. Values are aggregated based * on location fields.

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

The aggregated color field well of a filled map. Values are aggregated based * on location fields.

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

The aggregated color field well of a filled map. Values are aggregated based * on location fields.

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

The aggregated color field well of a filled map. Values are aggregated based * on location fields.

*/ inline FilledMapAggregatedFieldWells& AddValues(MeasureField&& value) { m_valuesHasBeenSet = true; m_values.push_back(std::move(value)); return *this; } private: Aws::Vector m_geospatial; bool m_geospatialHasBeenSet = false; Aws::Vector m_values; bool m_valuesHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws