Interface CfnRouterNetworkInterfaceProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRouterNetworkInterfaceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)", date="2025-11-17T14:40:55.607Z") @Stability(Stable) public interface CfnRouterNetworkInterfaceProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnRouterNetworkInterface.

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.*;
 CfnRouterNetworkInterfaceProps cfnRouterNetworkInterfaceProps = CfnRouterNetworkInterfaceProps.builder()
         .configuration(RouterNetworkInterfaceConfigurationProperty.builder()
                 .public(PublicRouterNetworkInterfaceConfigurationProperty.builder()
                         .allowRules(List.of(PublicRouterNetworkInterfaceRuleProperty.builder()
                                 .cidr("cidr")
                                 .build()))
                         .build())
                 .vpc(VpcRouterNetworkInterfaceConfigurationProperty.builder()
                         .securityGroupIds(List.of("securityGroupIds"))
                         .subnetId("subnetId")
                         .build())
                 .build())
         .name("name")
         // the properties below are optional
         .regionName("regionName")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: