/**
* 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 options that determine the arc thickness of a
* GaugeChartVisual
.
See Also:
AWS
* API Reference
*/
class ArcOptions
{
public:
AWS_QUICKSIGHT_API ArcOptions();
AWS_QUICKSIGHT_API ArcOptions(Aws::Utils::Json::JsonView jsonValue);
AWS_QUICKSIGHT_API ArcOptions& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
/**
* The arc thickness of a GaugeChartVisual
.
*/
inline const ArcThickness& GetArcThickness() const{ return m_arcThickness; }
/**
* The arc thickness of a GaugeChartVisual
.
*/
inline bool ArcThicknessHasBeenSet() const { return m_arcThicknessHasBeenSet; }
/**
* The arc thickness of a GaugeChartVisual
.
*/
inline void SetArcThickness(const ArcThickness& value) { m_arcThicknessHasBeenSet = true; m_arcThickness = value; }
/**
* The arc thickness of a GaugeChartVisual
.
*/
inline void SetArcThickness(ArcThickness&& value) { m_arcThicknessHasBeenSet = true; m_arcThickness = std::move(value); }
/**
* The arc thickness of a GaugeChartVisual
.
*/
inline ArcOptions& WithArcThickness(const ArcThickness& value) { SetArcThickness(value); return *this;}
/**
* The arc thickness of a GaugeChartVisual
.
*/
inline ArcOptions& WithArcThickness(ArcThickness&& value) { SetArcThickness(std::move(value)); return *this;}
private:
ArcThickness m_arcThickness;
bool m_arcThicknessHasBeenSet = false;
};
} // namespace Model
} // namespace QuickSight
} // namespace Aws