interface CfnPrivateGraphEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NeptuneGraph.Mixins.CfnPrivateGraphEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsneptunegraph/mixins#CfnPrivateGraphEndpointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.neptunegraph.mixins.CfnPrivateGraphEndpointMixinProps |
Python | aws_cdk.mixins_preview.aws_neptunegraph.mixins.CfnPrivateGraphEndpointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_neptunegraph » mixins » 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 { mixins as neptunegraph_mixins } from '@aws-cdk/mixins-preview/aws-neptunegraph';
const cfnPrivateGraphEndpointMixinProps: neptunegraph_mixins.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