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

The response from the server when the Amazon Cognito Your User Pools service * makes the request to resend a confirmation code.

See Also:

AWS * API Reference

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

The code delivery details returned by the server in response to the request * to resend the confirmation code.

*/ inline const CodeDeliveryDetailsType& GetCodeDeliveryDetails() const{ return m_codeDeliveryDetails; } /** *

The code delivery details returned by the server in response to the request * to resend the confirmation code.

*/ inline void SetCodeDeliveryDetails(const CodeDeliveryDetailsType& value) { m_codeDeliveryDetails = value; } /** *

The code delivery details returned by the server in response to the request * to resend the confirmation code.

*/ inline void SetCodeDeliveryDetails(CodeDeliveryDetailsType&& value) { m_codeDeliveryDetails = std::move(value); } /** *

The code delivery details returned by the server in response to the request * to resend the confirmation code.

*/ inline ResendConfirmationCodeResult& WithCodeDeliveryDetails(const CodeDeliveryDetailsType& value) { SetCodeDeliveryDetails(value); return *this;} /** *

The code delivery details returned by the server in response to the request * to resend the confirmation code.

*/ inline ResendConfirmationCodeResult& WithCodeDeliveryDetails(CodeDeliveryDetailsType&& value) { SetCodeDeliveryDetails(std::move(value)); return *this;} private: CodeDeliveryDetailsType m_codeDeliveryDetails; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws