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: