CfnPrivateGraphEndpointProps

class aws_cdk.aws_neptunegraph.CfnPrivateGraphEndpointProps(*, graph_identifier, vpc_id, security_group_ids=None, subnet_ids=None)

Bases: object

Properties for defining a CfnPrivateGraphEndpoint.

Parameters:
  • graph_identifier (str) – The unique identifier of the Neptune Analytics graph.

  • vpc_id (str) – The VPC in which the private graph endpoint needs to be created.

  • 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptunegraph-privategraphendpoint.html

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 import aws_neptunegraph as neptunegraph

cfn_private_graph_endpoint_props = neptunegraph.CfnPrivateGraphEndpointProps(
    graph_identifier="graphIdentifier",
    vpc_id="vpcId",

    # the properties below are optional
    security_group_ids=["securityGroupIds"],
    subnet_ids=["subnetIds"]
)

Attributes

graph_identifier

The unique identifier of the Neptune Analytics graph.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptunegraph-privategraphendpoint.html#cfn-neptunegraph-privategraphendpoint-graphidentifier

security_group_ids

Security groups to be attached to the private graph endpoint..

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptunegraph-privategraphendpoint.html#cfn-neptunegraph-privategraphendpoint-securitygroupids

subnet_ids

Subnets in which private graph endpoint ENIs are created.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptunegraph-privategraphendpoint.html#cfn-neptunegraph-privategraphendpoint-subnetids

vpc_id

The VPC in which the private graph endpoint needs to be created.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptunegraph-privategraphendpoint.html#cfn-neptunegraph-privategraphendpoint-vpcid