Interface BridgeAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
BridgeAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.130Z") @Stability(Experimental) public interface BridgeAttributes extends software.amazon.jsii.JsiiSerializable
(experimental) Attributes for importing an existing Bridge.

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.*;
 BridgeType bridgeType;
 BridgeAttributes bridgeAttributes = BridgeAttributes.builder()
         .bridgeArn("bridgeArn")
         // the properties below are optional
         .bridgeName("bridgeName")
         .bridgeType(bridgeType)
         .isFailoverEnabled(false)
         .build();
 
  • Method Details

    • getBridgeArn

      @Stability(Experimental) @NotNull String getBridgeArn()
      (experimental) The ARN of the bridge.
    • getBridgeName

      @Stability(Experimental) @Nullable default String getBridgeName()
      (experimental) The name of the bridge.

      Not encoded in the bridge ARN, so must be provided explicitly if the imported bridge needs to expose bridgeName.

      Default: - bridgeName is not available on the imported construct

    • getBridgeType

      @Stability(Experimental) @Nullable default BridgeType getBridgeType()
      (experimental) Indicates what type of bridge is imported.

      Not encoded in the bridge ARN, so must be provided explicitly if the imported bridge is used with addOutput() or other methods that need the bridge type.

      Default: - bridgeType is not available on the imported construct

    • getIsFailoverEnabled

      @Stability(Experimental) @Nullable default Boolean getIsFailoverEnabled()
      (experimental) Failover Configuration for Bridge.

      Default: false

    • builder

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