Interface NetworkConfiguration

interface NetworkConfiguration {
    assignPublicIp?: any;
    securityGroups?: any;
    subnets: Input<Input<string>[]>;
}

Properties

assignPublicIp?: any

Assign a public IP address to the ENI (Fargate launch type only). Valid values are true or false. Default false.

securityGroups?: any

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: Input<Input<string>[]>

The subnets associated with the task or service.

Generated using TypeDoc