Interface CfnChannel.FailoverConditionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.FailoverConditionProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.FailoverConditionProperty extends software.amazon.jsii.JsiiSerializable
Failover Condition settings. There can be multiple failover conditions inside AutomaticInputFailoverSettings.

The parent of this entity is AutomaticInputFailoverSettings.

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.*;
 FailoverConditionProperty failoverConditionProperty = FailoverConditionProperty.builder()
         .failoverConditionSettings(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())
         .build();
 

See Also: