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();
 
  • Method Details

    • getPrimarySource

      @Stability(Experimental) @Nullable default String 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

      @Stability(Experimental) @Nullable default State getState()
      (experimental) Whether failover is enabled.

      Set to State.DISABLED to keep the configuration on the bridge without switching failover on.

      Default: State.ENABLED

    • builder

      @Stability(Experimental) static BridgeFailoverOptions.Builder builder()
      Returns:
      a BridgeFailoverOptions.Builder of BridgeFailoverOptions