NetworkInterface constructor

NetworkInterface({
  1. List<String>? ipv6Addresses,
  2. String? networkInterfaceId,
  3. String? privateDnsName,
  4. String? privateIpAddress,
  5. List<PrivateIpAddressDetails>? privateIpAddresses,
  6. String? publicDnsName,
  7. String? publicIp,
  8. List<SecurityGroup>? securityGroups,
  9. String? subnetId,
  10. String? vpcId,
})

Implementation

NetworkInterface({
  this.ipv6Addresses,
  this.networkInterfaceId,
  this.privateDnsName,
  this.privateIpAddress,
  this.privateIpAddresses,
  this.publicDnsName,
  this.publicIp,
  this.securityGroups,
  this.subnetId,
  this.vpcId,
});