/** * 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 style options of the box plot.

See Also:

AWS * API Reference

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

The fill styles (solid, transparent) of the box plot.

*/ inline const BoxPlotFillStyle& GetFillStyle() const{ return m_fillStyle; } /** *

The fill styles (solid, transparent) of the box plot.

*/ inline bool FillStyleHasBeenSet() const { return m_fillStyleHasBeenSet; } /** *

The fill styles (solid, transparent) of the box plot.

*/ inline void SetFillStyle(const BoxPlotFillStyle& value) { m_fillStyleHasBeenSet = true; m_fillStyle = value; } /** *

The fill styles (solid, transparent) of the box plot.

*/ inline void SetFillStyle(BoxPlotFillStyle&& value) { m_fillStyleHasBeenSet = true; m_fillStyle = std::move(value); } /** *

The fill styles (solid, transparent) of the box plot.

*/ inline BoxPlotStyleOptions& WithFillStyle(const BoxPlotFillStyle& value) { SetFillStyle(value); return *this;} /** *

The fill styles (solid, transparent) of the box plot.

*/ inline BoxPlotStyleOptions& WithFillStyle(BoxPlotFillStyle&& value) { SetFillStyle(std::move(value)); return *this;} private: BoxPlotFillStyle m_fillStyle; bool m_fillStyleHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws