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

The configuration for a FilledMapVisual.

See * Also:

AWS * API Reference

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

The field wells of the visual.

*/ inline const FilledMapFieldWells& GetFieldWells() const{ return m_fieldWells; } /** *

The field wells of the visual.

*/ inline bool FieldWellsHasBeenSet() const { return m_fieldWellsHasBeenSet; } /** *

The field wells of the visual.

*/ inline void SetFieldWells(const FilledMapFieldWells& value) { m_fieldWellsHasBeenSet = true; m_fieldWells = value; } /** *

The field wells of the visual.

*/ inline void SetFieldWells(FilledMapFieldWells&& value) { m_fieldWellsHasBeenSet = true; m_fieldWells = std::move(value); } /** *

The field wells of the visual.

*/ inline FilledMapConfiguration& WithFieldWells(const FilledMapFieldWells& value) { SetFieldWells(value); return *this;} /** *

The field wells of the visual.

*/ inline FilledMapConfiguration& WithFieldWells(FilledMapFieldWells&& value) { SetFieldWells(std::move(value)); return *this;} /** *

The sort configuration of a FilledMapVisual.

*/ inline const FilledMapSortConfiguration& GetSortConfiguration() const{ return m_sortConfiguration; } /** *

The sort configuration of a FilledMapVisual.

*/ inline bool SortConfigurationHasBeenSet() const { return m_sortConfigurationHasBeenSet; } /** *

The sort configuration of a FilledMapVisual.

*/ inline void SetSortConfiguration(const FilledMapSortConfiguration& value) { m_sortConfigurationHasBeenSet = true; m_sortConfiguration = value; } /** *

The sort configuration of a FilledMapVisual.

*/ inline void SetSortConfiguration(FilledMapSortConfiguration&& value) { m_sortConfigurationHasBeenSet = true; m_sortConfiguration = std::move(value); } /** *

The sort configuration of a FilledMapVisual.

*/ inline FilledMapConfiguration& WithSortConfiguration(const FilledMapSortConfiguration& value) { SetSortConfiguration(value); return *this;} /** *

The sort configuration of a FilledMapVisual.

*/ inline FilledMapConfiguration& WithSortConfiguration(FilledMapSortConfiguration&& value) { SetSortConfiguration(std::move(value)); return *this;} /** *

The legend display setup of the visual.

*/ inline const LegendOptions& GetLegend() const{ return m_legend; } /** *

The legend display setup of the visual.

*/ inline bool LegendHasBeenSet() const { return m_legendHasBeenSet; } /** *

The legend display setup of the visual.

*/ inline void SetLegend(const LegendOptions& value) { m_legendHasBeenSet = true; m_legend = value; } /** *

The legend display setup of the visual.

*/ inline void SetLegend(LegendOptions&& value) { m_legendHasBeenSet = true; m_legend = std::move(value); } /** *

The legend display setup of the visual.

*/ inline FilledMapConfiguration& WithLegend(const LegendOptions& value) { SetLegend(value); return *this;} /** *

The legend display setup of the visual.

*/ inline FilledMapConfiguration& WithLegend(LegendOptions&& value) { SetLegend(std::move(value)); return *this;} /** *

The tooltip display setup of the visual.

*/ inline const TooltipOptions& GetTooltip() const{ return m_tooltip; } /** *

The tooltip display setup of the visual.

*/ inline bool TooltipHasBeenSet() const { return m_tooltipHasBeenSet; } /** *

The tooltip display setup of the visual.

*/ inline void SetTooltip(const TooltipOptions& value) { m_tooltipHasBeenSet = true; m_tooltip = value; } /** *

The tooltip display setup of the visual.

*/ inline void SetTooltip(TooltipOptions&& value) { m_tooltipHasBeenSet = true; m_tooltip = std::move(value); } /** *

The tooltip display setup of the visual.

*/ inline FilledMapConfiguration& WithTooltip(const TooltipOptions& value) { SetTooltip(value); return *this;} /** *

The tooltip display setup of the visual.

*/ inline FilledMapConfiguration& WithTooltip(TooltipOptions&& value) { SetTooltip(std::move(value)); return *this;} /** *

The window options of the filled map visual.

*/ inline const GeospatialWindowOptions& GetWindowOptions() const{ return m_windowOptions; } /** *

The window options of the filled map visual.

*/ inline bool WindowOptionsHasBeenSet() const { return m_windowOptionsHasBeenSet; } /** *

The window options of the filled map visual.

*/ inline void SetWindowOptions(const GeospatialWindowOptions& value) { m_windowOptionsHasBeenSet = true; m_windowOptions = value; } /** *

The window options of the filled map visual.

*/ inline void SetWindowOptions(GeospatialWindowOptions&& value) { m_windowOptionsHasBeenSet = true; m_windowOptions = std::move(value); } /** *

The window options of the filled map visual.

*/ inline FilledMapConfiguration& WithWindowOptions(const GeospatialWindowOptions& value) { SetWindowOptions(value); return *this;} /** *

The window options of the filled map visual.

*/ inline FilledMapConfiguration& WithWindowOptions(GeospatialWindowOptions&& value) { SetWindowOptions(std::move(value)); return *this;} /** *

The map style options of the filled map visual.

*/ inline const GeospatialMapStyleOptions& GetMapStyleOptions() const{ return m_mapStyleOptions; } /** *

The map style options of the filled map visual.

*/ inline bool MapStyleOptionsHasBeenSet() const { return m_mapStyleOptionsHasBeenSet; } /** *

The map style options of the filled map visual.

*/ inline void SetMapStyleOptions(const GeospatialMapStyleOptions& value) { m_mapStyleOptionsHasBeenSet = true; m_mapStyleOptions = value; } /** *

The map style options of the filled map visual.

*/ inline void SetMapStyleOptions(GeospatialMapStyleOptions&& value) { m_mapStyleOptionsHasBeenSet = true; m_mapStyleOptions = std::move(value); } /** *

The map style options of the filled map visual.

*/ inline FilledMapConfiguration& WithMapStyleOptions(const GeospatialMapStyleOptions& value) { SetMapStyleOptions(value); return *this;} /** *

The map style options of the filled map visual.

*/ inline FilledMapConfiguration& WithMapStyleOptions(GeospatialMapStyleOptions&& value) { SetMapStyleOptions(std::move(value)); return *this;} private: FilledMapFieldWells m_fieldWells; bool m_fieldWellsHasBeenSet = false; FilledMapSortConfiguration m_sortConfiguration; bool m_sortConfigurationHasBeenSet = false; LegendOptions m_legend; bool m_legendHasBeenSet = false; TooltipOptions m_tooltip; bool m_tooltipHasBeenSet = false; GeospatialWindowOptions m_windowOptions; bool m_windowOptionsHasBeenSet = false; GeospatialMapStyleOptions m_mapStyleOptions; bool m_mapStyleOptionsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws