Interface CfnConnector.VpcInformationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.VpcInformationProperty.Jsii$Proxy
- Enclosing class:
CfnConnector
@Stability(Stable)
public static interface CfnConnector.VpcInformationProperty
extends software.amazon.jsii.JsiiSerializable
Information about your VPC and security groups used with the connector.
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.pcaconnectorad.*;
VpcInformationProperty vpcInformationProperty = VpcInformationProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
// the properties below are optional
.ipAddressType("ipAddressType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.VpcInformationPropertystatic final classAn implementation forCfnConnector.VpcInformationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The security groups used with the connector.You can use a maximum of 4 security groups with a connector.
- See Also:
-
getIpAddressType
The VPC IP address type.- See Also:
-
builder
-