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