Interface CfnBridge.FailoverConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBridge.FailoverConfigProperty.Jsii$Proxy
- Enclosing class:
CfnBridge
@Stability(Stable)
public static interface CfnBridge.FailoverConfigProperty
extends software.amazon.jsii.JsiiSerializable
The settings for source failover.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.mediaconnect.*; FailoverConfigProperty failoverConfigProperty = FailoverConfigProperty.builder() .failoverMode("failoverMode") // the properties below are optional .sourcePriority(SourcePriorityProperty.builder() .primarySource("primarySource") .build()) .state("state") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBridge.FailoverConfigProperty
static final class
An implementation forCfnBridge.FailoverConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFailoverMode
The type of failover you choose for this flow.MERGE combines the source streams into a single stream, allowing graceful recovery from any single-source loss. FAILOVER allows switching between different streams.
- See Also:
-
getSourcePriority
The priority you want to assign to a source.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.
- See Also:
-
getState
The state of source failover on the flow.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 Also:
-
builder
-