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