java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.mediaconnect.alpha.RoutingScope
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.223Z") @Stability(Experimental) public class RoutingScope extends software.amazon.jsii.JsiiObject
(experimental) Routing scope for the Router Input.

Example:

 Stack stack;
 RouterNetworkInterface networkInterface;
 RouterOutput output = RouterOutput.Builder.create(stack, "SrtOutput")
         .routerOutputName("srt-output")
         .maximumBitrate(Bitrate.mbps(10))
         .routingScope(RoutingScope.REGIONAL)
         // tier defaults to RouterOutputTier.OUTPUT_20 (lowest cost)
         .configuration(RouterOutputConfiguration.standard(StandardOutputConfigurationProps.builder()
                 .protocol(RouterOutputProtocol.srtListener(SrtListenerOutputProtocolProps.builder()
                         .port(9001)
                         .minimumLatency(Duration.millis(200))
                         .build()))
                 .networkInterface(networkInterface)
                 .build()))
         .build();
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final RoutingScope
    (experimental) Route traffic globally across AWS regions.
    static final RoutingScope
    (experimental) Route traffic within the same AWS region.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    RoutingScope(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    RoutingScope(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (experimental) The routing scope string value.
    of(String value)
    (experimental) Use a custom routing scope value.
    (experimental) Returns the string value.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Field Details

    • GLOBAL

      @Stability(Experimental) public static final RoutingScope GLOBAL
      (experimental) Route traffic globally across AWS regions.
    • REGIONAL

      @Stability(Experimental) public static final RoutingScope REGIONAL
      (experimental) Route traffic within the same AWS region.
  • Constructor Details

    • RoutingScope

      protected RoutingScope(software.amazon.jsii.JsiiObjectRef objRef)
    • RoutingScope

      protected RoutingScope(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
  • Method Details

    • of

      @Stability(Experimental) @NotNull public static RoutingScope of(@NotNull String value)
      (experimental) Use a custom routing scope value.

      Parameters:
      value - The routing scope string value. This parameter is required.
    • toString

      @Stability(Experimental) @NotNull public String toString()
      (experimental) Returns the string value.
      Overrides:
      toString in class Object
    • getValue

      @Stability(Experimental) @NotNull public String getValue()
      (experimental) The routing scope string value.