namespace Amazon.Lambda.CloudWatchEvents.ECSEvents
{
///
/// An object representing the elastic network interface for tasks that use the awsvpc network mode.
/// https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_NetworkInterface.html
///
public class NetworkInterface
{
///
/// The attachment ID for the network interface.
///
public string AttachmentId { get; set; }
///
/// The private IPv6 address for the network interface.
///
public string Ipv6Address { get; set; }
///
/// The private IPv4 address for the network interface.
///
public string PrivateIpv4Address { get; set; }
}
}