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
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
Remarks
DatabaseName
The Amazon Redshift database name.
string? DatabaseName { get; }
Property Value
Remarks
Host
The Amazon Redshift host.
string? Host { get; }
Property Value
Remarks
LineageSync
The lineage sync of the Amazon Redshift.
object? LineageSync { get; }
Property Value
Remarks
Port
The Amaon Redshift port.
double? Port { get; }
Property Value
Remarks
Storage
The Amazon Redshift storage.
object? Storage { get; }