Interface BridgeFailoverOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BridgeFailoverOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.131Z")
@Stability(Experimental)
public interface BridgeFailoverOptions
extends software.amazon.jsii.JsiiSerializable
(experimental) Options for bridge 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.alpha.*;
BridgeFailoverOptions bridgeFailoverOptions = BridgeFailoverOptions.builder()
.primarySource("primarySource")
.state(State.ENABLED)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBridgeFailoverOptionsstatic final classAn implementation forBridgeFailoverOptions -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPrimarySource
(experimental) The name of the source you want to treat as primary.If set, MediaConnect always uses this source when it is available. When unset, both sources are treated with equal priority.
Default: - both sources are equal priority
-
getState
(experimental) Whether failover is enabled.Set to
State.DISABLEDto keep the configuration on the bridge without switching failover on.Default: State.ENABLED
-
builder
- Returns:
- a
BridgeFailoverOptions.BuilderofBridgeFailoverOptions
-