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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forClusterAttributesstatic final classAn implementation forClusterAttributes -
Method Summary
Modifier and TypeMethodDescriptionstatic ClusterAttributes.Builderbuilder()(experimental) Connection endpoint for the cluster.(experimental) Identifier of the cluster.(experimental) VPC endpoint service name for the cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterEndpoint
(experimental) Connection endpoint for the cluster. -
getClusterIdentifier
(experimental) Identifier of the cluster. -
getVpcEndpointServiceName
(experimental) VPC endpoint service name for the cluster. -
builder
- Returns:
- a
ClusterAttributes.BuilderofClusterAttributes
-