/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The configuration of content in a body section.See Also:
AWS
* API Reference
The layout configuration of a body section.
*/ inline const SectionLayoutConfiguration& GetLayout() const{ return m_layout; } /** *The layout configuration of a body section.
*/ inline bool LayoutHasBeenSet() const { return m_layoutHasBeenSet; } /** *The layout configuration of a body section.
*/ inline void SetLayout(const SectionLayoutConfiguration& value) { m_layoutHasBeenSet = true; m_layout = value; } /** *The layout configuration of a body section.
*/ inline void SetLayout(SectionLayoutConfiguration&& value) { m_layoutHasBeenSet = true; m_layout = std::move(value); } /** *The layout configuration of a body section.
*/ inline BodySectionContent& WithLayout(const SectionLayoutConfiguration& value) { SetLayout(value); return *this;} /** *The layout configuration of a body section.
*/ inline BodySectionContent& WithLayout(SectionLayoutConfiguration&& value) { SetLayout(std::move(value)); return *this;} private: SectionLayoutConfiguration m_layout; bool m_layoutHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws