Interface CfnAnomalyDetector.RedshiftSourceConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnomalyDetector.RedshiftSourceConfigProperty.Jsii$Proxy
Enclosing class:
CfnAnomalyDetector

@Stability(Stable) public static interface CfnAnomalyDetector.RedshiftSourceConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.lookoutmetrics.*;
 RedshiftSourceConfigProperty redshiftSourceConfigProperty = RedshiftSourceConfigProperty.builder()
         .clusterIdentifier("clusterIdentifier")
         .databaseHost("databaseHost")
         .databaseName("databaseName")
         .databasePort(123)
         .roleArn("roleArn")
         .secretManagerArn("secretManagerArn")
         .tableName("tableName")
         .vpcConfiguration(VpcConfigurationProperty.builder()
                 .securityGroupIdList(List.of("securityGroupIdList"))
                 .subnetIdList(List.of("subnetIdList"))
                 .build())
         .build();
 

See Also: