Assigns the specified IPv6 addresses to the specified network interface
Source:R/ec2_operations.R
ec2_assign_ipv_6_addresses.RdAssigns the specified IPv6 addresses to the specified network interface. You can specify specific IPv6 addresses, or you can specify the number of IPv6 addresses to be automatically assigned from the subnet's IPv6 CIDR block range. You can assign as many IPv6 addresses to a network interface as you can assign private IPv4 addresses, and the limit varies by instance type.
See https://www.paws-r-sdk.com/docs/ec2_assign_ipv_6_addresses/ for full documentation.
Usage
ec2_assign_ipv_6_addresses(
Ipv6PrefixCount = NULL,
Ipv6Prefixes = NULL,
NetworkInterfaceId,
Ipv6Addresses = NULL,
Ipv6AddressCount = NULL
)Arguments
- Ipv6PrefixCount
The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface. You cannot use this option if you use the
Ipv6Prefixesoption.- Ipv6Prefixes
One or more IPv6 prefixes assigned to the network interface. You can't use this option if you use the
Ipv6PrefixCountoption.- NetworkInterfaceId
[required] The ID of the network interface.
- Ipv6Addresses
The IPv6 addresses to be assigned to the network interface. You can't use this option if you're specifying a number of IPv6 addresses.
- Ipv6AddressCount
The number of additional IPv6 addresses to assign to the network interface. The specified number of IPv6 addresses are assigned in addition to the existing IPv6 addresses that are already assigned to the network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can't use this option if specifying specific IPv6 addresses.