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

HostEntry

import type { HostEntry } from "https://aws-api.deno.dev/v0.4/services/ecs.ts?docs=full";

Hostnames and IP address entries that are added to the /etc/hosts file of a container via the extraHosts parameter of its "ContainerDefinition".

interface HostEntry {
hostname: string;
ipAddress: string;
}

§Properties

§
hostname: string
[src]

The hostname to use in the /etc/hosts entry.

§
ipAddress: string
[src]

The IP address to use in the /etc/hosts entry.