@Stability(value=Stable)
public static interface CfnTopicRuleDestination.VpcDestinationPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTopicRuleDestination.VpcDestinationPropertiesProperty.Builder
A builder for
CfnTopicRuleDestination.VpcDestinationPropertiesProperty |
static class |
CfnTopicRuleDestination.VpcDestinationPropertiesProperty.Jsii$Proxy
An implementation for
CfnTopicRuleDestination.VpcDestinationPropertiesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTopicRuleDestination.VpcDestinationPropertiesProperty.Builder |
builder() |
default String |
getRoleArn()
The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).
|
default List<String> |
getSecurityGroups()
The security groups of the VPC destination.
|
default List<String> |
getSubnetIds()
The subnet IDs of the VPC destination.
|
default String |
getVpcId()
The ID of the VPC.
|
@Stability(value=Stable) @Nullable default String getRoleArn()
@Stability(value=Stable) @Nullable default List<String> getSecurityGroups()
@Stability(value=Stable) @Nullable default List<String> getSubnetIds()
@Stability(value=Stable) @Nullable default String getVpcId()
@Stability(value=Stable) static CfnTopicRuleDestination.VpcDestinationPropertiesProperty.Builder builder()
Copyright © 2022. All rights reserved.