interface InputLossFailoverSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.InputLossFailoverSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_InputLossFailoverSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.InputLossFailoverSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.InputLossFailoverSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » 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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const inputLossFailoverSettingsProperty: medialive_mixins.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