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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSmpte2110InputPropsstatic final classAn implementation forSmpte2110InputProps -
Method Summary
Modifier and TypeMethodDescriptionstatic Smpte2110InputProps.Builderbuilder()default List<Smpte2110SdpLocation> (experimental) The SDPs describing the ancillary data streams (SCTE-35 or captions).default List<Smpte2110SdpLocation> (experimental) The SDPs describing the audio streams.default Smpte2110SdpLocation(experimental) The SDP describing the video stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAncillarySdps
(experimental) The SDPs describing the ancillary data streams (SCTE-35 or captions).Up to 50.
Default: - no ancillary data streams
-
getAudioSdps
(experimental) The SDPs describing the audio streams.Up to 50.
Default: - no audio streams
-
getVideoSdp
(experimental) The SDP describing the video stream.Default: - no video stream
-
builder
- Returns:
- a
Smpte2110InputProps.BuilderofSmpte2110InputProps
-