/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #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 AssignPrivateIpAddressesResponse { public: AWS_EC2_API AssignPrivateIpAddressesResponse(); AWS_EC2_API AssignPrivateIpAddressesResponse(const Aws::AmazonWebServiceResult& result); AWS_EC2_API AssignPrivateIpAddressesResponse& 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 AssignPrivateIpAddressesResponse& WithNetworkInterfaceId(const Aws::String& value) { SetNetworkInterfaceId(value); return *this;} /** *

The ID of the network interface.

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

The ID of the network interface.

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

The private IP addresses assigned to the network interface.

*/ inline const Aws::Vector& GetAssignedPrivateIpAddresses() const{ return m_assignedPrivateIpAddresses; } /** *

The private IP addresses assigned to the network interface.

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

The private IP addresses assigned to the network interface.

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

The private IP addresses assigned to the network interface.

*/ inline AssignPrivateIpAddressesResponse& WithAssignedPrivateIpAddresses(const Aws::Vector& value) { SetAssignedPrivateIpAddresses(value); return *this;} /** *

The private IP addresses assigned to the network interface.

*/ inline AssignPrivateIpAddressesResponse& WithAssignedPrivateIpAddresses(Aws::Vector&& value) { SetAssignedPrivateIpAddresses(std::move(value)); return *this;} /** *

The private IP addresses assigned to the network interface.

*/ inline AssignPrivateIpAddressesResponse& AddAssignedPrivateIpAddresses(const AssignedPrivateIpAddress& value) { m_assignedPrivateIpAddresses.push_back(value); return *this; } /** *

The private IP addresses assigned to the network interface.

*/ inline AssignPrivateIpAddressesResponse& AddAssignedPrivateIpAddresses(AssignedPrivateIpAddress&& value) { m_assignedPrivateIpAddresses.push_back(std::move(value)); return *this; } /** *

The IPv4 prefixes that are assigned to the network interface.

*/ inline const Aws::Vector& GetAssignedIpv4Prefixes() const{ return m_assignedIpv4Prefixes; } /** *

The IPv4 prefixes that are assigned to the network interface.

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

The IPv4 prefixes that are assigned to the network interface.

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

The IPv4 prefixes that are assigned to the network interface.

*/ inline AssignPrivateIpAddressesResponse& WithAssignedIpv4Prefixes(const Aws::Vector& value) { SetAssignedIpv4Prefixes(value); return *this;} /** *

The IPv4 prefixes that are assigned to the network interface.

*/ inline AssignPrivateIpAddressesResponse& WithAssignedIpv4Prefixes(Aws::Vector&& value) { SetAssignedIpv4Prefixes(std::move(value)); return *this;} /** *

The IPv4 prefixes that are assigned to the network interface.

*/ inline AssignPrivateIpAddressesResponse& AddAssignedIpv4Prefixes(const Ipv4PrefixSpecification& value) { m_assignedIpv4Prefixes.push_back(value); return *this; } /** *

The IPv4 prefixes that are assigned to the network interface.

*/ inline AssignPrivateIpAddressesResponse& AddAssignedIpv4Prefixes(Ipv4PrefixSpecification&& value) { m_assignedIpv4Prefixes.push_back(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 AssignPrivateIpAddressesResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline AssignPrivateIpAddressesResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_networkInterfaceId; Aws::Vector m_assignedPrivateIpAddresses; Aws::Vector m_assignedIpv4Prefixes; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws