Class InputSpecification
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.medialive.alpha.InputSpecification
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.203Z")
@Stability(Experimental)
public abstract class InputSpecification
extends software.amazon.jsii.JsiiObject
(experimental) The input specification for a channel.
Use the static factory methods to select the input type — mirroring the console's "Other" / "CDI" / "Elemental Link" choice.
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.medialive.alpha.*;
CdiInputResolution cdiInputResolution;
InputCodec inputCodec;
InputMaximumBitrate inputMaximumBitrate;
InputResolution inputResolution;
InputSpecification inputSpecification = InputSpecification.cdi(CdiInputSpecificationProps.builder()
.cdiResolution(cdiInputResolution)
.codec(inputCodec)
.maximumBitrate(inputMaximumBitrate)
.resolution(inputResolution)
.build());
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedprotectedInputSpecification(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedInputSpecification(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionstatic InputSpecificationcdi()(experimental) CDI (uncompressed) inputs.static InputSpecificationcdi(CdiInputSpecificationProps props) (experimental) CDI (uncompressed) inputs.static InputSpecification(experimental) Elemental Link inputs.static InputSpecificationstandard()(experimental) Standard inputs ("Other" in the console) — the most common case.static InputSpecification(experimental) Standard inputs ("Other" in the console) — the most common case.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
-
Constructor Details
-
InputSpecification
protected InputSpecification(software.amazon.jsii.JsiiObjectRef objRef) -
InputSpecification
protected InputSpecification(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
InputSpecification
@Stability(Experimental) protected InputSpecification()
-
-
Method Details
-
cdi
@Stability(Experimental) @NotNull public static InputSpecification cdi(@Nullable CdiInputSpecificationProps props) (experimental) CDI (uncompressed) inputs.Adds the maximum CDI input resolution.
- Parameters:
props-
-
cdi
(experimental) CDI (uncompressed) inputs.Adds the maximum CDI input resolution.
-
elementalLink
(experimental) Elemental Link inputs.No additional specification is required.
-
standard
@Stability(Experimental) @NotNull public static InputSpecification standard(@Nullable StandardInputSpecificationProps props) (experimental) Standard inputs ("Other" in the console) — the most common case.- Parameters:
props-
-
standard
(experimental) Standard inputs ("Other" in the console) — the most common case.
-