/** * 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 { /** *

Formatting configuration for number fields.

See Also:

AWS * API Reference

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

The options that determine the numeric format configuration.

*/ inline const NumericFormatConfiguration& GetFormatConfiguration() const{ return m_formatConfiguration; } /** *

The options that determine the numeric format configuration.

*/ inline bool FormatConfigurationHasBeenSet() const { return m_formatConfigurationHasBeenSet; } /** *

The options that determine the numeric format configuration.

*/ inline void SetFormatConfiguration(const NumericFormatConfiguration& value) { m_formatConfigurationHasBeenSet = true; m_formatConfiguration = value; } /** *

The options that determine the numeric format configuration.

*/ inline void SetFormatConfiguration(NumericFormatConfiguration&& value) { m_formatConfigurationHasBeenSet = true; m_formatConfiguration = std::move(value); } /** *

The options that determine the numeric format configuration.

*/ inline NumberFormatConfiguration& WithFormatConfiguration(const NumericFormatConfiguration& value) { SetFormatConfiguration(value); return *this;} /** *

The options that determine the numeric format configuration.

*/ inline NumberFormatConfiguration& WithFormatConfiguration(NumericFormatConfiguration&& value) { SetFormatConfiguration(std::move(value)); return *this;} private: NumericFormatConfiguration m_formatConfiguration; bool m_formatConfigurationHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws