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