Interface MediaStreamSourceConfigurationCdi
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MediaStreamSourceConfigurationCdi.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.186Z")
@Stability(Experimental)
public interface MediaStreamSourceConfigurationCdi
extends software.amazon.jsii.JsiiSerializable
(experimental) Options for Media Stream Source Configuration.
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.mediaconnect.alpha.*;
Encoding encoding;
MediaStream mediaStream;
MediaStreamSourceConfigurationCdi mediaStreamSourceConfigurationCdi = MediaStreamSourceConfigurationCdi.builder()
.encoding(encoding)
.mediaStream(mediaStream)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMediaStreamSourceConfigurationCdistatic final classAn implementation forMediaStreamSourceConfigurationCdi -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) The format that was used to encode the data.(experimental) The name of the media stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncoding
(experimental) The format that was used to encode the data.For ancillary data streams, set the encoding name to smpte291. If the encoding name is smpte291, set the color space to one of the following: BT601, BT709, BT2020, or BT2100. For all other ancillary data streams, set the color space to SDR-NOCOLOR.
-
getMediaStream
(experimental) The name of the media stream. -
builder
-