@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.503Z") @Stability(value=Stable) public interface ProxyTargetConfig 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.rds.*;
DatabaseCluster databaseCluster;
DatabaseInstance databaseInstance;
ProxyTargetConfig proxyTargetConfig = ProxyTargetConfig.builder()
.engineFamily("engineFamily")
// the properties below are optional
.dbClusters(List.of(databaseCluster))
.dbInstances(List.of(databaseInstance))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ProxyTargetConfig.Builder
A builder for
ProxyTargetConfig |
static class |
ProxyTargetConfig.Jsii$Proxy
An implementation for
ProxyTargetConfig |
| Modifier and Type | Method and Description |
|---|---|
static ProxyTargetConfig.Builder |
builder() |
default List<IDatabaseCluster> |
getDbClusters()
The database clusters to which this proxy connects.
|
default List<IDatabaseInstance> |
getDbInstances()
The database instances to which this proxy connects.
|
String |
getEngineFamily()
The engine family of the database instance or cluster this proxy connects with.
|
@Stability(value=Stable) @NotNull String getEngineFamily()
@Stability(value=Stable) @Nullable default List<IDatabaseCluster> getDbClusters()
Either this or dbInstances will be set and the other undefined.
Default: - `undefined` if `dbInstances` is set.
@Stability(value=Stable) @Nullable default List<IDatabaseInstance> getDbInstances()
Either this or dbClusters will be set and the other undefined.
Default: - `undefined` if `dbClusters` is set.
@Stability(value=Stable) static ProxyTargetConfig.Builder builder()
ProxyTargetConfig.Builder of ProxyTargetConfigCopyright © 2022. All rights reserved.