Interface CfnConnection.IRedshiftCredentialsProperty
Amazon Redshift credentials of a connection.
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConnection.IRedshiftCredentialsProperty
Syntax (vb)
Public Interface CfnConnection.IRedshiftCredentialsProperty
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 redshiftCredentialsProperty = new RedshiftCredentialsProperty {
SecretArn = "secretArn",
UsernamePassword = new UsernamePasswordProperty {
Password = "password",
Username = "username"
}
};
Synopsis
Properties
| SecretArn | The secret ARN of the Amazon Redshift credentials of a connection. |
| UsernamePassword | The username and password of the Amazon Redshift credentials of a connection. |
Properties
SecretArn
The secret ARN of the Amazon Redshift credentials of a connection.
string? SecretArn { get; }
Property Value
Remarks
UsernamePassword
The username and password of the Amazon Redshift credentials of a connection.
object? UsernamePassword { get; }