Show / Hide Table of Contents

Class CfnDataSource.RedshiftStorageProperty

The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.

Inheritance
object
CfnDataSource.RedshiftStorageProperty
Implements
CfnDataSource.IRedshiftStorageProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-redshiftstorage.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-redshiftstorage.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-redshiftstorage.html#cfn-datazone-datasource-redshiftstorage-redshiftclustersource

Type union: either IResolvable or CfnDataSource.IRedshiftClusterStorageProperty

RedshiftServerlessSource

The details of the Amazon Redshift Serverless workgroup source.

public object? RedshiftServerlessSource { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-redshiftstorage.html#cfn-datazone-datasource-redshiftstorage-redshiftserverlesssource

Type union: either IResolvable or CfnDataSource.IRedshiftServerlessStorageProperty

Implements

CfnDataSource.IRedshiftStorageProperty
Back to top Generated by DocFX