public static interface CfnAnomalyDetector.RedshiftSourceConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAnomalyDetector.RedshiftSourceConfigProperty.Builder
A builder for
CfnAnomalyDetector.RedshiftSourceConfigProperty |
static class |
CfnAnomalyDetector.RedshiftSourceConfigProperty.Jsii$Proxy
An implementation for
CfnAnomalyDetector.RedshiftSourceConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnAnomalyDetector.RedshiftSourceConfigProperty.Builder |
builder() |
java.lang.String |
getClusterIdentifier()
A string identifying the Redshift cluster.
|
java.lang.String |
getDatabaseHost()
The name of the database host.
|
java.lang.String |
getDatabaseName()
The Redshift database name.
|
java.lang.Number |
getDatabasePort()
The port number where the database can be accessed.
|
java.lang.String |
getRoleArn()
The Amazon Resource Name (ARN) of the role providing access to the database.
|
java.lang.String |
getSecretManagerArn()
The Amazon Resource Name (ARN) of the AWS Secrets Manager role.
|
java.lang.String |
getTableName()
The table name of the Redshift database.
|
java.lang.Object |
getVpcConfiguration()
Contains information about the Amazon Virtual Private Cloud (VPC) configuration.
|
java.lang.String getClusterIdentifier()
java.lang.String getDatabaseHost()
java.lang.String getDatabaseName()
java.lang.Number getDatabasePort()
java.lang.String getRoleArn()
java.lang.String getSecretManagerArn()
java.lang.String getTableName()
java.lang.Object getVpcConfiguration()
static CfnAnomalyDetector.RedshiftSourceConfigProperty.Builder builder()