Interface RouterInputAttributes

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.212Z") @Stability(Experimental) public interface RouterInputAttributes extends software.amazon.jsii.JsiiSerializable
(experimental) Attributes for importing an existing Router Input.

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.alpha.*;
 RouterInputAttributes routerInputAttributes = RouterInputAttributes.builder()
         .routerInputArn("routerInputArn")
         // the properties below are optional
         .ipAddress("ipAddress")
         .routerInputId("routerInputId")
         .build();
 
  • Method Details

    • getRouterInputArn

      @Stability(Experimental) @NotNull String getRouterInputArn()
      (experimental) The Amazon Resource Name (ARN) of the router input.
    • getIpAddress

      @Stability(Experimental) @Nullable default String getIpAddress()
      (experimental) The IP address that the router input uses to ingest content.

      Default: - accessing `ipAddress` on the imported input throws; only provide when available.

    • getRouterInputId

      @Stability(Experimental) @Nullable default String getRouterInputId()
      (experimental) The unique identifier of the router input.

      Default: - accessing `routerInputId` on the imported input throws; only provide when available.

    • builder

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