Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AssignIpv6AddressesRequest

import type { AssignIpv6AddressesRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface AssignIpv6AddressesRequest {
Ipv6AddressCount?: number | null;
Ipv6Addresses?: string[] | null;
Ipv6PrefixCount?: number | null;
Ipv6Prefixes?: string[] | null;
NetworkInterfaceId: string;
}

§Properties

§
Ipv6AddressCount?: number | null
[src]

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.

§
Ipv6Addresses?: string[] | null
[src]

One or more specific IPv6 addresses to be assigned to the network interface. You can't use this option if you're specifying a number of IPv6 addresses.

§
Ipv6PrefixCount?: number | null
[src]

The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface. You cannot use this option if you use the Ipv6Prefixes option.

§
Ipv6Prefixes?: string[] | null
[src]

One or more IPv6 prefixes assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.

§
NetworkInterfaceId: string
[src]

The ID of the network interface.