InstancePrimaryNetworkInterface constructor

const InstancePrimaryNetworkInterface({
  1. Input<bool?>? deleteOnTermination,
  2. required Input<String> networkInterfaceId,
})

Creates a new InstancePrimaryNetworkInterface. deleteOnTermination Whether the network interface will be deleted when the instance terminates. networkInterfaceId ID of the network interface to attach.

Implementation

const InstancePrimaryNetworkInterface({
  this.deleteOnTermination,
  required this.networkInterfaceId,
});