Interface CfnChannel.FailoverConditionSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.FailoverConditionSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.FailoverConditionSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Settings for one failover condition.
The parent of this entity is FailoverCondition.
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.*; FailoverConditionSettingsProperty failoverConditionSettingsProperty = FailoverConditionSettingsProperty.builder() .audioSilenceSettings(AudioSilenceFailoverSettingsProperty.builder() .audioSelectorName("audioSelectorName") .audioSilenceThresholdMsec(123) .build()) .inputLossSettings(InputLossFailoverSettingsProperty.builder() .inputLossThresholdMsec(123) .build()) .videoBlackSettings(VideoBlackFailoverSettingsProperty.builder() .blackDetectThreshold(123) .videoBlackThresholdMsec(123) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.FailoverConditionSettingsProperty
static final class
An implementation forCfnChannel.FailoverConditionSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
MediaLive will perform a failover if the specified audio selector is silent for the specified period.default Object
MediaLive will perform a failover if content is not detected in this input for the specified period.default Object
MediaLive will perform a failover if content is considered black for the specified period.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAudioSilenceSettings
MediaLive will perform a failover if the specified audio selector is silent for the specified period.- See Also:
-
getInputLossSettings
MediaLive will perform a failover if content is not detected in this input for the specified period.- See Also:
-
getVideoBlackSettings
MediaLive will perform a failover if content is considered black for the specified period.- See Also:
-
builder
-