/** * 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 UnassignIpv6AddressesResponse { public: AWS_EC2_API UnassignIpv6AddressesResponse(); AWS_EC2_API UnassignIpv6AddressesResponse(const Aws::AmazonWebServiceResult& result); AWS_EC2_API UnassignIpv6AddressesResponse& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the network interface.

*/ inline const Aws::String& GetNetworkInterfaceId() const{ return m_networkInterfaceId; } /** *

The ID of the network interface.

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

The ID of the network interface.

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

The ID of the network interface.

*/ inline void SetNetworkInterfaceId(const char* value) { m_networkInterfaceId.assign(value); } /** *

The ID of the network interface.

*/ inline UnassignIpv6AddressesResponse& WithNetworkInterfaceId(const Aws::String& value) { SetNetworkInterfaceId(value); return *this;} /** *

The ID of the network interface.

*/ inline UnassignIpv6AddressesResponse& WithNetworkInterfaceId(Aws::String&& value) { SetNetworkInterfaceId(std::move(value)); return *this;} /** *

The ID of the network interface.

*/ inline UnassignIpv6AddressesResponse& WithNetworkInterfaceId(const char* value) { SetNetworkInterfaceId(value); return *this;} /** *

The IPv6 addresses that have been unassigned from the network interface.

*/ inline const Aws::Vector& GetUnassignedIpv6Addresses() const{ return m_unassignedIpv6Addresses; } /** *

The IPv6 addresses that have been unassigned from the network interface.

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

The IPv6 addresses that have been unassigned from the network interface.

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

The IPv6 addresses that have been unassigned from the network interface.

*/ inline UnassignIpv6AddressesResponse& WithUnassignedIpv6Addresses(const Aws::Vector& value) { SetUnassignedIpv6Addresses(value); return *this;} /** *

The IPv6 addresses that have been unassigned from the network interface.

*/ inline UnassignIpv6AddressesResponse& WithUnassignedIpv6Addresses(Aws::Vector&& value) { SetUnassignedIpv6Addresses(std::move(value)); return *this;} /** *

The IPv6 addresses that have been unassigned from the network interface.

*/ inline UnassignIpv6AddressesResponse& AddUnassignedIpv6Addresses(const Aws::String& value) { m_unassignedIpv6Addresses.push_back(value); return *this; } /** *

The IPv6 addresses that have been unassigned from the network interface.

*/ inline UnassignIpv6AddressesResponse& AddUnassignedIpv6Addresses(Aws::String&& value) { m_unassignedIpv6Addresses.push_back(std::move(value)); return *this; } /** *

The IPv6 addresses that have been unassigned from the network interface.

*/ inline UnassignIpv6AddressesResponse& AddUnassignedIpv6Addresses(const char* value) { m_unassignedIpv6Addresses.push_back(value); return *this; } /** *

The IPv4 prefixes that have been unassigned from the network interface.

*/ inline const Aws::Vector& GetUnassignedIpv6Prefixes() const{ return m_unassignedIpv6Prefixes; } /** *

The IPv4 prefixes that have been unassigned from the network interface.

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

The IPv4 prefixes that have been unassigned from the network interface.

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

The IPv4 prefixes that have been unassigned from the network interface.

*/ inline UnassignIpv6AddressesResponse& WithUnassignedIpv6Prefixes(const Aws::Vector& value) { SetUnassignedIpv6Prefixes(value); return *this;} /** *

The IPv4 prefixes that have been unassigned from the network interface.

*/ inline UnassignIpv6AddressesResponse& WithUnassignedIpv6Prefixes(Aws::Vector&& value) { SetUnassignedIpv6Prefixes(std::move(value)); return *this;} /** *

The IPv4 prefixes that have been unassigned from the network interface.

*/ inline UnassignIpv6AddressesResponse& AddUnassignedIpv6Prefixes(const Aws::String& value) { m_unassignedIpv6Prefixes.push_back(value); return *this; } /** *

The IPv4 prefixes that have been unassigned from the network interface.

*/ inline UnassignIpv6AddressesResponse& AddUnassignedIpv6Prefixes(Aws::String&& value) { m_unassignedIpv6Prefixes.push_back(std::move(value)); return *this; } /** *

The IPv4 prefixes that have been unassigned from the network interface.

*/ inline UnassignIpv6AddressesResponse& AddUnassignedIpv6Prefixes(const char* value) { m_unassignedIpv6Prefixes.push_back(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 UnassignIpv6AddressesResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline UnassignIpv6AddressesResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_networkInterfaceId; Aws::Vector m_unassignedIpv6Addresses; Aws::Vector m_unassignedIpv6Prefixes; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws