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:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.RedshiftStoragePropertystatic final classAn implementation forCfnDataSource.RedshiftStorageProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getRedshiftClusterSourceThe details of the Amazon Redshift cluster source.Returns union: either IResolvableorCfnDataSource.RedshiftClusterStorageProperty- See Also:
 
- 
getRedshiftServerlessSourceThe details of the Amazon Redshift Serverless workgroup source.Returns union: either IResolvableorCfnDataSource.RedshiftServerlessStorageProperty- See Also:
 
- 
builder
 
-