interface DatabaseSourceVPCConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_DatabaseSourceVPCConfigurationProperty | 
|  Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty | 
|  Python | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_kinesisfirehose»CfnDeliveryStream»DatabaseSourceVPCConfigurationProperty | 
The structure for details of the VPC Endpoint Service which Firehose uses to create a PrivateLink to the database.
Amazon Data Firehose is in preview release and is subject to change.
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 databaseSourceVPCConfigurationProperty: kinesisfirehose.CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty = {
  vpcEndpointServiceName: 'vpcEndpointServiceName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| vpc | string | The VPC endpoint service name which Firehose uses to create a PrivateLink to the database. | 
vpcEndpointServiceName
Type:
string
The VPC endpoint service name which Firehose uses to create a PrivateLink to the database.
The endpoint service must have the Firehose service principle firehose.amazonaws.com as an allowed principal on the VPC endpoint service. The VPC endpoint service name is a string that looks like com.amazonaws.vpce.<region>.<vpc-endpoint-service-id> .
Amazon Data Firehose is in preview release and is subject to change.
