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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopicRuleDestination.VpcDestinationPropertiesProperty
static final class
An implementation forCfnTopicRuleDestination.VpcDestinationPropertiesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRoleArn
The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs). -
getSecurityGroups
The security groups of the VPC destination. -
getSubnetIds
The subnet IDs of the VPC destination. -
getVpcId
The ID of the VPC. -
builder
@Stability(Stable) static CfnTopicRuleDestination.VpcDestinationPropertiesProperty.Builder builder()
-