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

The display options for tile borders for visuals.

See Also:

* AWS * API Reference

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

The option to enable display of borders for visuals.

*/ inline bool GetShow() const{ return m_show; } /** *

The option to enable display of borders for visuals.

*/ inline bool ShowHasBeenSet() const { return m_showHasBeenSet; } /** *

The option to enable display of borders for visuals.

*/ inline void SetShow(bool value) { m_showHasBeenSet = true; m_show = value; } /** *

The option to enable display of borders for visuals.

*/ inline BorderStyle& WithShow(bool value) { SetShow(value); return *this;} private: bool m_show; bool m_showHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws