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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.VpcPropertystatic final classAn implementation forCfnConnector.VpcProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The security group IDs for the connector.The subnets for the connector.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroups
The security group IDs for the connector.- See Also:
-
getSubnets
The subnets for the connector.- See Also:
-
builder
- Returns:
- a
CfnConnector.VpcProperty.BuilderofCfnConnector.VpcProperty
-