Service Aws Vpc Configuration
data class ServiceAwsVpcConfiguration(val assignPublicIp: ServiceAwsVpcConfigurationAssignPublicIp? = null, val securityGroups: List<String>? = null, val subnets: List<String>? = null)
An object representing the networking details for a task or service. For example `awsVpcConfiguration={subnets=["subnet-12344321"],securityGroups=["sg-12344321"]}`
.
Constructors
Link copied to clipboard
constructor(assignPublicIp: ServiceAwsVpcConfigurationAssignPublicIp? = null, securityGroups: List<String>? = null, subnets: List<String>? = null)
Properties
Link copied to clipboard
Whether the task's elastic network interface receives a public IP address. The default value is `DISABLED`
.
Link copied to clipboard
The IDs of the security groups associated with the task or service. If you don't specify a security group, the default security group for the VPC is used. There's a limit of 5 security groups that can be specified per `awsvpcConfiguration`
. All specified security groups must be from the same VPC.