@Stability(value=Stable)
public static interface CfnAnomalyDetector.RDSSourceConfigProperty
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.lookoutmetrics.*;
RDSSourceConfigProperty rDSSourceConfigProperty = RDSSourceConfigProperty.builder()
.databaseHost("databaseHost")
.databaseName("databaseName")
.databasePort(123)
.dbInstanceIdentifier("dbInstanceIdentifier")
.roleArn("roleArn")
.secretManagerArn("secretManagerArn")
.tableName("tableName")
.vpcConfiguration(VpcConfigurationProperty.builder()
.securityGroupIdList(List.of("securityGroupIdList"))
.subnetIdList(List.of("subnetIdList"))
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAnomalyDetector.RDSSourceConfigProperty.Builder
A builder for
CfnAnomalyDetector.RDSSourceConfigProperty |
static class |
CfnAnomalyDetector.RDSSourceConfigProperty.Jsii$Proxy
An implementation for
CfnAnomalyDetector.RDSSourceConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAnomalyDetector.RDSSourceConfigProperty.Builder |
builder() |
String |
getDatabaseHost()
The host name of the database.
|
String |
getDatabaseName()
The name of the RDS database.
|
Number |
getDatabasePort()
The port number where the database can be accessed.
|
String |
getDbInstanceIdentifier()
A string identifying the database instance.
|
String |
getRoleArn()
The Amazon Resource Name (ARN) of the role.
|
String |
getSecretManagerArn()
The Amazon Resource Name (ARN) of the AWS Secrets Manager role.
|
String |
getTableName()
The name of the table in the database.
|
Object |
getVpcConfiguration()
An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.
|
@Stability(value=Stable) @NotNull String getDatabaseHost()
@Stability(value=Stable) @NotNull String getDatabaseName()
@Stability(value=Stable) @NotNull Number getDatabasePort()
@Stability(value=Stable) @NotNull String getDbInstanceIdentifier()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @NotNull String getSecretManagerArn()
@Stability(value=Stable) @NotNull String getTableName()
@Stability(value=Stable) @NotNull Object getVpcConfiguration()
@Stability(value=Stable) static CfnAnomalyDetector.RDSSourceConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.