Show / Hide Table of Contents

Class CfnBridge.FailoverConfigProperty

The settings for source failover.

Inheritance
object
CfnBridge.FailoverConfigProperty
Implements
CfnBridge.IFailoverConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridge-failoverconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridge-failoverconfig.html

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

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridge-failoverconfig.html#cfn-mediaconnect-bridge-failoverconfig-failovermode

SourcePriority

The priority you want to assign to a source.

public object? SourcePriority { get; set; }
Property Value

object

Remarks

You can have a primary stream and a backup stream or two equally prioritized streams.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridge-failoverconfig.html#cfn-mediaconnect-bridge-failoverconfig-sourcepriority

State

The state of source failover on the flow.

public string? State { get; set; }
Property Value

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridge-failoverconfig.html#cfn-mediaconnect-bridge-failoverconfig-state

Implements

CfnBridge.IFailoverConfigProperty
Back to top Generated by DocFX