/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { class ProvisionPublicIpv4PoolCidrResponse { public: AWS_EC2_API ProvisionPublicIpv4PoolCidrResponse(); AWS_EC2_API ProvisionPublicIpv4PoolCidrResponse(const Aws::AmazonWebServiceResult& result); AWS_EC2_API ProvisionPublicIpv4PoolCidrResponse& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the pool that you want to provision the CIDR to.

*/ inline const Aws::String& GetPoolId() const{ return m_poolId; } /** *

The ID of the pool that you want to provision the CIDR to.

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

The ID of the pool that you want to provision the CIDR to.

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

The ID of the pool that you want to provision the CIDR to.

*/ inline void SetPoolId(const char* value) { m_poolId.assign(value); } /** *

The ID of the pool that you want to provision the CIDR to.

*/ inline ProvisionPublicIpv4PoolCidrResponse& WithPoolId(const Aws::String& value) { SetPoolId(value); return *this;} /** *

The ID of the pool that you want to provision the CIDR to.

*/ inline ProvisionPublicIpv4PoolCidrResponse& WithPoolId(Aws::String&& value) { SetPoolId(std::move(value)); return *this;} /** *

The ID of the pool that you want to provision the CIDR to.

*/ inline ProvisionPublicIpv4PoolCidrResponse& WithPoolId(const char* value) { SetPoolId(value); return *this;} /** *

Information about the address range of the public IPv4 pool.

*/ inline const PublicIpv4PoolRange& GetPoolAddressRange() const{ return m_poolAddressRange; } /** *

Information about the address range of the public IPv4 pool.

*/ inline void SetPoolAddressRange(const PublicIpv4PoolRange& value) { m_poolAddressRange = value; } /** *

Information about the address range of the public IPv4 pool.

*/ inline void SetPoolAddressRange(PublicIpv4PoolRange&& value) { m_poolAddressRange = std::move(value); } /** *

Information about the address range of the public IPv4 pool.

*/ inline ProvisionPublicIpv4PoolCidrResponse& WithPoolAddressRange(const PublicIpv4PoolRange& value) { SetPoolAddressRange(value); return *this;} /** *

Information about the address range of the public IPv4 pool.

*/ inline ProvisionPublicIpv4PoolCidrResponse& WithPoolAddressRange(PublicIpv4PoolRange&& value) { SetPoolAddressRange(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 ProvisionPublicIpv4PoolCidrResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ProvisionPublicIpv4PoolCidrResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_poolId; PublicIpv4PoolRange m_poolAddressRange; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws