/** * 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 map style options of the geospatial map.

See Also:

AWS * API Reference

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

The base map style of the geospatial map.

*/ inline const BaseMapStyleType& GetBaseMapStyle() const{ return m_baseMapStyle; } /** *

The base map style of the geospatial map.

*/ inline bool BaseMapStyleHasBeenSet() const { return m_baseMapStyleHasBeenSet; } /** *

The base map style of the geospatial map.

*/ inline void SetBaseMapStyle(const BaseMapStyleType& value) { m_baseMapStyleHasBeenSet = true; m_baseMapStyle = value; } /** *

The base map style of the geospatial map.

*/ inline void SetBaseMapStyle(BaseMapStyleType&& value) { m_baseMapStyleHasBeenSet = true; m_baseMapStyle = std::move(value); } /** *

The base map style of the geospatial map.

*/ inline GeospatialMapStyleOptions& WithBaseMapStyle(const BaseMapStyleType& value) { SetBaseMapStyle(value); return *this;} /** *

The base map style of the geospatial map.

*/ inline GeospatialMapStyleOptions& WithBaseMapStyle(BaseMapStyleType&& value) { SetBaseMapStyle(std::move(value)); return *this;} private: BaseMapStyleType m_baseMapStyle; bool m_baseMapStyleHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws