/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The options that determine the thousands separator
* configuration.See Also:
AWS
* API Reference
Determines the thousands separator symbol.
*/ inline const NumericSeparatorSymbol& GetSymbol() const{ return m_symbol; } /** *Determines the thousands separator symbol.
*/ inline bool SymbolHasBeenSet() const { return m_symbolHasBeenSet; } /** *Determines the thousands separator symbol.
*/ inline void SetSymbol(const NumericSeparatorSymbol& value) { m_symbolHasBeenSet = true; m_symbol = value; } /** *Determines the thousands separator symbol.
*/ inline void SetSymbol(NumericSeparatorSymbol&& value) { m_symbolHasBeenSet = true; m_symbol = std::move(value); } /** *Determines the thousands separator symbol.
*/ inline ThousandSeparatorOptions& WithSymbol(const NumericSeparatorSymbol& value) { SetSymbol(value); return *this;} /** *Determines the thousands separator symbol.
*/ inline ThousandSeparatorOptions& WithSymbol(NumericSeparatorSymbol&& value) { SetSymbol(std::move(value)); return *this;} /** *Determines the visibility of the thousands separator.
*/ inline const Visibility& GetVisibility() const{ return m_visibility; } /** *Determines the visibility of the thousands separator.
*/ inline bool VisibilityHasBeenSet() const { return m_visibilityHasBeenSet; } /** *Determines the visibility of the thousands separator.
*/ inline void SetVisibility(const Visibility& value) { m_visibilityHasBeenSet = true; m_visibility = value; } /** *Determines the visibility of the thousands separator.
*/ inline void SetVisibility(Visibility&& value) { m_visibilityHasBeenSet = true; m_visibility = std::move(value); } /** *Determines the visibility of the thousands separator.
*/ inline ThousandSeparatorOptions& WithVisibility(const Visibility& value) { SetVisibility(value); return *this;} /** *Determines the visibility of the thousands separator.
*/ inline ThousandSeparatorOptions& WithVisibility(Visibility&& value) { SetVisibility(std::move(value)); return *this;} private: NumericSeparatorSymbol m_symbol; bool m_symbolHasBeenSet = false; Visibility m_visibility; bool m_visibilityHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws