interface FailoverConditionSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.FailoverConditionSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_FailoverConditionSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.FailoverConditionSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.FailoverConditionSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » 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 { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const failoverConditionSettingsProperty: medialive.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