/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include 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
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