Interface CfnTaskSet.AwsVpcConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTaskSet.AwsVpcConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTaskSet
@Stability(Stable)
public static interface CfnTaskSet.AwsVpcConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ecs.*; AwsVpcConfigurationProperty awsVpcConfigurationProperty = AwsVpcConfigurationProperty.builder() .subnets(List.of("subnets")) // the properties below are optional .assignPublicIp("assignPublicIp") .securityGroups(List.of("securityGroups")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTaskSet.AwsVpcConfigurationProperty
static final class
An implementation forCfnTaskSet.AwsVpcConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSubnets
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.
-
getAssignPublicIp
Whether the task's elastic network interface receives a public IP address.The default value is
DISABLED
. -
getSecurityGroups
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.
-
builder
-