/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The logarithmic axis scale setup.See Also:
AWS
* API Reference
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