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

AttachNetworkInterfaceRequest

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

Contains the parameters for AttachNetworkInterface.

interface AttachNetworkInterfaceRequest {
DeviceIndex: number;
DryRun?: boolean | null;
InstanceId: string;
NetworkCardIndex?: number | null;
NetworkInterfaceId: string;
}

§Properties

§
DeviceIndex: number
[src]

The index of the device for the network interface attachment.

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§
InstanceId: string
[src]

The ID of the instance.

§
NetworkCardIndex?: number | null
[src]

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

§
NetworkInterfaceId: string
[src]

The ID of the network interface.