CfnPrivateGraphEndpointMixinProps
- class aws_cdk.mixins_preview.aws_neptunegraph.mixins.CfnPrivateGraphEndpointMixinProps(*, graph_identifier=None, security_group_ids=None, subnet_ids=None, vpc_id=None)
Bases:
objectProperties for CfnPrivateGraphEndpointPropsMixin.
- Parameters:
graph_identifier (
Optional[str]) – The unique identifier of the Neptune Analytics graph.security_group_ids (
Optional[Sequence[str]]) – Security groups to be attached to the private graph endpoint..subnet_ids (
Optional[Sequence[str]]) – Subnets in which private graph endpoint ENIs are created.vpc_id (
Optional[str]) – The VPC in which the private graph endpoint needs to be created.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_neptunegraph import mixins as neptunegraph_mixins cfn_private_graph_endpoint_mixin_props = neptunegraph_mixins.CfnPrivateGraphEndpointMixinProps( graph_identifier="graphIdentifier", security_group_ids=["securityGroupIds"], subnet_ids=["subnetIds"], vpc_id="vpcId" )
Attributes
- graph_identifier
The unique identifier of the Neptune Analytics graph.
- security_group_ids
Security groups to be attached to the private graph endpoint..
- subnet_ids
Subnets in which private graph endpoint ENIs are created.
- vpc_id
The VPC in which the private graph endpoint needs to be created.