/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The options that determine the default settings for a paginated layout
* configuration.See Also:
AWS
* API Reference
The options that determine the default settings for a section-based layout * configuration.
*/ inline const DefaultSectionBasedLayoutConfiguration& GetSectionBased() const{ return m_sectionBased; } /** *The options that determine the default settings for a section-based layout * configuration.
*/ inline bool SectionBasedHasBeenSet() const { return m_sectionBasedHasBeenSet; } /** *The options that determine the default settings for a section-based layout * configuration.
*/ inline void SetSectionBased(const DefaultSectionBasedLayoutConfiguration& value) { m_sectionBasedHasBeenSet = true; m_sectionBased = value; } /** *The options that determine the default settings for a section-based layout * configuration.
*/ inline void SetSectionBased(DefaultSectionBasedLayoutConfiguration&& value) { m_sectionBasedHasBeenSet = true; m_sectionBased = std::move(value); } /** *The options that determine the default settings for a section-based layout * configuration.
*/ inline DefaultPaginatedLayoutConfiguration& WithSectionBased(const DefaultSectionBasedLayoutConfiguration& value) { SetSectionBased(value); return *this;} /** *The options that determine the default settings for a section-based layout * configuration.
*/ inline DefaultPaginatedLayoutConfiguration& WithSectionBased(DefaultSectionBasedLayoutConfiguration&& value) { SetSectionBased(std::move(value)); return *this;} private: DefaultSectionBasedLayoutConfiguration m_sectionBased; bool m_sectionBasedHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws