/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

Determines the border options for a table visual.

See Also:

* AWS * API Reference

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

Determines the options for uniform border.

*/ inline const TableBorderOptions& GetUniformBorder() const{ return m_uniformBorder; } /** *

Determines the options for uniform border.

*/ inline bool UniformBorderHasBeenSet() const { return m_uniformBorderHasBeenSet; } /** *

Determines the options for uniform border.

*/ inline void SetUniformBorder(const TableBorderOptions& value) { m_uniformBorderHasBeenSet = true; m_uniformBorder = value; } /** *

Determines the options for uniform border.

*/ inline void SetUniformBorder(TableBorderOptions&& value) { m_uniformBorderHasBeenSet = true; m_uniformBorder = std::move(value); } /** *

Determines the options for uniform border.

*/ inline GlobalTableBorderOptions& WithUniformBorder(const TableBorderOptions& value) { SetUniformBorder(value); return *this;} /** *

Determines the options for uniform border.

*/ inline GlobalTableBorderOptions& WithUniformBorder(TableBorderOptions&& value) { SetUniformBorder(std::move(value)); return *this;} /** *

Determines the options for side specific border.

*/ inline const TableSideBorderOptions& GetSideSpecificBorder() const{ return m_sideSpecificBorder; } /** *

Determines the options for side specific border.

*/ inline bool SideSpecificBorderHasBeenSet() const { return m_sideSpecificBorderHasBeenSet; } /** *

Determines the options for side specific border.

*/ inline void SetSideSpecificBorder(const TableSideBorderOptions& value) { m_sideSpecificBorderHasBeenSet = true; m_sideSpecificBorder = value; } /** *

Determines the options for side specific border.

*/ inline void SetSideSpecificBorder(TableSideBorderOptions&& value) { m_sideSpecificBorderHasBeenSet = true; m_sideSpecificBorder = std::move(value); } /** *

Determines the options for side specific border.

*/ inline GlobalTableBorderOptions& WithSideSpecificBorder(const TableSideBorderOptions& value) { SetSideSpecificBorder(value); return *this;} /** *

Determines the options for side specific border.

*/ inline GlobalTableBorderOptions& WithSideSpecificBorder(TableSideBorderOptions&& value) { SetSideSpecificBorder(std::move(value)); return *this;} private: TableBorderOptions m_uniformBorder; bool m_uniformBorderHasBeenSet = false; TableSideBorderOptions m_sideSpecificBorder; bool m_sideSpecificBorderHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws