ClusterAttributes

class aws_cdk.aws_dsql_alpha.ClusterAttributes(*, cluster_endpoint, cluster_identifier, vpc_endpoint_service_name)

Bases: object

(experimental) Properties that describe an existing Aurora DSQL cluster.

Parameters:
  • cluster_endpoint (str) – (experimental) Connection endpoint for the cluster.

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

  • vpc_endpoint_service_name (str) – (experimental) VPC endpoint service name for the 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_dsql_alpha as dsql_alpha

cluster_attributes = dsql_alpha.ClusterAttributes(
    cluster_endpoint="clusterEndpoint",
    cluster_identifier="clusterIdentifier",
    vpc_endpoint_service_name="vpcEndpointServiceName"
)

Attributes

cluster_endpoint

(experimental) Connection endpoint for the cluster.

Stability:

experimental

cluster_identifier

(experimental) Identifier of the cluster.

Stability:

experimental

vpc_endpoint_service_name

(experimental) VPC endpoint service name for the cluster.

Stability:

experimental