interface DatabaseSourceVPCConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.DatabaseSourceVPCConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_DatabaseSourceVPCConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.DatabaseSourceVPCConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.DatabaseSourceVPCConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » 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 { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const databaseSourceVPCConfigurationProperty: kinesisfirehose_mixins.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