/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Formatting configuration for number fields.See Also:
AWS
* API Reference
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