Class CfnDataSource.RedshiftStorageProperty
The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.RedshiftStorageProperty : CfnDataSource.IRedshiftStorageProperty
Syntax (vb)
Public Class CfnDataSource.RedshiftStorageProperty Implements CfnDataSource.IRedshiftStorageProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataZone;
var redshiftStorageProperty = new RedshiftStorageProperty {
RedshiftClusterSource = new RedshiftClusterStorageProperty {
ClusterName = "clusterName"
},
RedshiftServerlessSource = new RedshiftServerlessStorageProperty {
WorkgroupName = "workgroupName"
}
};
Synopsis
Constructors
| RedshiftStorageProperty() | The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run. |
Properties
| RedshiftClusterSource | The details of the Amazon Redshift cluster source. |
| RedshiftServerlessSource | The details of the Amazon Redshift Serverless workgroup source. |
Constructors
RedshiftStorageProperty()
The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.
public RedshiftStorageProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataZone;
var redshiftStorageProperty = new RedshiftStorageProperty {
RedshiftClusterSource = new RedshiftClusterStorageProperty {
ClusterName = "clusterName"
},
RedshiftServerlessSource = new RedshiftServerlessStorageProperty {
WorkgroupName = "workgroupName"
}
};
Properties
RedshiftClusterSource
The details of the Amazon Redshift cluster source.
public object? RedshiftClusterSource { get; set; }
Property Value
Remarks
RedshiftServerlessSource
The details of the Amazon Redshift Serverless workgroup source.
public object? RedshiftServerlessSource { get; set; }