interface CfnPrivateGraphEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NeptuneGraph.CfnPrivateGraphEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsneptunegraph#CfnPrivateGraphEndpointMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.neptunegraph.CfnPrivateGraphEndpointMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_neptunegraph.CfnPrivateGraphEndpointMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_neptunegraph » CfnPrivateGraphEndpointMixinProps |
Properties for CfnPrivateGraphEndpointPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_neptunegraph as neptunegraph } from '@aws-cdk/cfn-property-mixins';
const cfnPrivateGraphEndpointMixinProps: neptunegraph.CfnPrivateGraphEndpointMixinProps = {
graphIdentifier: 'graphIdentifier',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| graph | string | The unique identifier of the Neptune Analytics graph. |
| security | string[] | Security groups to be attached to the private graph endpoint.. |
| subnet | string[] | Subnets in which private graph endpoint ENIs are created. |
| vpc | string | The VPC in which the private graph endpoint needs to be created. |
graphIdentifier?
Type:
string
(optional)
The unique identifier of the Neptune Analytics graph.
securityGroupIds?
Type:
string[]
(optional)
Security groups to be attached to the private graph endpoint..
subnetIds?
Type:
string[]
(optional)
Subnets in which private graph endpoint ENIs are created.
vpcId?
Type:
string
(optional)
The VPC in which the private graph endpoint needs to be created.

.NET
Go
Java
Python
TypeScript