/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The layout configuration of a section.See Also:
AWS
* API Reference
The free-form layout configuration of a section.
*/ inline const FreeFormSectionLayoutConfiguration& GetFreeFormLayout() const{ return m_freeFormLayout; } /** *The free-form layout configuration of a section.
*/ inline bool FreeFormLayoutHasBeenSet() const { return m_freeFormLayoutHasBeenSet; } /** *The free-form layout configuration of a section.
*/ inline void SetFreeFormLayout(const FreeFormSectionLayoutConfiguration& value) { m_freeFormLayoutHasBeenSet = true; m_freeFormLayout = value; } /** *The free-form layout configuration of a section.
*/ inline void SetFreeFormLayout(FreeFormSectionLayoutConfiguration&& value) { m_freeFormLayoutHasBeenSet = true; m_freeFormLayout = std::move(value); } /** *The free-form layout configuration of a section.
*/ inline SectionLayoutConfiguration& WithFreeFormLayout(const FreeFormSectionLayoutConfiguration& value) { SetFreeFormLayout(value); return *this;} /** *The free-form layout configuration of a section.
*/ inline SectionLayoutConfiguration& WithFreeFormLayout(FreeFormSectionLayoutConfiguration&& value) { SetFreeFormLayout(std::move(value)); return *this;} private: FreeFormSectionLayoutConfiguration m_freeFormLayout; bool m_freeFormLayoutHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws