/** * 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 SESV2 { namespace Model { /** *

The following element is returned by the service.

See Also:

* AWS * API Reference

*/ class AWS_SESV2_API SendCustomVerificationEmailResult { public: SendCustomVerificationEmailResult(); SendCustomVerificationEmailResult(const Aws::AmazonWebServiceResult& result); SendCustomVerificationEmailResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique message identifier returned from the * SendCustomVerificationEmail operation.

*/ inline const Aws::String& GetMessageId() const{ return m_messageId; } /** *

The unique message identifier returned from the * SendCustomVerificationEmail operation.

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

The unique message identifier returned from the * SendCustomVerificationEmail operation.

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

The unique message identifier returned from the * SendCustomVerificationEmail operation.

*/ inline void SetMessageId(const char* value) { m_messageId.assign(value); } /** *

The unique message identifier returned from the * SendCustomVerificationEmail operation.

*/ inline SendCustomVerificationEmailResult& WithMessageId(const Aws::String& value) { SetMessageId(value); return *this;} /** *

The unique message identifier returned from the * SendCustomVerificationEmail operation.

*/ inline SendCustomVerificationEmailResult& WithMessageId(Aws::String&& value) { SetMessageId(std::move(value)); return *this;} /** *

The unique message identifier returned from the * SendCustomVerificationEmail operation.

*/ inline SendCustomVerificationEmailResult& WithMessageId(const char* value) { SetMessageId(value); return *this;} private: Aws::String m_messageId; }; } // namespace Model } // namespace SESV2 } // namespace Aws