Interface CfnMultiplexprogram.MultiplexVideoSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMultiplexprogram.MultiplexVideoSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnMultiplexprogram
@Stability(Stable)
public static interface CfnMultiplexprogram.MultiplexVideoSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The video configuration for each program in a multiplex.
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.*; MultiplexVideoSettingsProperty multiplexVideoSettingsProperty = MultiplexVideoSettingsProperty.builder() .constantBitrate(123) .statmuxSettings(MultiplexStatmuxVideoSettingsProperty.builder() .maximumBitrate(123) .minimumBitrate(123) .priority(123) .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMultiplexprogram.MultiplexVideoSettingsProperty
static final class
An implementation forCfnMultiplexprogram.MultiplexVideoSettingsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstantBitrate
The constant bitrate configuration for the video encode.When this field is defined, StatmuxSettings must be undefined.
- See Also:
-
getStatmuxSettings
Statmux rate control settings.When this field is defined, ConstantBitrate must be undefined.
- See Also:
-
builder
-