/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

The logarithmic axis scale setup.

See Also:

AWS * API Reference

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

The base setup of a logarithmic axis scale.

*/ inline double GetBase() const{ return m_base; } /** *

The base setup of a logarithmic axis scale.

*/ inline bool BaseHasBeenSet() const { return m_baseHasBeenSet; } /** *

The base setup of a logarithmic axis scale.

*/ inline void SetBase(double value) { m_baseHasBeenSet = true; m_base = value; } /** *

The base setup of a logarithmic axis scale.

*/ inline AxisLogarithmicScale& WithBase(double value) { SetBase(value); return *this;} private: double m_base; bool m_baseHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws