Interface CfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceConfigurationProperty

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

@Stability(Stable) public static interface CfnRouterNetworkInterfacePropsMixin.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.cfnpropertymixins.services.mediaconnect.*;
 PublicRouterNetworkInterfaceConfigurationProperty publicRouterNetworkInterfaceConfigurationProperty = PublicRouterNetworkInterfaceConfigurationProperty.builder()
         .allowRules(List.of(PublicRouterNetworkInterfaceRuleProperty.builder()
                 .cidr("cidr")
                 .build()))
         .build();
 

See Also: