interface SnowflakeVpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KinesisFirehose.CfnDeliveryStreamPropsMixin.SnowflakeVpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskinesisfirehose#CfnDeliveryStreamPropsMixin_SnowflakeVpcConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kinesisfirehose.CfnDeliveryStreamPropsMixin.SnowflakeVpcConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_kinesisfirehose.CfnDeliveryStreamPropsMixin.SnowflakeVpcConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kinesisfirehose » CfnDeliveryStreamPropsMixin » SnowflakeVpcConfigurationProperty |
Configure a Snowflake VPC.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisfirehose as kinesisfirehose } from '@aws-cdk/cfn-property-mixins';
const snowflakeVpcConfigurationProperty: kinesisfirehose.CfnDeliveryStreamPropsMixin.SnowflakeVpcConfigurationProperty = {
privateLinkVpceId: 'privateLinkVpceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| private | string | The VPCE ID for Firehose to privately connect with Snowflake. |
privateLinkVpceId?
Type:
string
(optional)
The VPCE ID for Firehose to privately connect with Snowflake.
The ID format is com.amazonaws.vpce.[region].vpce-svc-<[id]>. For more information, see Amazon PrivateLink & Snowflake

.NET
Go
Java
Python
TypeScript