interface RedshiftSourceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LookoutMetrics.Mixins.CfnAnomalyDetectorPropsMixin.RedshiftSourceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslookoutmetrics/mixins#CfnAnomalyDetectorPropsMixin_RedshiftSourceConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.RedshiftSourceConfigProperty |
Python | aws_cdk.mixins_preview.aws_lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.RedshiftSourceConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lookoutmetrics » mixins » CfnAnomalyDetectorPropsMixin » RedshiftSourceConfigProperty |
Provides information about the Amazon Redshift database configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lookoutmetrics_mixins } from '@aws-cdk/mixins-preview/aws-lookoutmetrics';
const redshiftSourceConfigProperty: lookoutmetrics_mixins.CfnAnomalyDetectorPropsMixin.RedshiftSourceConfigProperty = {
clusterIdentifier: 'clusterIdentifier',
databaseHost: 'databaseHost',
databaseName: 'databaseName',
databasePort: 123,
roleArn: 'roleArn',
secretManagerArn: 'secretManagerArn',
tableName: 'tableName',
vpcConfiguration: {
securityGroupIdList: ['securityGroupIdList'],
subnetIdList: ['subnetIdList'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | A string identifying the Redshift cluster. |
| database | string | The name of the database host. |
| database | string | The Redshift database name. |
| database | number | The port number where the database can be accessed. |
| role | string | The Amazon Resource Name (ARN) of the role providing access to the database. |
| secret | string | The Amazon Resource Name (ARN) of the AWS Secrets Manager role. |
| table | string | The table name of the Redshift database. |
| vpc | IResolvable | Vpc | Contains information about the Amazon Virtual Private Cloud (VPC) configuration. |
clusterIdentifier?
Type:
string
(optional)
A string identifying the Redshift cluster.
databaseHost?
Type:
string
(optional)
The name of the database host.
databaseName?
Type:
string
(optional)
The Redshift database name.
databasePort?
Type:
number
(optional)
The port number where the database can be accessed.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the role providing access to the database.
secretManagerArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS Secrets Manager role.
tableName?
Type:
string
(optional)
The table name of the Redshift database.
vpcConfiguration?
Type:
IResolvable | Vpc
(optional)
Contains information about the Amazon Virtual Private Cloud (VPC) configuration.

.NET
Go
Java
Python
TypeScript