interface RedshiftStorageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnDataSourcePropsMixin.RedshiftStorageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnDataSourcePropsMixin_RedshiftStorageProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnDataSourcePropsMixin.RedshiftStorageProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnDataSourcePropsMixin.RedshiftStorageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnDataSourcePropsMixin » 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 { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const redshiftStorageProperty: datazone_mixins.CfnDataSourcePropsMixin.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