/** * 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 { /** *

A grid layout to define the placement of sheet control.

See * Also:

AWS * API Reference

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

The configuration that determines the elements and canvas size options of * sheet control.

*/ inline const SheetControlLayoutConfiguration& GetConfiguration() const{ return m_configuration; } /** *

The configuration that determines the elements and canvas size options of * sheet control.

*/ inline bool ConfigurationHasBeenSet() const { return m_configurationHasBeenSet; } /** *

The configuration that determines the elements and canvas size options of * sheet control.

*/ inline void SetConfiguration(const SheetControlLayoutConfiguration& value) { m_configurationHasBeenSet = true; m_configuration = value; } /** *

The configuration that determines the elements and canvas size options of * sheet control.

*/ inline void SetConfiguration(SheetControlLayoutConfiguration&& value) { m_configurationHasBeenSet = true; m_configuration = std::move(value); } /** *

The configuration that determines the elements and canvas size options of * sheet control.

*/ inline SheetControlLayout& WithConfiguration(const SheetControlLayoutConfiguration& value) { SetConfiguration(value); return *this;} /** *

The configuration that determines the elements and canvas size options of * sheet control.

*/ inline SheetControlLayout& WithConfiguration(SheetControlLayoutConfiguration&& value) { SetConfiguration(std::move(value)); return *this;} private: SheetControlLayoutConfiguration m_configuration; bool m_configurationHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws