interface DatabaseSourceVPCConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KinesisFirehose.CfnDeliveryStreamPropsMixin.DatabaseSourceVPCConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskinesisfirehose#CfnDeliveryStreamPropsMixin_DatabaseSourceVPCConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kinesisfirehose.CfnDeliveryStreamPropsMixin.DatabaseSourceVPCConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_kinesisfirehose.CfnDeliveryStreamPropsMixin.DatabaseSourceVPCConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kinesisfirehose » CfnDeliveryStreamPropsMixin » 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/cfn-property-mixins';
const databaseSourceVPCConfigurationProperty: kinesisfirehose.CfnDeliveryStreamPropsMixin.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
(optional)
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.

.NET
Go
Java
Python
TypeScript