unassign_private_ip_addresses
(**kwargs)¶Unassigns one or more secondary private IP addresses, or IPv4 Prefix Delegation prefixes from a network interface.
See also: AWS API Documentation
Request Syntax
response = client.unassign_private_ip_addresses(
NetworkInterfaceId='string',
PrivateIpAddresses=[
'string',
],
Ipv4Prefixes=[
'string',
]
)
[REQUIRED]
The ID of the network interface.
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.
The IPv4 prefixes to unassign from the network interface.
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': {
'...': '...',
},
}