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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceConfigurationProperty.Builderbuilder()default ObjectThe list of allowed CIDR blocks for the public router network interface.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowRules
The list of allowed CIDR blocks for the public router network interface.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceRuleProperty>- See Also:
-
builder
@Stability(Stable) static CfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceConfigurationProperty.Builder builder()
-