/** * 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 side border options for a table.

See Also:

AWS * API Reference

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

The table border options of the inner vertical border.

*/ inline const TableBorderOptions& GetInnerVertical() const{ return m_innerVertical; } /** *

The table border options of the inner vertical border.

*/ inline bool InnerVerticalHasBeenSet() const { return m_innerVerticalHasBeenSet; } /** *

The table border options of the inner vertical border.

*/ inline void SetInnerVertical(const TableBorderOptions& value) { m_innerVerticalHasBeenSet = true; m_innerVertical = value; } /** *

The table border options of the inner vertical border.

*/ inline void SetInnerVertical(TableBorderOptions&& value) { m_innerVerticalHasBeenSet = true; m_innerVertical = std::move(value); } /** *

The table border options of the inner vertical border.

*/ inline TableSideBorderOptions& WithInnerVertical(const TableBorderOptions& value) { SetInnerVertical(value); return *this;} /** *

The table border options of the inner vertical border.

*/ inline TableSideBorderOptions& WithInnerVertical(TableBorderOptions&& value) { SetInnerVertical(std::move(value)); return *this;} /** *

The table border options of the inner horizontal border.

*/ inline const TableBorderOptions& GetInnerHorizontal() const{ return m_innerHorizontal; } /** *

The table border options of the inner horizontal border.

*/ inline bool InnerHorizontalHasBeenSet() const { return m_innerHorizontalHasBeenSet; } /** *

The table border options of the inner horizontal border.

*/ inline void SetInnerHorizontal(const TableBorderOptions& value) { m_innerHorizontalHasBeenSet = true; m_innerHorizontal = value; } /** *

The table border options of the inner horizontal border.

*/ inline void SetInnerHorizontal(TableBorderOptions&& value) { m_innerHorizontalHasBeenSet = true; m_innerHorizontal = std::move(value); } /** *

The table border options of the inner horizontal border.

*/ inline TableSideBorderOptions& WithInnerHorizontal(const TableBorderOptions& value) { SetInnerHorizontal(value); return *this;} /** *

The table border options of the inner horizontal border.

*/ inline TableSideBorderOptions& WithInnerHorizontal(TableBorderOptions&& value) { SetInnerHorizontal(std::move(value)); return *this;} /** *

The table border options of the left border.

*/ inline const TableBorderOptions& GetLeft() const{ return m_left; } /** *

The table border options of the left border.

*/ inline bool LeftHasBeenSet() const { return m_leftHasBeenSet; } /** *

The table border options of the left border.

*/ inline void SetLeft(const TableBorderOptions& value) { m_leftHasBeenSet = true; m_left = value; } /** *

The table border options of the left border.

*/ inline void SetLeft(TableBorderOptions&& value) { m_leftHasBeenSet = true; m_left = std::move(value); } /** *

The table border options of the left border.

*/ inline TableSideBorderOptions& WithLeft(const TableBorderOptions& value) { SetLeft(value); return *this;} /** *

The table border options of the left border.

*/ inline TableSideBorderOptions& WithLeft(TableBorderOptions&& value) { SetLeft(std::move(value)); return *this;} /** *

The table border options of the right border.

*/ inline const TableBorderOptions& GetRight() const{ return m_right; } /** *

The table border options of the right border.

*/ inline bool RightHasBeenSet() const { return m_rightHasBeenSet; } /** *

The table border options of the right border.

*/ inline void SetRight(const TableBorderOptions& value) { m_rightHasBeenSet = true; m_right = value; } /** *

The table border options of the right border.

*/ inline void SetRight(TableBorderOptions&& value) { m_rightHasBeenSet = true; m_right = std::move(value); } /** *

The table border options of the right border.

*/ inline TableSideBorderOptions& WithRight(const TableBorderOptions& value) { SetRight(value); return *this;} /** *

The table border options of the right border.

*/ inline TableSideBorderOptions& WithRight(TableBorderOptions&& value) { SetRight(std::move(value)); return *this;} /** *

The table border options of the top border.

*/ inline const TableBorderOptions& GetTop() const{ return m_top; } /** *

The table border options of the top border.

*/ inline bool TopHasBeenSet() const { return m_topHasBeenSet; } /** *

The table border options of the top border.

*/ inline void SetTop(const TableBorderOptions& value) { m_topHasBeenSet = true; m_top = value; } /** *

The table border options of the top border.

*/ inline void SetTop(TableBorderOptions&& value) { m_topHasBeenSet = true; m_top = std::move(value); } /** *

The table border options of the top border.

*/ inline TableSideBorderOptions& WithTop(const TableBorderOptions& value) { SetTop(value); return *this;} /** *

The table border options of the top border.

*/ inline TableSideBorderOptions& WithTop(TableBorderOptions&& value) { SetTop(std::move(value)); return *this;} /** *

The table border options of the bottom border.

*/ inline const TableBorderOptions& GetBottom() const{ return m_bottom; } /** *

The table border options of the bottom border.

*/ inline bool BottomHasBeenSet() const { return m_bottomHasBeenSet; } /** *

The table border options of the bottom border.

*/ inline void SetBottom(const TableBorderOptions& value) { m_bottomHasBeenSet = true; m_bottom = value; } /** *

The table border options of the bottom border.

*/ inline void SetBottom(TableBorderOptions&& value) { m_bottomHasBeenSet = true; m_bottom = std::move(value); } /** *

The table border options of the bottom border.

*/ inline TableSideBorderOptions& WithBottom(const TableBorderOptions& value) { SetBottom(value); return *this;} /** *

The table border options of the bottom border.

*/ inline TableSideBorderOptions& WithBottom(TableBorderOptions&& value) { SetBottom(std::move(value)); return *this;} private: TableBorderOptions m_innerVertical; bool m_innerVerticalHasBeenSet = false; TableBorderOptions m_innerHorizontal; bool m_innerHorizontalHasBeenSet = false; TableBorderOptions m_left; bool m_leftHasBeenSet = false; TableBorderOptions m_right; bool m_rightHasBeenSet = false; TableBorderOptions m_top; bool m_topHasBeenSet = false; TableBorderOptions m_bottom; bool m_bottomHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws