aws-cdk-lib.aws_medialive.CfnChannel.FailoverConditionSettingsProperty

interface FailoverConditionSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.FailoverConditionSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_FailoverConditionSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.FailoverConditionSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.FailoverConditionSettingsProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » FailoverConditionSettingsProperty

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 { aws_medialive as medialive } from 'aws-cdk-lib';
const failoverConditionSettingsProperty: medialive.CfnChannel.FailoverConditionSettingsProperty = {
  audioSilenceSettings: {
    audioSelectorName: 'audioSelectorName',
    audioSilenceThresholdMsec: 123,
  },
  inputLossSettings: {
    inputLossThresholdMsec: 123,
  },
  videoBlackSettings: {
    blackDetectThreshold: 123,
    videoBlackThresholdMsec: 123,
  },
};

Properties

NameTypeDescription
audioSilenceSettings?IResolvable | AudioSilenceFailoverSettingsPropertyMediaLive will perform a failover if the specified audio selector is silent for the specified period.
inputLossSettings?IResolvable | InputLossFailoverSettingsPropertyMediaLive will perform a failover if content is not detected in this input for the specified period.
videoBlackSettings?IResolvable | VideoBlackFailoverSettingsPropertyMediaLive will perform a failover if content is considered black for the specified period.

audioSilenceSettings?

Type: IResolvable | AudioSilenceFailoverSettingsProperty (optional)

MediaLive will perform a failover if the specified audio selector is silent for the specified period.


inputLossSettings?

Type: IResolvable | InputLossFailoverSettingsProperty (optional)

MediaLive will perform a failover if content is not detected in this input for the specified period.


videoBlackSettings?

Type: IResolvable | VideoBlackFailoverSettingsProperty (optional)

MediaLive will perform a failover if content is considered black for the specified period.