interface InputLossFailoverSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.InputLossFailoverSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_InputLossFailoverSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.InputLossFailoverSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.InputLossFailoverSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnChannelPropsMixin » InputLossFailoverSettingsProperty |
MediaLive will perform a failover if content is not detected in this input for the specified period.
The parent of this entity is FailoverConditionSettings.
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 inputLossFailoverSettingsProperty: medialive.CfnChannelPropsMixin.InputLossFailoverSettingsProperty = {
inputLossThresholdMsec: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| input | number | The amount of time (in milliseconds) that no input is detected. |
inputLossThresholdMsec?
Type:
number
(optional)
The amount of time (in milliseconds) that no input is detected.
After that time, an input failover will occur.

.NET
Go
Java
Python
TypeScript