/** * 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 options that determine the default settings for a paginated layout * configuration.

See Also:

AWS * API Reference

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

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