EventTargetEcsTargetNetworkConfiguration constructor

const EventTargetEcsTargetNetworkConfiguration({
  1. Input<bool?>? assignPublicIp,
  2. Input<List<String>?>? securityGroups,
  3. required Input<List<String>> subnets,
})

Creates a new EventTargetEcsTargetNetworkConfiguration. assignPublicIp Assign a public IP address to the ENI (Fargate launch type only). Valid values are true or false. Defaults to false. securityGroups The security groups associated with the task or service. If you do not specify a security group, the default security group for the VPC is used. subnets The subnets associated with the task or service.

Implementation

const EventTargetEcsTargetNetworkConfiguration({
  this.assignPublicIp,
  this.securityGroups,
  required this.subnets,
});