interface MergeFailoverOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.MergeFailoverOptions |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#MergeFailoverOptions |
Java | software.amazon.awscdk.services.mediaconnect.alpha.MergeFailoverOptions |
Python | aws_cdk.aws_mediaconnect_alpha.MergeFailoverOptions |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป MergeFailoverOptions |
Options for merge-mode source failover.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
import * as cdk from 'aws-cdk-lib';
const mergeFailoverOptions: mediaconnect_alpha.MergeFailoverOptions = {
recoveryWindow: cdk.Duration.minutes(30),
state: mediaconnect_alpha.State.ENABLED,
};
Properties
| Name | Type | Description |
|---|---|---|
| recovery | Duration | Search window time to look for SMPTE 2022-7 packets. |
| state? | State | Whether failover is enabled. |
recoveryWindow?
Type:
Duration
(optional, default: 200 ms)
Search window time to look for SMPTE 2022-7 packets.
A larger recovery window means a longer delay in transmitting the stream, but more room for error correction. A smaller window means a shorter delay but less room for correction.
Valid range: 100โ15000 ms.
state?
Type:
State
(optional, default: State.ENABLED)
Whether failover is enabled.
Set to State.DISABLED to keep the configuration
on the flow without switching failover on.

.NET
Go
Java
Python
TypeScript (