aws-cdk-lib.aws_appflow.CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty

interface SnowflakeConnectorProfilePropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.AppFlow.CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnConnectorProfile_SnowflakeConnectorProfilePropertiesProperty
Javasoftware.amazon.awscdk.services.appflow.CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty
Pythonaws_cdk.aws_appflow.CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty
TypeScript aws-cdk-lib » aws_appflow » CfnConnectorProfile » 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 { aws_appflow as appflow } from 'aws-cdk-lib';
const snowflakeConnectorProfilePropertiesProperty: appflow.CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty = {
  bucketName: 'bucketName',
  stage: 'stage',
  warehouse: 'warehouse',

  // the properties below are optional
  accountName: 'accountName',
  bucketPrefix: 'bucketPrefix',
  privateLinkServiceName: 'privateLinkServiceName',
  region: 'region',
};

Properties

NameTypeDescription
bucketNamestringThe name of the Amazon S3 bucket associated with Snowflake.
stagestringThe name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account.
warehousestringThe name of the Snowflake warehouse.
accountName?stringThe name of the account.
bucketPrefix?stringThe bucket path that refers to the Amazon S3 bucket associated with Snowflake.
privateLinkServiceName?stringThe Snowflake Private Link service name to be used for private data transfers.
region?stringThe AWS Region of the Snowflake account.

bucketName

Type: string

The name of the Amazon S3 bucket associated with Snowflake.


stage

Type: string

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

The name of the Snowflake warehouse.


accountName?

Type: string (optional)

The name of the account.


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.