/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The display options for tile borders for visuals.See Also:
* AWS
* API Reference
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