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
FieldsModifier and TypeFieldDescriptionstatic final InputNetworkLocation(experimental) The input exists in the AWS cloud (the default).static final InputNetworkLocation(experimental) The input exists in an on-premises network (MediaLive Anywhere). -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedInputNetworkLocation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedInputNetworkLocation(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptiongetValue()(experimental) The underlying string value passed to CloudFormation.static InputNetworkLocation(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, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
AWS
(experimental) The input exists in the AWS cloud (the default). -
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
(experimental) A value not yet modelled by AWS CDK.- Parameters:
value- This parameter is required.
-
getValue
(experimental) The underlying string value passed to CloudFormation.
-