@Stability(value=Stable)
public static interface CfnAnomalyDetector.RedshiftSourceConfigProperty
extends software.amazon.jsii.JsiiSerializable
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() |
String |
getClusterIdentifier()
A string identifying the Redshift cluster.
|
String |
getDatabaseHost()
The name of the database host.
|
String |
getDatabaseName()
The Redshift database name.
|
Number |
getDatabasePort()
The port number where the database can be accessed.
|
String |
getRoleArn()
The Amazon Resource Name (ARN) of the role providing access to the database.
|
String |
getSecretManagerArn()
The Amazon Resource Name (ARN) of the AWS Secrets Manager role.
|
String |
getTableName()
The table name of the Redshift database.
|
Object |
getVpcConfiguration()
Contains information about the Amazon Virtual Private Cloud (VPC) configuration.
|
@Stability(value=Stable) @NotNull String getClusterIdentifier()
@Stability(value=Stable) @NotNull String getDatabaseHost()
@Stability(value=Stable) @NotNull String getDatabaseName()
@Stability(value=Stable) @NotNull Number getDatabasePort()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @NotNull String getSecretManagerArn()
@Stability(value=Stable) @NotNull String getTableName()
@Stability(value=Stable) @NotNull Object getVpcConfiguration()
@Stability(value=Stable) static CfnAnomalyDetector.RedshiftSourceConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.