Interface CfnPipePropsMixin.NetworkConfigurationProperty

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

@Stability(Stable) public static interface CfnPipePropsMixin.NetworkConfigurationProperty extends software.amazon.jsii.JsiiSerializable
This structure specifies the network configuration for an Amazon ECS task.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.pipes.mixins.*;
 NetworkConfigurationProperty networkConfigurationProperty = NetworkConfigurationProperty.builder()
         .awsvpcConfiguration(AwsVpcConfigurationProperty.builder()
                 .assignPublicIp("assignPublicIp")
                 .securityGroups(List.of("securityGroups"))
                 .subnets(List.of("subnets"))
                 .build())
         .build();
 

See Also: