Class CfnAnomalyDetector.RDSSourceConfigProperty
Contains information about the Amazon Relational Database Service (RDS) configuration.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.LookoutMetrics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class RDSSourceConfigProperty : Object, CfnAnomalyDetector.IRDSSourceConfigProperty
Syntax (vb)
Public Class RDSSourceConfigProperty
Inherits Object
Implements CfnAnomalyDetector.IRDSSourceConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.LookoutMetrics;
var rDSSourceConfigProperty = new RDSSourceConfigProperty {
DatabaseHost = "databaseHost",
DatabaseName = "databaseName",
DatabasePort = 123,
DbInstanceIdentifier = "dbInstanceIdentifier",
RoleArn = "roleArn",
SecretManagerArn = "secretManagerArn",
TableName = "tableName",
VpcConfiguration = new VpcConfigurationProperty {
SecurityGroupIdList = new [] { "securityGroupIdList" },
SubnetIdList = new [] { "subnetIdList" }
}
};
Synopsis
Constructors
RDSSource |
Properties
Database |
The host name of the database. |
Database |
The name of the RDS database. |
Database |
The port number where the database can be accessed. |
Db |
A string identifying the database instance. |
Role |
The Amazon Resource Name (ARN) of the role. |
Secret |
The Amazon Resource Name (ARN) of the AWS Secrets Manager role. |
Table |
The name of the table in the database. |
Vpc |
An object containing information about the Amazon Virtual Private Cloud (VPC) configuration. |
Constructors
RDSSourceConfigProperty()
public RDSSourceConfigProperty()
Properties
DatabaseHost
The host name of the database.
public string DatabaseHost { get; set; }
Property Value
System.
Remarks
DatabaseName
The name of the RDS database.
public string DatabaseName { get; set; }
Property Value
System.
Remarks
DatabasePort
The port number where the database can be accessed.
public double DatabasePort { get; set; }
Property Value
System.
Remarks
DbInstanceIdentifier
A string identifying the database instance.
public string DbInstanceIdentifier { get; set; }
Property Value
System.
Remarks
RoleArn
The Amazon Resource Name (ARN) of the role.
public string RoleArn { get; set; }
Property Value
System.
Remarks
SecretManagerArn
The Amazon Resource Name (ARN) of the AWS Secrets Manager role.
public string SecretManagerArn { get; set; }
Property Value
System.
Remarks
TableName
The name of the table in the database.
public string TableName { get; set; }
Property Value
System.
Remarks
VpcConfiguration
An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.
public object VpcConfiguration { get; set; }
Property Value
System.