Interface CfnTopicRuleDestination.VpcDestinationPropertiesProperty

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

@Stability(Stable) public static interface CfnTopicRuleDestination.VpcDestinationPropertiesProperty extends software.amazon.jsii.JsiiSerializable
The properties of a virtual private cloud (VPC) 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.iot.*;
 VpcDestinationPropertiesProperty vpcDestinationPropertiesProperty = VpcDestinationPropertiesProperty.builder()
         .roleArn("roleArn")
         .securityGroups(List.of("securityGroups"))
         .subnetIds(List.of("subnetIds"))
         .vpcId("vpcId")
         .build();
 

See Also: