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

Information about the dashboard that you want to embed.

See * Also:

AWS * API Reference

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

The dashboard ID for the dashboard that you want the user to see first. This * ID is included in the output URL. When the URL in response is accessed, Amazon * QuickSight renders this dashboard.

The Amazon Resource Name (ARN) of this * dashboard must be included in the AuthorizedResourceArns parameter. * Otherwise, the request will fail with * InvalidParameterValueException.

*/ inline const Aws::String& GetInitialDashboardId() const{ return m_initialDashboardId; } /** *

The dashboard ID for the dashboard that you want the user to see first. This * ID is included in the output URL. When the URL in response is accessed, Amazon * QuickSight renders this dashboard.

The Amazon Resource Name (ARN) of this * dashboard must be included in the AuthorizedResourceArns parameter. * Otherwise, the request will fail with * InvalidParameterValueException.

*/ inline bool InitialDashboardIdHasBeenSet() const { return m_initialDashboardIdHasBeenSet; } /** *

The dashboard ID for the dashboard that you want the user to see first. This * ID is included in the output URL. When the URL in response is accessed, Amazon * QuickSight renders this dashboard.

The Amazon Resource Name (ARN) of this * dashboard must be included in the AuthorizedResourceArns parameter. * Otherwise, the request will fail with * InvalidParameterValueException.

*/ inline void SetInitialDashboardId(const Aws::String& value) { m_initialDashboardIdHasBeenSet = true; m_initialDashboardId = value; } /** *

The dashboard ID for the dashboard that you want the user to see first. This * ID is included in the output URL. When the URL in response is accessed, Amazon * QuickSight renders this dashboard.

The Amazon Resource Name (ARN) of this * dashboard must be included in the AuthorizedResourceArns parameter. * Otherwise, the request will fail with * InvalidParameterValueException.

*/ inline void SetInitialDashboardId(Aws::String&& value) { m_initialDashboardIdHasBeenSet = true; m_initialDashboardId = std::move(value); } /** *

The dashboard ID for the dashboard that you want the user to see first. This * ID is included in the output URL. When the URL in response is accessed, Amazon * QuickSight renders this dashboard.

The Amazon Resource Name (ARN) of this * dashboard must be included in the AuthorizedResourceArns parameter. * Otherwise, the request will fail with * InvalidParameterValueException.

*/ inline void SetInitialDashboardId(const char* value) { m_initialDashboardIdHasBeenSet = true; m_initialDashboardId.assign(value); } /** *

The dashboard ID for the dashboard that you want the user to see first. This * ID is included in the output URL. When the URL in response is accessed, Amazon * QuickSight renders this dashboard.

The Amazon Resource Name (ARN) of this * dashboard must be included in the AuthorizedResourceArns parameter. * Otherwise, the request will fail with * InvalidParameterValueException.

*/ inline AnonymousUserDashboardEmbeddingConfiguration& WithInitialDashboardId(const Aws::String& value) { SetInitialDashboardId(value); return *this;} /** *

The dashboard ID for the dashboard that you want the user to see first. This * ID is included in the output URL. When the URL in response is accessed, Amazon * QuickSight renders this dashboard.

The Amazon Resource Name (ARN) of this * dashboard must be included in the AuthorizedResourceArns parameter. * Otherwise, the request will fail with * InvalidParameterValueException.

*/ inline AnonymousUserDashboardEmbeddingConfiguration& WithInitialDashboardId(Aws::String&& value) { SetInitialDashboardId(std::move(value)); return *this;} /** *

The dashboard ID for the dashboard that you want the user to see first. This * ID is included in the output URL. When the URL in response is accessed, Amazon * QuickSight renders this dashboard.

The Amazon Resource Name (ARN) of this * dashboard must be included in the AuthorizedResourceArns parameter. * Otherwise, the request will fail with * InvalidParameterValueException.

*/ inline AnonymousUserDashboardEmbeddingConfiguration& WithInitialDashboardId(const char* value) { SetInitialDashboardId(value); return *this;} private: Aws::String m_initialDashboardId; bool m_initialDashboardIdHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws