Interface CfnRouterNetworkInterface.VpcRouterNetworkInterfaceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterNetworkInterface.VpcRouterNetworkInterfaceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterNetworkInterface
@Stability(Stable)
public static interface CfnRouterNetworkInterface.VpcRouterNetworkInterfaceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration settings for a router network interface within a VPC, including the security group IDs and subnet ID.
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.mediaconnect.*;
VpcRouterNetworkInterfaceConfigurationProperty vpcRouterNetworkInterfaceConfigurationProperty = VpcRouterNetworkInterfaceConfigurationProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetId("subnetId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterNetworkInterface.VpcRouterNetworkInterfaceConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The IDs of the security groups to associate with the router network interface within the VPC.The ID of the subnet within the VPC to associate the router network interface with.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The IDs of the security groups to associate with the router network interface within the VPC.- See Also:
-
getSubnetId
The ID of the subnet within the VPC to associate the router network interface with.- See Also:
-
builder
@Stability(Stable) static CfnRouterNetworkInterface.VpcRouterNetworkInterfaceConfigurationProperty.Builder builder()
-