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

The layout configuration of a section.

See Also:

AWS * API Reference

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

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