interface RedshiftCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnConnectionPropsMixin.RedshiftCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnConnectionPropsMixin_RedshiftCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnConnectionPropsMixin.RedshiftCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnConnectionPropsMixin.RedshiftCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnConnectionPropsMixin » 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 { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const redshiftCredentialsProperty: datazone_mixins.CfnConnectionPropsMixin.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