@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.468Z") @Stability(value=Stable) public interface DatabaseProxyAttributes 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.rds.*;
SecurityGroup securityGroup;
DatabaseProxyAttributes databaseProxyAttributes = DatabaseProxyAttributes.builder()
.dbProxyArn("dbProxyArn")
.dbProxyName("dbProxyName")
.endpoint("endpoint")
.securityGroups(List.of(securityGroup))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
DatabaseProxyAttributes.Builder
A builder for
DatabaseProxyAttributes |
static class |
DatabaseProxyAttributes.Jsii$Proxy
An implementation for
DatabaseProxyAttributes |
| Modifier and Type | Method and Description |
|---|---|
static DatabaseProxyAttributes.Builder |
builder() |
String |
getDbProxyArn()
DB Proxy ARN.
|
String |
getDbProxyName()
DB Proxy Name.
|
String |
getEndpoint()
Endpoint.
|
List<ISecurityGroup> |
getSecurityGroups()
The security groups of the instance.
|
@Stability(value=Stable) @NotNull String getDbProxyArn()
@Stability(value=Stable) @NotNull String getDbProxyName()
@Stability(value=Stable) @NotNull String getEndpoint()
@Stability(value=Stable) @NotNull List<ISecurityGroup> getSecurityGroups()
@Stability(value=Stable) static DatabaseProxyAttributes.Builder builder()
DatabaseProxyAttributes.Builder of DatabaseProxyAttributesCopyright © 2022. All rights reserved.