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

Information about the theme alias.

*/ inline const ThemeAlias& GetThemeAlias() const{ return m_themeAlias; } /** *

Information about the theme alias.

*/ inline void SetThemeAlias(const ThemeAlias& value) { m_themeAlias = value; } /** *

Information about the theme alias.

*/ inline void SetThemeAlias(ThemeAlias&& value) { m_themeAlias = std::move(value); } /** *

Information about the theme alias.

*/ inline UpdateThemeAliasResult& WithThemeAlias(const ThemeAlias& value) { SetThemeAlias(value); return *this;} /** *

Information about the theme alias.

*/ inline UpdateThemeAliasResult& WithThemeAlias(ThemeAlias&& value) { SetThemeAlias(std::move(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 UpdateThemeAliasResult& WithStatus(int value) { SetStatus(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 UpdateThemeAliasResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateThemeAliasResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateThemeAliasResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ThemeAlias m_themeAlias; int m_status; Aws::String m_requestId; }; } // namespace Model } // namespace QuickSight } // namespace Aws