Show / Hide Table of Contents

Class CfnAnomalyDetector.RDSSourceConfigProperty

Contains information about the Amazon Relational Database Service (RDS) configuration.

Inheritance
object
CfnAnomalyDetector.RDSSourceConfigProperty
Implements
CfnAnomalyDetector.IRDSSourceConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.LookoutMetrics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnomalyDetector.RDSSourceConfigProperty : CfnAnomalyDetector.IRDSSourceConfigProperty
Syntax (vb)
Public Class CfnAnomalyDetector.RDSSourceConfigProperty Implements CfnAnomalyDetector.IRDSSourceConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html

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

RDSSourceConfigProperty()

Contains information about the Amazon Relational Database Service (RDS) configuration.

Properties

DatabaseHost

The host name of the database.

DatabaseName

The name of the RDS database.

DatabasePort

The port number where the database can be accessed.

DbInstanceIdentifier

A string identifying the database instance.

RoleArn

The Amazon Resource Name (ARN) of the role.

SecretManagerArn

The Amazon Resource Name (ARN) of the AWS Secrets Manager role.

TableName

The name of the table in the database.

VpcConfiguration

An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.

Constructors

RDSSourceConfigProperty()

Contains information about the Amazon Relational Database Service (RDS) configuration.

public RDSSourceConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html

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" }
                 }
             };

Properties

DatabaseHost

The host name of the database.

public string DatabaseHost { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html#cfn-lookoutmetrics-anomalydetector-rdssourceconfig-databasehost

DatabaseName

The name of the RDS database.

public string DatabaseName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html#cfn-lookoutmetrics-anomalydetector-rdssourceconfig-databasename

DatabasePort

The port number where the database can be accessed.

public double DatabasePort { get; set; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html#cfn-lookoutmetrics-anomalydetector-rdssourceconfig-databaseport

DbInstanceIdentifier

A string identifying the database instance.

public string DbInstanceIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html#cfn-lookoutmetrics-anomalydetector-rdssourceconfig-dbinstanceidentifier

RoleArn

The Amazon Resource Name (ARN) of the role.

public string RoleArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html#cfn-lookoutmetrics-anomalydetector-rdssourceconfig-rolearn

SecretManagerArn

The Amazon Resource Name (ARN) of the AWS Secrets Manager role.

public string SecretManagerArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html#cfn-lookoutmetrics-anomalydetector-rdssourceconfig-secretmanagerarn

TableName

The name of the table in the database.

public string TableName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html#cfn-lookoutmetrics-anomalydetector-rdssourceconfig-tablename

VpcConfiguration

An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.

public object VpcConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html#cfn-lookoutmetrics-anomalydetector-rdssourceconfig-vpcconfiguration

Implements

CfnAnomalyDetector.IRDSSourceConfigProperty
Back to top Generated by DocFX