/** * 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 simple cluster marker of the cluster marker.

See Also:

* AWS * API Reference

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

The color of the simple cluster marker.

*/ inline const Aws::String& GetColor() const{ return m_color; } /** *

The color of the simple cluster marker.

*/ inline bool ColorHasBeenSet() const { return m_colorHasBeenSet; } /** *

The color of the simple cluster marker.

*/ inline void SetColor(const Aws::String& value) { m_colorHasBeenSet = true; m_color = value; } /** *

The color of the simple cluster marker.

*/ inline void SetColor(Aws::String&& value) { m_colorHasBeenSet = true; m_color = std::move(value); } /** *

The color of the simple cluster marker.

*/ inline void SetColor(const char* value) { m_colorHasBeenSet = true; m_color.assign(value); } /** *

The color of the simple cluster marker.

*/ inline SimpleClusterMarker& WithColor(const Aws::String& value) { SetColor(value); return *this;} /** *

The color of the simple cluster marker.

*/ inline SimpleClusterMarker& WithColor(Aws::String&& value) { SetColor(std::move(value)); return *this;} /** *

The color of the simple cluster marker.

*/ inline SimpleClusterMarker& WithColor(const char* value) { SetColor(value); return *this;} private: Aws::String m_color; bool m_colorHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws