paws.compute (version 0.1.0)

ec2_unassign_private_ip_addresses: Unassigns one or more secondary private IP addresses from a network interface

Description

Unassigns one or more secondary private IP addresses from a network interface.

Usage

ec2_unassign_private_ip_addresses(NetworkInterfaceId,
  PrivateIpAddresses)

Arguments

NetworkInterfaceId

[required] The ID of the network interface.

PrivateIpAddresses

[required] 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.

Request syntax

svc$unassign_private_ip_addresses(
  NetworkInterfaceId = "string",
  PrivateIpAddresses = list(
    "string"
  )
)

Examples

Run this code
# NOT RUN {
# This example unassigns the specified private IP address from the
# specified network interface.
# }
# NOT RUN {
svc$unassign_private_ip_addresses(
  NetworkInterfaceId = "eni-e5aa89a3",
  PrivateIpAddresses = list(
    "10.0.0.82"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab