/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A grid layout to define the placement of sheet control.See
* Also:
AWS
* API Reference
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