/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { class DeleteThemeAliasResult { public: AWS_QUICKSIGHT_API DeleteThemeAliasResult(); AWS_QUICKSIGHT_API DeleteThemeAliasResult(const Aws::AmazonWebServiceResult& result); AWS_QUICKSIGHT_API DeleteThemeAliasResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The name for the theme alias.

*/ inline const Aws::String& GetAliasName() const{ return m_aliasName; } /** *

The name for the theme alias.

*/ inline void SetAliasName(const Aws::String& value) { m_aliasName = value; } /** *

The name for the theme alias.

*/ inline void SetAliasName(Aws::String&& value) { m_aliasName = std::move(value); } /** *

The name for the theme alias.

*/ inline void SetAliasName(const char* value) { m_aliasName.assign(value); } /** *

The name for the theme alias.

*/ inline DeleteThemeAliasResult& WithAliasName(const Aws::String& value) { SetAliasName(value); return *this;} /** *

The name for the theme alias.

*/ inline DeleteThemeAliasResult& WithAliasName(Aws::String&& value) { SetAliasName(std::move(value)); return *this;} /** *

The name for the theme alias.

*/ inline DeleteThemeAliasResult& WithAliasName(const char* value) { SetAliasName(value); return *this;} /** *

The Amazon Resource Name (ARN) of the theme resource using the deleted * alias.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name (ARN) of the theme resource using the deleted * alias.

*/ inline void SetArn(const Aws::String& value) { m_arn = value; } /** *

The Amazon Resource Name (ARN) of the theme resource using the deleted * alias.

*/ inline void SetArn(Aws::String&& value) { m_arn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the theme resource using the deleted * alias.

*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *

The Amazon Resource Name (ARN) of the theme resource using the deleted * alias.

*/ inline DeleteThemeAliasResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the theme resource using the deleted * alias.

*/ inline DeleteThemeAliasResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the theme resource using the deleted * alias.

*/ inline DeleteThemeAliasResult& WithArn(const char* value) { SetArn(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DeleteThemeAliasResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteThemeAliasResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteThemeAliasResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} /** *

The HTTP status of the request.

*/ inline int GetStatus() const{ return m_status; } /** *

The HTTP status of the request.

*/ inline void SetStatus(int value) { m_status = value; } /** *

The HTTP status of the request.

*/ inline DeleteThemeAliasResult& WithStatus(int value) { SetStatus(value); return *this;} /** *

An ID for the theme associated with the deletion.

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

An ID for the theme associated with the deletion.

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

An ID for the theme associated with the deletion.

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

An ID for the theme associated with the deletion.

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

An ID for the theme associated with the deletion.

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

An ID for the theme associated with the deletion.

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

An ID for the theme associated with the deletion.

*/ inline DeleteThemeAliasResult& WithThemeId(const char* value) { SetThemeId(value); return *this;} private: Aws::String m_aliasName; Aws::String m_arn; Aws::String m_requestId; int m_status; Aws::String m_themeId; }; } // namespace Model } // namespace QuickSight } // namespace Aws