interface SnowflakeVpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.SnowflakeVpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_SnowflakeVpcConfigurationProperty |
Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.SnowflakeVpcConfigurationProperty |
Python | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.SnowflakeVpcConfigurationProperty |
TypeScript | aws-cdk-lib » aws_kinesisfirehose » CfnDeliveryStream » 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-lib';
const snowflakeVpcConfigurationProperty: kinesisfirehose.CfnDeliveryStream.SnowflakeVpcConfigurationProperty = {
privateLinkVpceId: 'privateLinkVpceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| private | string | The VPCE ID for Firehose to privately connect with Snowflake. |
privateLinkVpceId
Type:
string
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