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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnomalyDetector.RDSSourceConfigProperty
static final class
An implementation forCfnAnomalyDetector.RDSSourceConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The host name of the database.The name of the RDS database.The port number where the database can be accessed.A string identifying the database instance.The Amazon Resource Name (ARN) of the role.The Amazon Resource Name (ARN) of the AWS Secrets Manager role.The name of the table in the database.An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseHost
The host name of the database.- See Also:
-
getDatabaseName
The name of the RDS database.- See Also:
-
getDatabasePort
The port number where the database can be accessed.- See Also:
-
getDbInstanceIdentifier
A string identifying the database instance.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the role.- See Also:
-
getSecretManagerArn
The Amazon Resource Name (ARN) of the AWS Secrets Manager role.- See Also:
-
getTableName
The name of the table in the database.- See Also:
-
getVpcConfiguration
An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.- See Also:
-
builder
-