Interface CfnFlow.MediaStreamAttributesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlow.MediaStreamAttributesProperty.Jsii$Proxy
Enclosing class:
CfnFlow

@Stability(Stable) public static interface CfnFlow.MediaStreamAttributesProperty extends software.amazon.jsii.JsiiSerializable
Attributes that are related to the media stream.

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.*;
 MediaStreamAttributesProperty mediaStreamAttributesProperty = MediaStreamAttributesProperty.builder()
         .fmtp(FmtpProperty.builder()
                 .channelOrder("channelOrder")
                 .colorimetry("colorimetry")
                 .exactFramerate("exactFramerate")
                 .par("par")
                 .range("range")
                 .scanMode("scanMode")
                 .tcs("tcs")
                 .build())
         .lang("lang")
         .build();
 

See Also: