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 Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.RedshiftStorageProperty
static final class
An implementation forCfnDataSource.RedshiftStorageProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRedshiftClusterSource
The details of the Amazon Redshift cluster source.- See Also:
-
getRedshiftServerlessSource
The details of the Amazon Redshift Serverless workgroup source.- See Also:
-
builder
-