Interface CfnDataProviderPropsMixin.IRedshiftSettingsProperty
Provides information that defines an Amazon Redshift endpoint.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DMS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnDataProviderPropsMixin.IRedshiftSettingsProperty
Syntax (vb)
Public Interface CfnDataProviderPropsMixin.IRedshiftSettingsProperty
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.CfnPropertyMixins.AWS.DMS;
var redshiftSettingsProperty = new RedshiftSettingsProperty {
DatabaseName = "databaseName",
Port = 123,
ServerName = "serverName"
};
Synopsis
Properties
| DatabaseName | The name of the Amazon Redshift data warehouse (service) that you are working with. |
| Port | The port number for Amazon Redshift. |
| ServerName | The name of the Amazon Redshift cluster you are using. |
Properties
DatabaseName
The name of the Amazon Redshift data warehouse (service) that you are working with.
string? DatabaseName { get; }
Property Value
Remarks
Port
The port number for Amazon Redshift.
double? Port { get; }
Property Value
Remarks
ServerName
The name of the Amazon Redshift cluster you are using.
string? ServerName { get; }