interface AwsVpcConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ECS.CfnTaskSet.AwsVpcConfigurationProperty |
Java | software.amazon.awscdk.services.ecs.CfnTaskSet.AwsVpcConfigurationProperty |
Python | aws_cdk.aws_ecs.CfnTaskSet.AwsVpcConfigurationProperty |
TypeScript | @aws-cdk/aws-ecs » CfnTaskSet » AwsVpcConfigurationProperty |
An object representing the networking details for a task or service.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ecs from '@aws-cdk/aws-ecs';
const awsVpcConfigurationProperty: ecs.CfnTaskSet.AwsVpcConfigurationProperty = {
subnets: ['subnets'],
// the properties below are optional
assignPublicIp: 'assignPublicIp',
securityGroups: ['securityGroups'],
};
Properties
Name | Type | Description |
---|---|---|
subnets | string[] | The IDs of the subnets associated with the task or service. |
assign | string | Whether the task's elastic network interface receives a public IP address. |
security | string[] | The IDs of the security groups associated with the task or service. |
subnets
Type:
string[]
The IDs of the subnets associated with the task or service.
There's a limit of 16 subnets that can be specified per AwsVpcConfiguration
.
All specified subnets must be from the same VPC.
assignPublicIp?
Type:
string
(optional)
Whether the task's elastic network interface receives a public IP address.
The default value is DISABLED
.
securityGroups?
Type:
string[]
(optional)
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.