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

A successful operation message.

*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *

A successful operation message.

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

A successful operation message.

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

A successful operation message.

*/ inline void SetMessage(const char* value) { m_message.assign(value); } /** *

A successful operation message.

*/ inline DeleteMatchingWorkflowResult& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *

A successful operation message.

*/ inline DeleteMatchingWorkflowResult& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *

A successful operation message.

*/ inline DeleteMatchingWorkflowResult& WithMessage(const char* value) { SetMessage(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 DeleteMatchingWorkflowResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteMatchingWorkflowResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteMatchingWorkflowResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_message; Aws::String m_requestId; }; } // namespace Model } // namespace EntityResolution } // namespace Aws