Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-redshiftcredentials.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 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

string

Remarks

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

UsernamePassword

The username and password of the Amazon Redshift credentials of a connection.

object? UsernamePassword { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnConnection.IUsernamePasswordProperty

Back to top Generated by DocFX