Interface CfnDeliveryStream.VpcConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeliveryStream.VpcConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDeliveryStream

@Stability(Stable) public static interface CfnDeliveryStream.VpcConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The details of the VPC of the Amazon ES destination.

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.*;
 VpcConfigurationProperty vpcConfigurationProperty = VpcConfigurationProperty.builder()
         .roleArn("roleArn")
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .build();
 

See Also: