/** *

An object representing the elastic network interface for tasks that use the awsvpc network mode.

*/ export interface _NetworkInterface { /** *

The attachment ID for the network interface.

*/ attachmentId?: string; /** *

The private IPv4 address for the network interface.

*/ privateIpv4Address?: string; /** *

The private IPv6 address for the network interface.

*/ ipv6Address?: string; } export declare type _UnmarshalledNetworkInterface = _NetworkInterface;