/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

The bookmarks configuration of an embedded dashboard.

See * Also:

AWS * API Reference

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

A Boolean value that determines whether a user can bookmark an embedded * dashboard.

*/ inline bool GetEnabled() const{ return m_enabled; } /** *

A Boolean value that determines whether a user can bookmark an embedded * dashboard.

*/ inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; } /** *

A Boolean value that determines whether a user can bookmark an embedded * dashboard.

*/ inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; } /** *

A Boolean value that determines whether a user can bookmark an embedded * dashboard.

*/ inline BookmarksConfigurations& WithEnabled(bool value) { SetEnabled(value); return *this;} private: bool m_enabled; bool m_enabledHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws