/** * 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 AmplifyUIBuilder { namespace Model { class CreateThemeResult { public: AWS_AMPLIFYUIBUILDER_API CreateThemeResult(); AWS_AMPLIFYUIBUILDER_API CreateThemeResult(const Aws::AmazonWebServiceResult& result); AWS_AMPLIFYUIBUILDER_API CreateThemeResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Describes the configuration of the new theme.

*/ inline const Theme& GetEntity() const{ return m_entity; } /** *

Describes the configuration of the new theme.

*/ inline void SetEntity(const Theme& value) { m_entity = value; } /** *

Describes the configuration of the new theme.

*/ inline void SetEntity(Theme&& value) { m_entity = std::move(value); } /** *

Describes the configuration of the new theme.

*/ inline CreateThemeResult& WithEntity(const Theme& value) { SetEntity(value); return *this;} /** *

Describes the configuration of the new theme.

*/ inline CreateThemeResult& WithEntity(Theme&& value) { SetEntity(std::move(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 CreateThemeResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateThemeResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateThemeResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Theme m_entity; Aws::String m_requestId; }; } // namespace Model } // namespace AmplifyUIBuilder } // namespace Aws