/** *

An object representing the networking details for a task or service.

*/ export interface _AwsVpcConfiguration { /** *

The subnets associated with the task or service. There is a limit of 16 subnets that can be specified per AwsVpcConfiguration.

All specified subnets must be from the same VPC.

*/ subnets: Array | Iterable; /** *

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. There is a limit of 5 security groups that can be specified per AwsVpcConfiguration.

All specified security groups must be from the same VPC.

*/ securityGroups?: Array | Iterable; /** *

Whether the task's elastic network interface receives a public IP address. The default value is DISABLED.

*/ assignPublicIp?: "ENABLED" | "DISABLED" | string; } export interface _UnmarshalledAwsVpcConfiguration extends _AwsVpcConfiguration { /** *

The subnets associated with the task or service. There is a limit of 16 subnets that can be specified per AwsVpcConfiguration.

All specified subnets must be from the same VPC.

*/ subnets: Array; /** *

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. There is a limit of 5 security groups that can be specified per AwsVpcConfiguration.

All specified security groups must be from the same VPC.

*/ securityGroups?: Array; }