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

The new IPv6 addresses assigned to the network interface. Existing IPv6 * addresses that were assigned to the network interface before the request are not * included.

*/ inline const Aws::Vector& GetAssignedIpv6Addresses() const{ return m_assignedIpv6Addresses; } /** *

The new IPv6 addresses assigned to the network interface. Existing IPv6 * addresses that were assigned to the network interface before the request are not * included.

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

The new IPv6 addresses assigned to the network interface. Existing IPv6 * addresses that were assigned to the network interface before the request are not * included.

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

The new IPv6 addresses assigned to the network interface. Existing IPv6 * addresses that were assigned to the network interface before the request are not * included.

*/ inline AssignIpv6AddressesResponse& WithAssignedIpv6Addresses(const Aws::Vector& value) { SetAssignedIpv6Addresses(value); return *this;} /** *

The new IPv6 addresses assigned to the network interface. Existing IPv6 * addresses that were assigned to the network interface before the request are not * included.

*/ inline AssignIpv6AddressesResponse& WithAssignedIpv6Addresses(Aws::Vector&& value) { SetAssignedIpv6Addresses(std::move(value)); return *this;} /** *

The new IPv6 addresses assigned to the network interface. Existing IPv6 * addresses that were assigned to the network interface before the request are not * included.

*/ inline AssignIpv6AddressesResponse& AddAssignedIpv6Addresses(const Aws::String& value) { m_assignedIpv6Addresses.push_back(value); return *this; } /** *

The new IPv6 addresses assigned to the network interface. Existing IPv6 * addresses that were assigned to the network interface before the request are not * included.

*/ inline AssignIpv6AddressesResponse& AddAssignedIpv6Addresses(Aws::String&& value) { m_assignedIpv6Addresses.push_back(std::move(value)); return *this; } /** *

The new IPv6 addresses assigned to the network interface. Existing IPv6 * addresses that were assigned to the network interface before the request are not * included.

*/ inline AssignIpv6AddressesResponse& AddAssignedIpv6Addresses(const char* value) { m_assignedIpv6Addresses.push_back(value); return *this; } /** *

The IPv6 prefixes that are assigned to the network interface.

*/ inline const Aws::Vector& GetAssignedIpv6Prefixes() const{ return m_assignedIpv6Prefixes; } /** *

The IPv6 prefixes that are assigned to the network interface.

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

The IPv6 prefixes that are assigned to the network interface.

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

The IPv6 prefixes that are assigned to the network interface.

*/ inline AssignIpv6AddressesResponse& WithAssignedIpv6Prefixes(const Aws::Vector& value) { SetAssignedIpv6Prefixes(value); return *this;} /** *

The IPv6 prefixes that are assigned to the network interface.

*/ inline AssignIpv6AddressesResponse& WithAssignedIpv6Prefixes(Aws::Vector&& value) { SetAssignedIpv6Prefixes(std::move(value)); return *this;} /** *

The IPv6 prefixes that are assigned to the network interface.

*/ inline AssignIpv6AddressesResponse& AddAssignedIpv6Prefixes(const Aws::String& value) { m_assignedIpv6Prefixes.push_back(value); return *this; } /** *

The IPv6 prefixes that are assigned to the network interface.

*/ inline AssignIpv6AddressesResponse& AddAssignedIpv6Prefixes(Aws::String&& value) { m_assignedIpv6Prefixes.push_back(std::move(value)); return *this; } /** *

The IPv6 prefixes that are assigned to the network interface.

*/ inline AssignIpv6AddressesResponse& AddAssignedIpv6Prefixes(const char* value) { m_assignedIpv6Prefixes.push_back(value); return *this; } /** *

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 AssignIpv6AddressesResponse& WithNetworkInterfaceId(const Aws::String& value) { SetNetworkInterfaceId(value); return *this;} /** *

The ID of the network interface.

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

The ID of the network interface.

*/ inline AssignIpv6AddressesResponse& WithNetworkInterfaceId(const char* value) { SetNetworkInterfaceId(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 AssignIpv6AddressesResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline AssignIpv6AddressesResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Vector m_assignedIpv6Addresses; Aws::Vector m_assignedIpv6Prefixes; Aws::String m_networkInterfaceId; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws