NetworkInterfaceSecurityGroupAttachmentArgs constructor

const NetworkInterfaceSecurityGroupAttachmentArgs({
  1. required Input<String> networkInterfaceId,
  2. Input<String?>? region,
  3. required Input<String> securityGroupId,
})

Creates a new NetworkInterfaceSecurityGroupAttachmentArgs. networkInterfaceId The ID of the network interface to attach to. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. securityGroupId The ID of the security group.

Implementation

const NetworkInterfaceSecurityGroupAttachmentArgs({
  required this.networkInterfaceId,
  this.region,
  required this.securityGroupId,
});