DatabaseClusterAttributes

class aws_cdk.aws_neptune.DatabaseClusterAttributes(*, cluster_endpoint_address, cluster_identifier, cluster_resource_identifier, port, reader_endpoint_address, security_group)

Bases: object

(experimental) Properties that describe an existing cluster instance.

Parameters:
  • cluster_endpoint_address (str) – (experimental) Cluster endpoint address.

  • cluster_identifier (str) – (experimental) Identifier for the cluster.

  • cluster_resource_identifier (str) – (experimental) Resource Identifier for the cluster.

  • port (Union[int, float]) – (experimental) The database port.

  • reader_endpoint_address (str) – (experimental) Reader endpoint address.

  • security_group (ISecurityGroup) – (experimental) The security group of the database cluster.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_ec2 as ec2
import aws_cdk.aws_neptune as neptune

# security_group: ec2.SecurityGroup

database_cluster_attributes = neptune.DatabaseClusterAttributes(
    cluster_endpoint_address="clusterEndpointAddress",
    cluster_identifier="clusterIdentifier",
    cluster_resource_identifier="clusterResourceIdentifier",
    port=123,
    reader_endpoint_address="readerEndpointAddress",
    security_group=security_group
)

Attributes

cluster_endpoint_address

(experimental) Cluster endpoint address.

Stability:

experimental

cluster_identifier

(experimental) Identifier for the cluster.

Stability:

experimental

cluster_resource_identifier

(experimental) Resource Identifier for the cluster.

Stability:

experimental

port

(experimental) The database port.

Stability:

experimental

reader_endpoint_address

(experimental) Reader endpoint address.

Stability:

experimental

security_group

(experimental) The security group of the database cluster.

Stability:

experimental