interface SnowflakeConnectorProfilePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfilePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_SnowflakeConnectorProfilePropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfilePropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfilePropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » SnowflakeConnectorProfilePropertiesProperty |
The connector-specific profile properties 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 snowflakeConnectorProfilePropertiesProperty: appflow_mixins.CfnConnectorProfilePropsMixin.SnowflakeConnectorProfilePropertiesProperty = {
accountName: 'accountName',
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
privateLinkServiceName: 'privateLinkServiceName',
region: 'region',
stage: 'stage',
warehouse: 'warehouse',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The name of the account. |
| bucket | string | The name of the Amazon S3 bucket associated with Snowflake. |
| bucket | string | The bucket path that refers to the Amazon S3 bucket associated with Snowflake. |
| private | string | The Snowflake Private Link service name to be used for private data transfers. |
| region? | string | The AWS Region of the Snowflake account. |
| stage? | string | The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account. |
| warehouse? | string | The name of the Snowflake warehouse. |
accountName?
Type:
string
(optional)
The name of the account.
bucketName?
Type:
string
(optional)
The name of the Amazon S3 bucket associated with Snowflake.
bucketPrefix?
Type:
string
(optional)
The bucket path that refers to the Amazon S3 bucket associated with Snowflake.
privateLinkServiceName?
Type:
string
(optional)
The Snowflake Private Link service name to be used for private data transfers.
region?
Type:
string
(optional)
The AWS Region of the Snowflake account.
stage?
Type:
string
(optional)
The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account.
This is written in the following format: < Database>< Schema>
warehouse?
Type:
string
(optional)
The name of the Snowflake warehouse.

.NET
Go
Java
Python
TypeScript