using System; using System.Collections.Generic; using System.Text; namespace Amazon.Lambda.CloudWatchEvents.BatchEvents { /// /// https://docs.aws.amazon.com/batch/latest/userguide/batch_cwe_events.html /// https://docs.aws.amazon.com/batch/latest/APIReference/API_JobDetail.html /// https://docs.aws.amazon.com/batch/latest/APIReference/API_DescribeJobs.html /// public class NetworkInterfaceDetail { /// /// 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; } } }