Interface CfnChannel.InputSwitchConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.InputSwitchConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.InputSwitchConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.
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.mediapackagev2.*;
InputSwitchConfigurationProperty inputSwitchConfigurationProperty = InputSwitchConfigurationProperty.builder()
.mqcsInputSwitching(false)
.preferredInput(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.InputSwitchConfigurationPropertystatic final classAn implementation forCfnChannel.InputSwitchConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMqcsInputSwitching
When true, AWS Elemental MediaPackage performs input switching based on the MQCS.Default is false. This setting is valid only when
InputTypeisCMAF.Returns union: either
BooleanorIResolvable- See Also:
-
getPreferredInput
For CMAF inputs, indicates which input MediaPackage should prefer when both inputs have equal MQCS scores.Select
1to prefer the first ingest endpoint, or2to prefer the second ingest endpoint. If you don't specify a preferred input, MediaPackage uses its default switching behavior when MQCS scores are equal.- See Also:
-
builder
-