Interface CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStream
@Stability(Stable)
public static interface CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisfirehose.*; DatabaseSourceVPCConfigurationProperty databaseSourceVPCConfigurationProperty = DatabaseSourceVPCConfigurationProperty.builder() .vpcEndpointServiceName("vpcEndpointServiceName") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeliveryStream.DatabaseSourceVPCConfigurationProperty
static final class
An implementation forCfnDeliveryStream.DatabaseSourceVPCConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The VPC endpoint service name which Firehose uses to create a PrivateLink to the database.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpcEndpointServiceName
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 likecom.amazonaws.vpce.<region>.<vpc-endpoint-service-id>
.Amazon Data Firehose is in preview release and is subject to change.
- See Also:
-
builder
@Stability(Stable) static CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty.Builder builder()
-