interface FailoverConditionSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.FailoverConditionSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_FailoverConditionSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.FailoverConditionSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.FailoverConditionSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » 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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const failoverConditionSettingsProperty: medialive_mixins.CfnChannelPropsMixin.FailoverConditionSettingsProperty = {
audioSilenceSettings: {
audioSelectorName: 'audioSelectorName',
audioSilenceThresholdMsec: 123,
},
inputLossSettings: {
inputLossThresholdMsec: 123,
},
videoBlackSettings: {
blackDetectThreshold: 123,
videoBlackThresholdMsec: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| audio | IResolvable | Audio | MediaLive will perform a failover if the specified audio selector is silent for the specified period. |
| input | IResolvable | Input | MediaLive will perform a failover if content is not detected in this input for the specified period. |
| video | IResolvable | Video | MediaLive will perform a failover if content is considered black for the specified period. |
audioSilenceSettings?
Type:
IResolvable | Audio
(optional)
MediaLive will perform a failover if the specified audio selector is silent for the specified period.
inputLossSettings?
Type:
IResolvable | Input
(optional)
MediaLive will perform a failover if content is not detected in this input for the specified period.
videoBlackSettings?
Type:
IResolvable | Video
(optional)
MediaLive will perform a failover if content is considered black for the specified period.

.NET
Go
Java
Python
TypeScript