Interface CfnDataSource.RedshiftStorageProperty

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

@Stability(Stable) public static interface CfnDataSource.RedshiftStorageProperty extends software.amazon.jsii.JsiiSerializable
The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.

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.datazone.*;
 RedshiftStorageProperty redshiftStorageProperty = RedshiftStorageProperty.builder()
         .redshiftClusterSource(RedshiftClusterStorageProperty.builder()
                 .clusterName("clusterName")
                 .build())
         .redshiftServerlessSource(RedshiftServerlessStorageProperty.builder()
                 .workgroupName("workgroupName")
                 .build())
         .build();
 

See Also: