interface RedshiftStorageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnDataSource.RedshiftStorageProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnDataSource_RedshiftStorageProperty |
Java | software.amazon.awscdk.services.datazone.CfnDataSource.RedshiftStorageProperty |
Python | aws_cdk.aws_datazone.CfnDataSource.RedshiftStorageProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnDataSource » RedshiftStorageProperty |
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 { aws_datazone as datazone } from 'aws-cdk-lib';
const redshiftStorageProperty: datazone.CfnDataSource.RedshiftStorageProperty = {
redshiftClusterSource: {
clusterName: 'clusterName',
},
redshiftServerlessSource: {
workgroupName: 'workgroupName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| redshift | IResolvable | Redshift | The details of the Amazon Redshift cluster source. |
| redshift | IResolvable | Redshift | The details of the Amazon Redshift Serverless workgroup source. |
redshiftClusterSource?
Type:
IResolvable | Redshift
(optional)
The details of the Amazon Redshift cluster source.
redshiftServerlessSource?
Type:
IResolvable | Redshift
(optional)
The details of the Amazon Redshift Serverless workgroup source.

.NET
Go
Java
Python
TypeScript