Interface CfnPipe.SelfManagedKafkaAccessConfigurationVpcProperty

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

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

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.*;
 SelfManagedKafkaAccessConfigurationVpcProperty selfManagedKafkaAccessConfigurationVpcProperty = SelfManagedKafkaAccessConfigurationVpcProperty.builder()
         .securityGroup(List.of("securityGroup"))
         .subnets(List.of("subnets"))
         .build();
 

See Also: