Interface CfnPipe.AwsVpcConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipe.AwsVpcConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnPipe

@Stability(Stable) public static interface CfnPipe.AwsVpcConfigurationProperty extends software.amazon.jsii.JsiiSerializable
This structure specifies the VPC subnets and security groups for the task, and whether a public IP address is to be used.

This structure is relevant only for ECS tasks that use the awsvpc network mode.

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.pipes.*;
 AwsVpcConfigurationProperty awsVpcConfigurationProperty = AwsVpcConfigurationProperty.builder()
         .subnets(List.of("subnets"))
         // the properties below are optional
         .assignPublicIp("assignPublicIp")
         .securityGroups(List.of("securityGroups"))
         .build();
 

See Also: