Interface ClusterAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ClusterAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-24T20:29:52.776Z") @Stability(Experimental) public interface ClusterAttributes extends software.amazon.jsii.JsiiSerializable
(experimental) Properties that describe an existing Aurora DSQL cluster.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.dsql.alpha.*;
 ClusterAttributes clusterAttributes = ClusterAttributes.builder()
         .clusterEndpoint("clusterEndpoint")
         .clusterIdentifier("clusterIdentifier")
         .vpcEndpointServiceName("vpcEndpointServiceName")
         .build();
 
  • Method Details

    • getClusterEndpoint

      @Stability(Experimental) @NotNull String getClusterEndpoint()
      (experimental) Connection endpoint for the cluster.
    • getClusterIdentifier

      @Stability(Experimental) @NotNull String getClusterIdentifier()
      (experimental) Identifier of the cluster.
    • getVpcEndpointServiceName

      @Stability(Experimental) @NotNull String getVpcEndpointServiceName()
      (experimental) VPC endpoint service name for the cluster.
    • builder

      @Stability(Experimental) static ClusterAttributes.Builder builder()
      Returns:
      a ClusterAttributes.Builder of ClusterAttributes