Interface CfnFlow.FmtpProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.FmtpProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.FmtpProperty
extends software.amazon.jsii.JsiiSerializable
A set of parameters that define 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.*; FmtpProperty fmtpProperty = FmtpProperty.builder() .channelOrder("channelOrder") .colorimetry("colorimetry") .exactFramerate("exactFramerate") .par("par") .range("range") .scanMode("scanMode") .tcs("tcs") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlow.FmtpProperty
static final class
An implementation forCfnFlow.FmtpProperty
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFlow.FmtpProperty.Builder
builder()
default String
The format of the audio channel.default String
The format used for the representation of color.default String
The frame rate for the video stream, in frames/second.default String
getPar()
The pixel aspect ratio (PAR) of the video.default String
getRange()
The encoding range of the video.default String
The type of compression that was used to smooth the video’s appearance.default String
getTcs()
The transfer characteristic system (TCS) that is used in the video.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannelOrder
The format of the audio channel.- See Also:
-
getColorimetry
The format used for the representation of color.- See Also:
-
getExactFramerate
The frame rate for the video stream, in frames/second.For example: 60000/1001.
- See Also:
-
getPar
The pixel aspect ratio (PAR) of the video.- See Also:
-
getRange
The encoding range of the video.- See Also:
-
getScanMode
The type of compression that was used to smooth the video’s appearance.- See Also:
-
getTcs
The transfer characteristic system (TCS) that is used in the video.- See Also:
-
builder
- Returns:
- a
CfnFlow.FmtpProperty.Builder
ofCfnFlow.FmtpProperty
-