@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:36.339Z") @Stability(value=Experimental) 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()
(experimental) The database clusters to which this proxy connects.
|
default List<IDatabaseInstance> |
getDbInstances()
(experimental) The database instances to which this proxy connects.
|
String |
getEngineFamily()
(experimental) The engine family of the database instance or cluster this proxy connects with.
|
@Stability(value=Experimental) @NotNull String getEngineFamily()
@Stability(value=Experimental) @Nullable default List<IDatabaseCluster> getDbClusters()
Either this or dbInstances will be set and the other undefined.
Default: - `undefined` if `dbInstances` is set.
@Stability(value=Experimental) @Nullable default List<IDatabaseInstance> getDbInstances()
Either this or dbClusters will be set and the other undefined.
Default: - `undefined` if `dbClusters` is set.
@Stability(value=Experimental) static ProxyTargetConfig.Builder builder()
ProxyTargetConfig.Builder of ProxyTargetConfigCopyright © 2022. All rights reserved.