aws-cdk-lib.aws_lookoutmetrics.CfnAnomalyDetector.RDSSourceConfigProperty

interface RDSSourceConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.LookoutMetrics.CfnAnomalyDetector.RDSSourceConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslookoutmetrics#CfnAnomalyDetector_RDSSourceConfigProperty
Javasoftware.amazon.awscdk.services.lookoutmetrics.CfnAnomalyDetector.RDSSourceConfigProperty
Pythonaws_cdk.aws_lookoutmetrics.CfnAnomalyDetector.RDSSourceConfigProperty
TypeScript aws-cdk-lib » aws_lookoutmetrics » CfnAnomalyDetector » RDSSourceConfigProperty

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 { aws_lookoutmetrics as lookoutmetrics } from 'aws-cdk-lib';
const rDSSourceConfigProperty: lookoutmetrics.CfnAnomalyDetector.RDSSourceConfigProperty = {
  databaseHost: 'databaseHost',
  databaseName: 'databaseName',
  databasePort: 123,
  dbInstanceIdentifier: 'dbInstanceIdentifier',
  roleArn: 'roleArn',
  secretManagerArn: 'secretManagerArn',
  tableName: 'tableName',
  vpcConfiguration: {
    securityGroupIdList: ['securityGroupIdList'],
    subnetIdList: ['subnetIdList'],
  },
};

Properties

NameTypeDescription
databaseHoststringThe host name of the database.
databaseNamestringThe name of the RDS database.
databasePortnumberThe port number where the database can be accessed.
dbInstanceIdentifierstringA string identifying the database instance.
roleArnstringThe Amazon Resource Name (ARN) of the role.
secretManagerArnstringThe Amazon Resource Name (ARN) of the AWS Secrets Manager role.
tableNamestringThe name of the table in the database.
vpcConfigurationIResolvable | VpcConfigurationPropertyAn object containing information about the Amazon Virtual Private Cloud (VPC) configuration.

databaseHost

Type: string

The host name of the database.


databaseName

Type: string

The name of the RDS database.


databasePort

Type: number

The port number where the database can be accessed.


dbInstanceIdentifier

Type: string

A string identifying the database instance.


roleArn

Type: string

The Amazon Resource Name (ARN) of the role.


secretManagerArn

Type: string

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


tableName

Type: string

The name of the table in the database.


vpcConfiguration

Type: IResolvable | VpcConfigurationProperty

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