/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The map style options of the geospatial map.See Also:
AWS
* API Reference
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