/** * 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 Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { class DeleteIpamResponse { public: AWS_EC2_API DeleteIpamResponse(); AWS_EC2_API DeleteIpamResponse(const Aws::AmazonWebServiceResult& result); AWS_EC2_API DeleteIpamResponse& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the results of the deletion.

*/ inline const Ipam& GetIpam() const{ return m_ipam; } /** *

Information about the results of the deletion.

*/ inline void SetIpam(const Ipam& value) { m_ipam = value; } /** *

Information about the results of the deletion.

*/ inline void SetIpam(Ipam&& value) { m_ipam = std::move(value); } /** *

Information about the results of the deletion.

*/ inline DeleteIpamResponse& WithIpam(const Ipam& value) { SetIpam(value); return *this;} /** *

Information about the results of the deletion.

*/ inline DeleteIpamResponse& WithIpam(Ipam&& value) { SetIpam(std::move(value)); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline DeleteIpamResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline DeleteIpamResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Ipam m_ipam; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws