/** * 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 theme that is imported.

See * Also:

AWS * API Reference

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

The ID of the theme to apply overrides to.

*/ inline const Aws::String& GetThemeId() const{ return m_themeId; } /** *

The ID of the theme to apply overrides to.

*/ inline bool ThemeIdHasBeenSet() const { return m_themeIdHasBeenSet; } /** *

The ID of the theme to apply overrides to.

*/ inline void SetThemeId(const Aws::String& value) { m_themeIdHasBeenSet = true; m_themeId = value; } /** *

The ID of the theme to apply overrides to.

*/ inline void SetThemeId(Aws::String&& value) { m_themeIdHasBeenSet = true; m_themeId = std::move(value); } /** *

The ID of the theme to apply overrides to.

*/ inline void SetThemeId(const char* value) { m_themeIdHasBeenSet = true; m_themeId.assign(value); } /** *

The ID of the theme to apply overrides to.

*/ inline AssetBundleImportJobThemeOverrideParameters& WithThemeId(const Aws::String& value) { SetThemeId(value); return *this;} /** *

The ID of the theme to apply overrides to.

*/ inline AssetBundleImportJobThemeOverrideParameters& WithThemeId(Aws::String&& value) { SetThemeId(std::move(value)); return *this;} /** *

The ID of the theme to apply overrides to.

*/ inline AssetBundleImportJobThemeOverrideParameters& WithThemeId(const char* value) { SetThemeId(value); return *this;} /** *

A new name for the theme.

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

A new name for the theme.

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

A new name for the theme.

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

A new name for the theme.

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

A new name for the theme.

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

A new name for the theme.

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

A new name for the theme.

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

A new name for the theme.

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