Interface CfnPrivateGraphEndpointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrivateGraphEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.93.0 (build 1706ca5)",
date="2024-01-03T18:29:29.313Z")
@Stability(Stable)
public interface CfnPrivateGraphEndpointProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPrivateGraphEndpoint.
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.neptunegraph.*;
CfnPrivateGraphEndpointProps cfnPrivateGraphEndpointProps = CfnPrivateGraphEndpointProps.builder()
.graphIdentifier("graphIdentifier")
.vpcId("vpcId")
// the properties below are optional
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPrivateGraphEndpointPropsstatic final classAn implementation forCfnPrivateGraphEndpointProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The auto-generated Graph Id assigned by the service.The security group Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.The subnet Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.getVpcId()The VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGraphIdentifier
The auto-generated Graph Id assigned by the service.- See Also:
-
getVpcId
The VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.- See Also:
-
getSecurityGroupIds
The security group Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.- See Also:
-
getSubnetIds
The subnet Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.- See Also:
-
builder
-