/** * 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 static data configuration of the reference line data * configuration.

See Also:

AWS * API Reference

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

The double input of the static data.

*/ inline double GetValue() const{ return m_value; } /** *

The double input of the static data.

*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *

The double input of the static data.

*/ inline void SetValue(double value) { m_valueHasBeenSet = true; m_value = value; } /** *

The double input of the static data.

*/ inline ReferenceLineStaticDataConfiguration& WithValue(double value) { SetValue(value); return *this;} private: double m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws