Class InputNetworkLocation

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:41.197Z") @Stability(Experimental) public class InputNetworkLocation extends software.amazon.jsii.JsiiObject
(experimental) The network location of a MediaLive input — the AWS cloud, or an on-premises network for MediaLive Anywhere.

Example:

 Stack stack;
 Network network = Network.Builder.create(stack, "Network")
         .networkName("on-prem-network")
         .ipPools(List.of("192.168.1.0/24"))
         .build();
 Input.Builder.create(stack, "OnPremInput")
         .inputName("on-prem-rtp")
         .inputNetworkLocation(InputNetworkLocation.ON_PREMISES)
         .input(InputConfiguration.rtpPush(PushInputProps.builder()
                 .destinations(List.of(PushInputDestination.builder()
                         .network(network)
                         .networkRoutes(List.of(NetworkRoute.builder().cidr("10.0.0.0/24").gateway("10.0.0.1").build()))
                         .staticIpAddress("192.168.1.50")
                         .build()))
                 .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
    (experimental) The input exists in the AWS cloud (the default).
    (experimental) The input exists in an on-premises network (MediaLive Anywhere).
  • Constructor Summary

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

    Modifier and Type
    Method
    Description
    (experimental) The underlying string value passed to CloudFormation.
    of(String value)
    (experimental) A value not yet modelled by AWS CDK.

    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, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Field Details

    • AWS

      @Stability(Experimental) public static final InputNetworkLocation AWS
      (experimental) The input exists in the AWS cloud (the default).
    • ON_PREMISES

      @Stability(Experimental) public static final InputNetworkLocation ON_PREMISES
      (experimental) The input exists in an on-premises network (MediaLive Anywhere).
  • Constructor Details

    • InputNetworkLocation

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

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

    • of

      @Stability(Experimental) @NotNull public static InputNetworkLocation of(@NotNull String value)
      (experimental) A value not yet modelled by AWS CDK.

      Parameters:
      value - This parameter is required.
    • getValue

      @Stability(Experimental) @NotNull public String getValue()
      (experimental) The underlying string value passed to CloudFormation.