interface RDSSourceConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.LookoutMetrics.CfnAnomalyDetector.RDSSourceConfigProperty |
Java | software.amazon.awscdk.services.lookoutmetrics.CfnAnomalyDetector.RDSSourceConfigProperty |
Python | aws_cdk.aws_lookoutmetrics.CfnAnomalyDetector.RDSSourceConfigProperty |
TypeScript | @aws-cdk/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 * as lookoutmetrics from '@aws-cdk/aws-lookoutmetrics';
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
Name | Type | Description |
---|---|---|
database | string | The host name of the database. |
database | string | The name of the RDS database. |
database | number | The port number where the database can be accessed. |
db | string | A string identifying the database instance. |
role | string | The Amazon Resource Name (ARN) of the role. |
secret | string | The Amazon Resource Name (ARN) of the AWS Secrets Manager role. |
table | string | The name of the table in the database. |
vpc | IResolvable | Vpc | An 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
|
Vpc
An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.