@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:53.575Z") @Stability(value=Experimental) public interface DatabaseClusterAttributes extends software.amazon.jsii.JsiiSerializable
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.ec2.*;
import software.amazon.awscdk.services.neptune.*;
SecurityGroup securityGroup;
DatabaseClusterAttributes databaseClusterAttributes = DatabaseClusterAttributes.builder()
.clusterEndpointAddress("clusterEndpointAddress")
.clusterIdentifier("clusterIdentifier")
.clusterResourceIdentifier("clusterResourceIdentifier")
.port(123)
.readerEndpointAddress("readerEndpointAddress")
.securityGroup(securityGroup)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
DatabaseClusterAttributes.Builder
A builder for
DatabaseClusterAttributes |
static class |
DatabaseClusterAttributes.Jsii$Proxy
An implementation for
DatabaseClusterAttributes |
| Modifier and Type | Method and Description |
|---|---|
static DatabaseClusterAttributes.Builder |
builder() |
String |
getClusterEndpointAddress()
(experimental) Cluster endpoint address.
|
String |
getClusterIdentifier()
(experimental) Identifier for the cluster.
|
String |
getClusterResourceIdentifier()
(experimental) Resource Identifier for the cluster.
|
Number |
getPort()
(experimental) The database port.
|
String |
getReaderEndpointAddress()
(experimental) Reader endpoint address.
|
ISecurityGroup |
getSecurityGroup()
(experimental) The security group of the database cluster.
|
@Stability(value=Experimental) @NotNull String getClusterEndpointAddress()
@Stability(value=Experimental) @NotNull String getClusterIdentifier()
@Stability(value=Experimental) @NotNull String getClusterResourceIdentifier()
@Stability(value=Experimental) @NotNull Number getPort()
@Stability(value=Experimental) @NotNull String getReaderEndpointAddress()
@Stability(value=Experimental) @NotNull ISecurityGroup getSecurityGroup()
@Stability(value=Experimental) static DatabaseClusterAttributes.Builder builder()
DatabaseClusterAttributes.Builder of DatabaseClusterAttributesCopyright © 2022. All rights reserved.