/** * 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 cluster marker configuration of the geospatial map selected point * style.

See Also:

AWS * API Reference

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

The cluster marker that is a part of the cluster marker configuration.

*/ inline const ClusterMarker& GetClusterMarker() const{ return m_clusterMarker; } /** *

The cluster marker that is a part of the cluster marker configuration.

*/ inline bool ClusterMarkerHasBeenSet() const { return m_clusterMarkerHasBeenSet; } /** *

The cluster marker that is a part of the cluster marker configuration.

*/ inline void SetClusterMarker(const ClusterMarker& value) { m_clusterMarkerHasBeenSet = true; m_clusterMarker = value; } /** *

The cluster marker that is a part of the cluster marker configuration.

*/ inline void SetClusterMarker(ClusterMarker&& value) { m_clusterMarkerHasBeenSet = true; m_clusterMarker = std::move(value); } /** *

The cluster marker that is a part of the cluster marker configuration.

*/ inline ClusterMarkerConfiguration& WithClusterMarker(const ClusterMarker& value) { SetClusterMarker(value); return *this;} /** *

The cluster marker that is a part of the cluster marker configuration.

*/ inline ClusterMarkerConfiguration& WithClusterMarker(ClusterMarker&& value) { SetClusterMarker(std::move(value)); return *this;} private: ClusterMarker m_clusterMarker; bool m_clusterMarkerHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws