/** * 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 gutter spacing between tiles on a * sheet.

See Also:

AWS * API Reference

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

This Boolean value controls whether to display a gutter space between sheet * tiles.

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

This Boolean value controls whether to display a gutter space between sheet * tiles.

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

This Boolean value controls whether to display a gutter space between sheet * tiles.

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

This Boolean value controls whether to display a gutter space between sheet * tiles.

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