interface RedshiftCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnConnection.RedshiftCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnConnection_RedshiftCredentialsProperty |
Java | software.amazon.awscdk.services.datazone.CfnConnection.RedshiftCredentialsProperty |
Python | aws_cdk.aws_datazone.CfnConnection.RedshiftCredentialsProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnConnection » RedshiftCredentialsProperty |
Amazon Redshift credentials of a connection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
const redshiftCredentialsProperty: datazone.CfnConnection.RedshiftCredentialsProperty = {
secretArn: 'secretArn',
usernamePassword: {
password: 'password',
username: 'username',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| secret | string | The secret ARN of the Amazon Redshift credentials of a connection. |
| username | IResolvable | Username | The username and password of the Amazon Redshift credentials of a connection. |
secretArn?
Type:
string
(optional)
The secret ARN of the Amazon Redshift credentials of a connection.
usernamePassword?
Type:
IResolvable | Username
(optional)
The username and password of the Amazon Redshift credentials of a connection.

.NET
Go
Java
Python
TypeScript