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());
 
  • 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

      @Stability(Experimental) @NotNull public static InputSpecification cdi()
      (experimental) CDI (uncompressed) inputs.

      Adds the maximum CDI input resolution.

    • elementalLink

      @Stability(Experimental) @NotNull public static InputSpecification 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

      @Stability(Experimental) @NotNull public static InputSpecification standard()
      (experimental) Standard inputs ("Other" in the console) — the most common case.