Interface CfnRouterNetworkInterface.PublicRouterNetworkInterfaceConfigurationProperty

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

@Stability(Stable) public static interface CfnRouterNetworkInterface.PublicRouterNetworkInterfaceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration settings for a public router network interface, including the list of allowed CIDR blocks.

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.*;
 PublicRouterNetworkInterfaceConfigurationProperty publicRouterNetworkInterfaceConfigurationProperty = PublicRouterNetworkInterfaceConfigurationProperty.builder()
         .allowRules(List.of(PublicRouterNetworkInterfaceRuleProperty.builder()
                 .cidr("cidr")
                 .build()))
         .build();
 

See Also: