interface InputLossFailoverProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.InputLossFailoverProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#InputLossFailoverProps |
Java | software.amazon.awscdk.services.medialive.alpha.InputLossFailoverProps |
Python | aws_cdk.aws_medialive_alpha.InputLossFailoverProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป InputLossFailoverProps |
Properties for an input-loss failover condition.
Example
declare const stack: Stack;
declare const primaryInput: medialive.IInput;
declare const secondaryInput: medialive.IInput;
declare const audioSelector: medialive.AudioSelector;
declare const video: medialive.EncodeConfiguration;
declare const audio: medialive.EncodeConfiguration;
declare const bucket: s3.IBucket;
new medialive.Channel(stack, 'Channel', {
inputs: [{
input: primaryInput,
automaticInputFailover: {
secondaryInput,
inputPreference: medialive.InputPreference.PRIMARY_INPUT_PREFERRED,
errorClearTime: Duration.seconds(3),
failoverConditions: [
medialive.FailoverCondition.inputLoss({ threshold: Duration.millis(1500) }),
medialive.FailoverCondition.audioSilence({ audioSelector, threshold: Duration.seconds(2) }),
medialive.FailoverCondition.videoBlack({ blackDetectThreshold: 0.1, threshold: Duration.seconds(1) }),
],
},
}, {
// The secondary input must also be attached to the channel as its own input.
input: secondaryInput,
}],
outputGroups: [
medialive.OutputGroupConfiguration.hls({
name: 'hls',
destinations: [medialive.OutputDestination.toBucket(bucket, 'live/stream')],
outputs: [{ encodes: [video, audio], outputName: 'hls_out' }],
}),
],
});
Properties
| Name | Type | Description |
|---|---|---|
| threshold? | Duration | The amount of time with no input detected before failover occurs. |
threshold?
Type:
Duration
(optional, default: MediaLive service default)
The amount of time with no input detected before failover occurs.

.NET
Go
Java
Python
TypeScript (