interface SnowflakeConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfileCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_SnowflakeConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfileCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfileCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » SnowflakeConnectorProfileCredentialsProperty |
The connector-specific profile credentials required when using Snowflake.
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 snowflakeConnectorProfileCredentialsProperty: appflow_mixins.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfileCredentialsProperty = {
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