/** *

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

*/ export interface _HostEntry { /** *

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

*/ hostname: string; /** *

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

*/ ipAddress: string; } export declare type _UnmarshalledHostEntry = _HostEntry;