Interface DatabaseClusterAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DatabaseClusterAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:11.770Z")
@Stability(Experimental)
public interface DatabaseClusterAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties that describe an existing cluster instance.
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.neptune.alpha.*; import software.amazon.awscdk.services.ec2.*; SecurityGroup securityGroup; DatabaseClusterAttributes databaseClusterAttributes = DatabaseClusterAttributes.builder() .clusterEndpointAddress("clusterEndpointAddress") .clusterIdentifier("clusterIdentifier") .clusterResourceIdentifier("clusterResourceIdentifier") .port(123) .readerEndpointAddress("readerEndpointAddress") .securityGroup(securityGroup) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forDatabaseClusterAttributes
static final class
An implementation forDatabaseClusterAttributes
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
(experimental) Cluster endpoint address.(experimental) Identifier for the cluster.(experimental) Resource Identifier for the cluster.getPort()
(experimental) The database port.(experimental) Reader endpoint address.(experimental) The security group of the database cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterEndpointAddress
(experimental) Cluster endpoint address. -
getClusterIdentifier
(experimental) Identifier for the cluster. -
getClusterResourceIdentifier
(experimental) Resource Identifier for the cluster. -
getPort
(experimental) The database port. -
getReaderEndpointAddress
(experimental) Reader endpoint address. -
getSecurityGroup
(experimental) The security group of the database cluster. -
builder
- Returns:
- a
DatabaseClusterAttributes.Builder
ofDatabaseClusterAttributes
-