/** * 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 { /** *

Conditional formatting options of a * FilledMapVisual.

See Also:

AWS * API Reference

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

The conditional formatting that determines the shape of the filled map.

*/ inline const FilledMapShapeConditionalFormatting& GetShape() const{ return m_shape; } /** *

The conditional formatting that determines the shape of the filled map.

*/ inline bool ShapeHasBeenSet() const { return m_shapeHasBeenSet; } /** *

The conditional formatting that determines the shape of the filled map.

*/ inline void SetShape(const FilledMapShapeConditionalFormatting& value) { m_shapeHasBeenSet = true; m_shape = value; } /** *

The conditional formatting that determines the shape of the filled map.

*/ inline void SetShape(FilledMapShapeConditionalFormatting&& value) { m_shapeHasBeenSet = true; m_shape = std::move(value); } /** *

The conditional formatting that determines the shape of the filled map.

*/ inline FilledMapConditionalFormattingOption& WithShape(const FilledMapShapeConditionalFormatting& value) { SetShape(value); return *this;} /** *

The conditional formatting that determines the shape of the filled map.

*/ inline FilledMapConditionalFormattingOption& WithShape(FilledMapShapeConditionalFormatting&& value) { SetShape(std::move(value)); return *this;} private: FilledMapShapeConditionalFormatting m_shape; bool m_shapeHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws