/** * 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 axis configuration of a GaugeChartVisual.

See * Also:

AWS * API Reference

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

The arc axis range of a GaugeChartVisual.

*/ inline const ArcAxisDisplayRange& GetRange() const{ return m_range; } /** *

The arc axis range of a GaugeChartVisual.

*/ inline bool RangeHasBeenSet() const { return m_rangeHasBeenSet; } /** *

The arc axis range of a GaugeChartVisual.

*/ inline void SetRange(const ArcAxisDisplayRange& value) { m_rangeHasBeenSet = true; m_range = value; } /** *

The arc axis range of a GaugeChartVisual.

*/ inline void SetRange(ArcAxisDisplayRange&& value) { m_rangeHasBeenSet = true; m_range = std::move(value); } /** *

The arc axis range of a GaugeChartVisual.

*/ inline ArcAxisConfiguration& WithRange(const ArcAxisDisplayRange& value) { SetRange(value); return *this;} /** *

The arc axis range of a GaugeChartVisual.

*/ inline ArcAxisConfiguration& WithRange(ArcAxisDisplayRange&& value) { SetRange(std::move(value)); return *this;} /** *

The reserved range of the arc axis.

*/ inline int GetReserveRange() const{ return m_reserveRange; } /** *

The reserved range of the arc axis.

*/ inline bool ReserveRangeHasBeenSet() const { return m_reserveRangeHasBeenSet; } /** *

The reserved range of the arc axis.

*/ inline void SetReserveRange(int value) { m_reserveRangeHasBeenSet = true; m_reserveRange = value; } /** *

The reserved range of the arc axis.

*/ inline ArcAxisConfiguration& WithReserveRange(int value) { SetReserveRange(value); return *this;} private: ArcAxisDisplayRange m_range; bool m_rangeHasBeenSet = false; int m_reserveRange; bool m_reserveRangeHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws