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

AssignPrivateIpAddressesRequest

import type { AssignPrivateIpAddressesRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";

Contains the parameters for AssignPrivateIpAddresses.

interface AssignPrivateIpAddressesRequest {
AllowReassignment?: boolean | null;
Ipv4PrefixCount?: number | null;
Ipv4Prefixes?: string[] | null;
NetworkInterfaceId: string;
PrivateIpAddresses?: string[] | null;
SecondaryPrivateIpAddressCount?: number | null;
}

§Properties

§
AllowReassignment?: boolean | null
[src]

Indicates whether to allow an IP address that is already assigned to another network interface or instance to be reassigned to the specified network interface.

§
Ipv4PrefixCount?: number | null
[src]

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

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

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

§
NetworkInterfaceId: string
[src]

The ID of the network interface.

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

One or more IP addresses to be assigned as a secondary private IP address to the network interface. You can't specify this parameter when also specifying a number of secondary IP addresses.

If you don't specify an IP address, Amazon EC2 automatically selects an IP address within the subnet range.

§
SecondaryPrivateIpAddressCount?: number | null
[src]

The number of secondary IP addresses to assign to the network interface. You can't specify this parameter when also specifying private IP addresses.