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