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

Represents the response from the server for the request to update user * attributes.

See Also:

AWS * API Reference

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

The code delivery details list from the server for the request to update user * attributes.

*/ inline const Aws::Vector& GetCodeDeliveryDetailsList() const{ return m_codeDeliveryDetailsList; } /** *

The code delivery details list from the server for the request to update user * attributes.

*/ inline void SetCodeDeliveryDetailsList(const Aws::Vector& value) { m_codeDeliveryDetailsList = value; } /** *

The code delivery details list from the server for the request to update user * attributes.

*/ inline void SetCodeDeliveryDetailsList(Aws::Vector&& value) { m_codeDeliveryDetailsList = std::move(value); } /** *

The code delivery details list from the server for the request to update user * attributes.

*/ inline UpdateUserAttributesResult& WithCodeDeliveryDetailsList(const Aws::Vector& value) { SetCodeDeliveryDetailsList(value); return *this;} /** *

The code delivery details list from the server for the request to update user * attributes.

*/ inline UpdateUserAttributesResult& WithCodeDeliveryDetailsList(Aws::Vector&& value) { SetCodeDeliveryDetailsList(std::move(value)); return *this;} /** *

The code delivery details list from the server for the request to update user * attributes.

*/ inline UpdateUserAttributesResult& AddCodeDeliveryDetailsList(const CodeDeliveryDetailsType& value) { m_codeDeliveryDetailsList.push_back(value); return *this; } /** *

The code delivery details list from the server for the request to update user * attributes.

*/ inline UpdateUserAttributesResult& AddCodeDeliveryDetailsList(CodeDeliveryDetailsType&& value) { m_codeDeliveryDetailsList.push_back(std::move(value)); return *this; } private: Aws::Vector m_codeDeliveryDetailsList; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws