Interface RouterNetworkInterfaceProps

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.217Z") @Stability(Experimental) public interface RouterNetworkInterfaceProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for Router Network Interface.

Example:

 Stack stack;
 ISecurityGroup securityGroup;
 ISubnet subnet;
 RouterNetworkInterface privateInterface = RouterNetworkInterface.Builder.create(stack, "PrivateInterface")
         .routerNetworkInterfaceName("private-interface")
         .configuration(RouterNetworkConfiguration.vpc(VpcNetworkConfigurationProps.builder()
                 .securityGroups(List.of(securityGroup))
                 .subnet(subnet)
                 .build()))
         .build();
 
  • Method Details

    • getConfiguration

      @Stability(Experimental) @NotNull RouterNetworkConfiguration getConfiguration()
      (experimental) Network configuration for the router network interface.
    • getRegionName

      @Stability(Experimental) @Nullable default String getRegionName()
      (experimental) The AWS Region where the router network interface will be created.

      Default: - Same region as the stack

    • getRouterNetworkInterfaceName

      @Stability(Experimental) @Nullable default String getRouterNetworkInterfaceName()
      (experimental) The name of the router network interface.

      Default: - Generated automatically

    • getTags

      @Stability(Experimental) @Nullable default Map<String,String> getTags()
      (experimental) Tags to add to the network interface.

      Default: - No tagging

    • builder

      @Stability(Experimental) static RouterNetworkInterfaceProps.Builder builder()
      Returns:
      a RouterNetworkInterfaceProps.Builder of RouterNetworkInterfaceProps