public static interface CfnDataSource.RedshiftParametersProperty
The ClusterId
field can be blank if Host
and Port
are both set. The Host
and Port
fields can be blank if the ClusterId
field is set.
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.quicksight.*; RedshiftParametersProperty redshiftParametersProperty = RedshiftParametersProperty.builder() .database("database") // the properties below are optional .clusterId("clusterId") .host("host") .port(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataSource.RedshiftParametersProperty.Builder
A builder for
CfnDataSource.RedshiftParametersProperty |
static class |
CfnDataSource.RedshiftParametersProperty.Jsii$Proxy
An implementation for
CfnDataSource.RedshiftParametersProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataSource.RedshiftParametersProperty.Builder |
builder() |
default java.lang.String |
getClusterId()
Cluster ID.
|
java.lang.String |
getDatabase()
Database.
|
default java.lang.String |
getHost()
Host.
|
default java.lang.Number |
getPort()
Port.
|
java.lang.String getDatabase()
default java.lang.String getClusterId()
This field can be blank if the Host
and Port
are provided.
default java.lang.String getHost()
This field can be blank if ClusterId
is provided.
default java.lang.Number getPort()
This field can be blank if the ClusterId
is provided.
static CfnDataSource.RedshiftParametersProperty.Builder builder()