/** * 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 default values of a decimal parameter.

See Also:

AWS * API Reference

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

A list of static default values for a given decimal parameter.

*/ inline const Aws::Vector& GetStaticValues() const{ return m_staticValues; } /** *

A list of static default values for a given decimal parameter.

*/ inline bool StaticValuesHasBeenSet() const { return m_staticValuesHasBeenSet; } /** *

A list of static default values for a given decimal parameter.

*/ inline void SetStaticValues(const Aws::Vector& value) { m_staticValuesHasBeenSet = true; m_staticValues = value; } /** *

A list of static default values for a given decimal parameter.

*/ inline void SetStaticValues(Aws::Vector&& value) { m_staticValuesHasBeenSet = true; m_staticValues = std::move(value); } /** *

A list of static default values for a given decimal parameter.

*/ inline DecimalDatasetParameterDefaultValues& WithStaticValues(const Aws::Vector& value) { SetStaticValues(value); return *this;} /** *

A list of static default values for a given decimal parameter.

*/ inline DecimalDatasetParameterDefaultValues& WithStaticValues(Aws::Vector&& value) { SetStaticValues(std::move(value)); return *this;} /** *

A list of static default values for a given decimal parameter.

*/ inline DecimalDatasetParameterDefaultValues& AddStaticValues(double value) { m_staticValuesHasBeenSet = true; m_staticValues.push_back(value); return *this; } private: Aws::Vector m_staticValues; bool m_staticValuesHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws