Interface CfnDataSourcePropsMixin.RedshiftStorageProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSourcePropsMixin.RedshiftStorageProperty.Jsii$Proxy
- Enclosing class:
CfnDataSourcePropsMixin
@Stability(Stable)
public static interface CfnDataSourcePropsMixin.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.cfnpropertymixins.services.datazone.*;
RedshiftStorageProperty redshiftStorageProperty = RedshiftStorageProperty.builder()
.redshiftClusterSource(RedshiftClusterStorageProperty.builder()
.clusterName("clusterName")
.build())
.redshiftServerlessSource(RedshiftServerlessStorageProperty.builder()
.workgroupName("workgroupName")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSourcePropsMixin.RedshiftStoragePropertystatic final classAn implementation forCfnDataSourcePropsMixin.RedshiftStorageProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRedshiftClusterSource
The details of the Amazon Redshift cluster source.Returns union: either
IResolvableorCfnDataSourcePropsMixin.RedshiftClusterStorageProperty- See Also:
-
getRedshiftServerlessSource
The details of the Amazon Redshift Serverless workgroup source.Returns union: either
IResolvableorCfnDataSourcePropsMixin.RedshiftServerlessStorageProperty- See Also:
-
builder
-