/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #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 interactive layout * configuration.

See Also:

AWS * API Reference

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

The options that determine the default settings for a grid layout * configuration.

*/ inline const DefaultGridLayoutConfiguration& GetGrid() const{ return m_grid; } /** *

The options that determine the default settings for a grid layout * configuration.

*/ inline bool GridHasBeenSet() const { return m_gridHasBeenSet; } /** *

The options that determine the default settings for a grid layout * configuration.

*/ inline void SetGrid(const DefaultGridLayoutConfiguration& value) { m_gridHasBeenSet = true; m_grid = value; } /** *

The options that determine the default settings for a grid layout * configuration.

*/ inline void SetGrid(DefaultGridLayoutConfiguration&& value) { m_gridHasBeenSet = true; m_grid = std::move(value); } /** *

The options that determine the default settings for a grid layout * configuration.

*/ inline DefaultInteractiveLayoutConfiguration& WithGrid(const DefaultGridLayoutConfiguration& value) { SetGrid(value); return *this;} /** *

The options that determine the default settings for a grid layout * configuration.

*/ inline DefaultInteractiveLayoutConfiguration& WithGrid(DefaultGridLayoutConfiguration&& value) { SetGrid(std::move(value)); return *this;} /** *

The options that determine the default settings of a free-form layout * configuration.

*/ inline const DefaultFreeFormLayoutConfiguration& GetFreeForm() const{ return m_freeForm; } /** *

The options that determine the default settings of a free-form layout * configuration.

*/ inline bool FreeFormHasBeenSet() const { return m_freeFormHasBeenSet; } /** *

The options that determine the default settings of a free-form layout * configuration.

*/ inline void SetFreeForm(const DefaultFreeFormLayoutConfiguration& value) { m_freeFormHasBeenSet = true; m_freeForm = value; } /** *

The options that determine the default settings of a free-form layout * configuration.

*/ inline void SetFreeForm(DefaultFreeFormLayoutConfiguration&& value) { m_freeFormHasBeenSet = true; m_freeForm = std::move(value); } /** *

The options that determine the default settings of a free-form layout * configuration.

*/ inline DefaultInteractiveLayoutConfiguration& WithFreeForm(const DefaultFreeFormLayoutConfiguration& value) { SetFreeForm(value); return *this;} /** *

The options that determine the default settings of a free-form layout * configuration.

*/ inline DefaultInteractiveLayoutConfiguration& WithFreeForm(DefaultFreeFormLayoutConfiguration&& value) { SetFreeForm(std::move(value)); return *this;} private: DefaultGridLayoutConfiguration m_grid; bool m_gridHasBeenSet = false; DefaultFreeFormLayoutConfiguration m_freeForm; bool m_freeFormHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws