interface SnowflakeConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppFlow.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfileCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappflow#CfnConnectorProfilePropsMixin_SnowflakeConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appflow.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfileCredentialsProperty |
Python | aws_cdk.cfn_property_mixins.aws_appflow.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfileCredentialsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appflow » 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 { aws_appflow as appflow } from '@aws-cdk/cfn-property-mixins';
const snowflakeConnectorProfileCredentialsProperty: appflow.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