Interface CfnDataSource.RedshiftParametersProperty

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

@Stability(Stable) public static interface CfnDataSource.RedshiftParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters for Amazon Redshift.

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();