NetworkInterfaceAttachment constructor

const NetworkInterfaceAttachment({
  1. Input<String?>? attachmentId,
  2. required Input<int> deviceIndex,
  3. required Input<String> instance,
  4. Input<int?>? networkCardIndex,
})

Creates a new NetworkInterfaceAttachment. attachmentId Optional. deviceIndex Integer to define the devices index. instance ID of the instance to attach to. networkCardIndex Index of the network card. Specify a value greater than 0 when using multiple network cards, which are supported by some instance types. The default is 0.

Implementation

const NetworkInterfaceAttachment({
  this.attachmentId,
  required this.deviceIndex,
  required this.instance,
  this.networkCardIndex,
});