Show / Hide Table of Contents

Interface CfnConnection.IRedshiftPropertiesInputProperty

The Amazon Redshift properties.

Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConnection.IRedshiftPropertiesInputProperty
Syntax (vb)
Public Interface CfnConnection.IRedshiftPropertiesInputProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftpropertiesinput.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 redshiftPropertiesInputProperty = new RedshiftPropertiesInputProperty {
                 Credentials = new RedshiftCredentialsProperty {
                     SecretArn = "secretArn",
                     UsernamePassword = new UsernamePasswordProperty {
                         Password = "password",
                         Username = "username"
                     }
                 },
                 DatabaseName = "databaseName",
                 Host = "host",
                 LineageSync = new RedshiftLineageSyncConfigurationInputProperty {
                     Enabled = false,
                     Schedule = new LineageSyncScheduleProperty {
                         Schedule = "schedule"
                     }
                 },
                 Port = 123,
                 Storage = new RedshiftStoragePropertiesProperty {
                     ClusterName = "clusterName",
                     WorkgroupName = "workgroupName"
                 }
             };

Synopsis

Properties

Credentials

The Amaon Redshift credentials.

DatabaseName

The Amazon Redshift database name.

Host

The Amazon Redshift host.

LineageSync

The lineage sync of the Amazon Redshift.

Port

The Amaon Redshift port.

Storage

The Amazon Redshift storage.

Properties

Credentials

The Amaon Redshift credentials.

object? Credentials { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftpropertiesinput.html#cfn-datazone-connection-redshiftpropertiesinput-credentials

Type union: either IResolvable or CfnConnection.IRedshiftCredentialsProperty

DatabaseName

The Amazon Redshift database name.

string? DatabaseName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftpropertiesinput.html#cfn-datazone-connection-redshiftpropertiesinput-databasename

Host

The Amazon Redshift host.

string? Host { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftpropertiesinput.html#cfn-datazone-connection-redshiftpropertiesinput-host

LineageSync

The lineage sync of the Amazon Redshift.

object? LineageSync { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftpropertiesinput.html#cfn-datazone-connection-redshiftpropertiesinput-lineagesync

Type union: either IResolvable or CfnConnection.IRedshiftLineageSyncConfigurationInputProperty

Port

The Amaon Redshift port.

double? Port { get; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftpropertiesinput.html#cfn-datazone-connection-redshiftpropertiesinput-port

Storage

The Amazon Redshift storage.

object? Storage { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftpropertiesinput.html#cfn-datazone-connection-redshiftpropertiesinput-storage

Type union: either IResolvable or CfnConnection.IRedshiftStoragePropertiesProperty

Back to top Generated by DocFX