Interface Smpte2110SdpLocation
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Smpte2110SdpLocation.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.335Z")
@Stability(Experimental)
public interface Smpte2110SdpLocation
extends software.amazon.jsii.JsiiSerializable
(experimental) A reference to an SDP file that describes a SMPTE 2110 stream to ingest.
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.*;
Smpte2110SdpLocation smpte2110SdpLocation = Smpte2110SdpLocation.builder()
.sdpUrl("sdpUrl")
// the properties below are optional
.mediaIndex(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSmpte2110SdpLocationstatic final classAn implementation forSmpte2110SdpLocation -
Method Summary
Modifier and TypeMethodDescriptionstatic Smpte2110SdpLocation.Builderbuilder()default Number(experimental) The index of the media stream within the SDP to ingest.(experimental) The URL of the SDP file.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSdpUrl
(experimental) The URL of the SDP file. -
getMediaIndex
(experimental) The index of the media stream within the SDP to ingest.Use when the SDP describes more than one stream of that media type.
Default: - service default
-
builder
- Returns:
- a
Smpte2110SdpLocation.BuilderofSmpte2110SdpLocation
-