Interface CfnFlow.EncodingConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.EncodingConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.EncodingConfigProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
EncodingConfigProperty encodingConfigProperty = EncodingConfigProperty.builder()
.encodingProfile("encodingProfile")
.videoMaxBitrate(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlow.EncodingConfigPropertystatic final classAn implementation forCfnFlow.EncodingConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncodingProfile
The encoding profile to use when transcoding the NDI source to a Transport Stream.You can change this value while a flow is running.
- See Also:
-
getVideoMaxBitrate
The maximum video bitrate to use when transcoding the NDI source to a Transport Stream.This parameter enables you to override the default video bitrate within the encoding profile's supported range. The supported range is 10,000,000 - 50,000,000 bits per second (bps). If you do not specify a value, MediaConnect uses the default value of 20,000,000 bps.
- See Also:
-
builder
-