interface RedshiftConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.RedshiftConnectorProfileCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_RedshiftConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.RedshiftConnectorProfileCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.RedshiftConnectorProfileCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » RedshiftConnectorProfileCredentialsProperty |
The connector-specific profile credentials required when using Amazon Redshift.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const redshiftConnectorProfileCredentialsProperty: appflow_mixins.CfnConnectorProfilePropsMixin.RedshiftConnectorProfileCredentialsProperty = {
password: 'password',
username: 'username',
};
Properties
| Name | Type | Description |
|---|---|---|
| password? | string | The password that corresponds to the user name. |
| username? | string | The name of the user. |
password?
Type:
string
(optional)
The password that corresponds to the user name.
username?
Type:
string
(optional)
The name of the user.

.NET
Go
Java
Python
TypeScript