Class CfnBridge.FailoverConfigProperty
The settings for source failover.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBridge.FailoverConfigProperty : CfnBridge.IFailoverConfigProperty
Syntax (vb)
Public Class CfnBridge.FailoverConfigProperty 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() | The settings for source failover. |
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()
The settings for source failover.
public FailoverConfigProperty()
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"
};
Properties
FailoverMode
The type of failover you choose for this flow.
public string FailoverMode { get; set; }
Property Value
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
Remarks
You can have a primary stream and a backup stream or two equally prioritized streams.
State
The state of source failover on the flow.
public string? State { get; set; }
Property Value
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.