Interface Smpte2110InputProps

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:41.334Z") @Stability(Experimental) public interface Smpte2110InputProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for a SMPTE 2110 receiver group input. Requires anywhereSettings on the channel.

You specify the SDP files that describe the streams to ingest — one video SDP, and any number of audio and ancillary SDPs.

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.*;
 Smpte2110InputProps smpte2110InputProps = Smpte2110InputProps.builder()
         .ancillarySdps(List.of(Smpte2110SdpLocation.builder()
                 .sdpUrl("sdpUrl")
                 // the properties below are optional
                 .mediaIndex(123)
                 .build()))
         .audioSdps(List.of(Smpte2110SdpLocation.builder()
                 .sdpUrl("sdpUrl")
                 // the properties below are optional
                 .mediaIndex(123)
                 .build()))
         .videoSdp(Smpte2110SdpLocation.builder()
                 .sdpUrl("sdpUrl")
                 // the properties below are optional
                 .mediaIndex(123)
                 .build())
         .build();
 
  • Method Details

    • getAncillarySdps

      @Stability(Experimental) @Nullable default List<Smpte2110SdpLocation> getAncillarySdps()
      (experimental) The SDPs describing the ancillary data streams (SCTE-35 or captions).

      Up to 50.

      Default: - no ancillary data streams

    • getAudioSdps

      @Stability(Experimental) @Nullable default List<Smpte2110SdpLocation> getAudioSdps()
      (experimental) The SDPs describing the audio streams.

      Up to 50.

      Default: - no audio streams

    • getVideoSdp

      @Stability(Experimental) @Nullable default Smpte2110SdpLocation getVideoSdp()
      (experimental) The SDP describing the video stream.

      Default: - no video stream

    • builder

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