Interface CfnAnomalyDetector.RDSSourceConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnomalyDetector.RDSSourceConfigProperty.Jsii$Proxy
Enclosing class:
CfnAnomalyDetector

@Stability(Stable) public static interface CfnAnomalyDetector.RDSSourceConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains information about the Amazon Relational Database Service (RDS) configuration.

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();
 

See Also: