@Stability(value=Stable)
public static interface CfnChannel.FailoverConditionSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.FailoverConditionSettingsProperty.Builder
A builder for
CfnChannel.FailoverConditionSettingsProperty |
static class |
CfnChannel.FailoverConditionSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.FailoverConditionSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.FailoverConditionSettingsProperty.Builder |
builder() |
default Object |
getAudioSilenceSettings()
MediaLive will perform a failover if the specified audio selector is silent for the specified period.
|
default Object |
getInputLossSettings()
MediaLive will perform a failover if content is not detected in this input for the specified period.
|
default Object |
getVideoBlackSettings()
MediaLive will perform a failover if content is considered black for the specified period.
|
@Stability(value=Stable) @Nullable default Object getAudioSilenceSettings()
@Stability(value=Stable) @Nullable default Object getInputLossSettings()
@Stability(value=Stable) @Nullable default Object getVideoBlackSettings()
@Stability(value=Stable) static CfnChannel.FailoverConditionSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.