interface FailoverConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.FailoverConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_FailoverConditionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.FailoverConditionProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.FailoverConditionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnChannelPropsMixin » FailoverConditionProperty |
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 { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const failoverConditionProperty: medialive.CfnChannelPropsMixin.FailoverConditionProperty = {
failoverConditionSettings: {
audioSilenceSettings: {
audioSelectorName: 'audioSelectorName',
audioSilenceThresholdMsec: 123,
},
inputLossSettings: {
inputLossThresholdMsec: 123,
},
videoBlackSettings: {
blackDetectThreshold: 123,
videoBlackThresholdMsec: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| failover | IResolvable | Failover | Settings for a specific failover condition. |
failoverConditionSettings?
Type:
IResolvable | Failover
(optional)
Settings for a specific failover condition.

.NET
Go
Java
Python
TypeScript