Class CfnBridge.FailoverConfigProperty
The settings for source failover.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FailoverConfigProperty : Object, CfnBridge.IFailoverConfigProperty
Syntax (vb)
Public Class FailoverConfigProperty
Inherits Object
Implements CfnBridge.IFailoverConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaConnect;
var failoverConfigProperty = new FailoverConfigProperty {
FailoverMode = "failoverMode",
// the properties below are optional
SourcePriority = new SourcePriorityProperty {
PrimarySource = "primarySource"
},
State = "state"
};
Synopsis
Constructors
FailoverConfigProperty() |
Properties
FailoverMode | The type of failover you choose for this flow. |
SourcePriority | The priority you want to assign to a source. |
State | The state of source failover on the flow. |
Constructors
FailoverConfigProperty()
public FailoverConfigProperty()
Properties
FailoverMode
The type of failover you choose for this flow.
public string FailoverMode { get; set; }
Property Value
System.String
Remarks
MERGE combines the source streams into a single stream, allowing graceful recovery from any single-source loss. FAILOVER allows switching between different streams.
SourcePriority
The priority you want to assign to a source.
public object SourcePriority { get; set; }
Property Value
System.Object
Remarks
You can have a primary stream and a backup stream or two equally prioritized streams. This setting only applies when Failover Mode is set to FAILOVER.
State
The state of source failover on the flow.
public string State { get; set; }
Property Value
System.String
Remarks
If the state is inactive, the flow can have only one source. If the state is active, the flow can have one or two sources.