Interface CfnConnector.VpcProperty

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

@Stability(Stable) public static interface CfnConnector.VpcProperty extends software.amazon.jsii.JsiiSerializable
Information about the VPC in which the connector resides.

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.kafkaconnect.*;
 VpcProperty vpcProperty = VpcProperty.builder()
         .securityGroups(List.of("securityGroups"))
         .subnets(List.of("subnets"))
         .build();
 

See Also: