:doc:`EC2 <../../ec2>` / Client / unassign_private_ip_addresses

*****************************
unassign_private_ip_addresses
*****************************



.. py:method:: EC2.Client.unassign_private_ip_addresses(**kwargs)

  

  Unassigns the specified secondary private IP addresses or IPv4 Prefix Delegation prefixes from a network interface.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignPrivateIpAddresses>`_  


  **Request Syntax**
  ::

    response = client.unassign_private_ip_addresses(
        Ipv4Prefixes=[
            'string',
        ],
        NetworkInterfaceId='string',
        PrivateIpAddresses=[
            'string',
        ]
    )
    
  :type Ipv4Prefixes: list
  :param Ipv4Prefixes: 

    The IPv4 prefixes to unassign from the network interface.

    

  
    - *(string) --* 

    

  :type NetworkInterfaceId: string
  :param NetworkInterfaceId: **[REQUIRED]** 

    The ID of the network interface.

    

  
  :type PrivateIpAddresses: list
  :param PrivateIpAddresses: 

    The secondary private IP addresses to unassign from the network interface. You can specify this option multiple times to unassign more than one IP address.

    

  
    - *(string) --* 

    

  
  :returns: None

  **Examples**

  This example unassigns the specified private IP address from the specified network interface.
  ::

    response = client.unassign_private_ip_addresses(
        NetworkInterfaceId='eni-e5aa89a3',
        PrivateIpAddresses=[
            '10.0.0.82',
        ],
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'ResponseMetadata': {
            '...': '...',
        },
    }

  