/** * 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 override parameters for a single dashboard that is being * imported.

See Also:

AWS * API Reference

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

The ID of the dashboard that you want to apply overrides to.

*/ inline const Aws::String& GetDashboardId() const{ return m_dashboardId; } /** *

The ID of the dashboard that you want to apply overrides to.

*/ inline bool DashboardIdHasBeenSet() const { return m_dashboardIdHasBeenSet; } /** *

The ID of the dashboard that you want to apply overrides to.

*/ inline void SetDashboardId(const Aws::String& value) { m_dashboardIdHasBeenSet = true; m_dashboardId = value; } /** *

The ID of the dashboard that you want to apply overrides to.

*/ inline void SetDashboardId(Aws::String&& value) { m_dashboardIdHasBeenSet = true; m_dashboardId = std::move(value); } /** *

The ID of the dashboard that you want to apply overrides to.

*/ inline void SetDashboardId(const char* value) { m_dashboardIdHasBeenSet = true; m_dashboardId.assign(value); } /** *

The ID of the dashboard that you want to apply overrides to.

*/ inline AssetBundleImportJobDashboardOverrideParameters& WithDashboardId(const Aws::String& value) { SetDashboardId(value); return *this;} /** *

The ID of the dashboard that you want to apply overrides to.

*/ inline AssetBundleImportJobDashboardOverrideParameters& WithDashboardId(Aws::String&& value) { SetDashboardId(std::move(value)); return *this;} /** *

The ID of the dashboard that you want to apply overrides to.

*/ inline AssetBundleImportJobDashboardOverrideParameters& WithDashboardId(const char* value) { SetDashboardId(value); return *this;} /** *

A new name for the dashboard.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

A new name for the dashboard.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

A new name for the dashboard.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

A new name for the dashboard.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

A new name for the dashboard.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

A new name for the dashboard.

*/ inline AssetBundleImportJobDashboardOverrideParameters& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

A new name for the dashboard.

*/ inline AssetBundleImportJobDashboardOverrideParameters& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

A new name for the dashboard.

*/ inline AssetBundleImportJobDashboardOverrideParameters& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_dashboardId; bool m_dashboardIdHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws