java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.mediaconnect.alpha.BridgeSource
All Implemented Interfaces:
IEnvironmentAware, IBridgeSourceRef, IResource, IBridgeSource, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.136Z") @Stability(Experimental) public class BridgeSource extends Resource implements IBridgeSource
(experimental) Adds sources to an existing bridge.

Example:

 Stack stack;
 Bridge bridge;
 Flow flow;
 // Add a flow source to an egress bridge (requires failover to be enabled)
 BridgeSource additionalSource = BridgeSource.Builder.create(stack, "AdditionalSource")
         .bridgeSourceName("backup-source")
         .bridge(bridge)
         .source(BridgeSourceConfiguration.flow(BridgeFlowSource.builder()
                 .flow(flow)
                 .build()))
         .build();
 
  • Field Details

    • PROPERTY_INJECTION_ID

      @Stability(Experimental) public static final String PROPERTY_INJECTION_ID
      (experimental) Uniquely identifies this class.
  • Constructor Details

    • BridgeSource

      protected BridgeSource(software.amazon.jsii.JsiiObjectRef objRef)
    • BridgeSource

      protected BridgeSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • BridgeSource

      @Stability(Experimental) public BridgeSource(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull BridgeSourceProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
  • Method Details

    • getBridgeArn

      @Stability(Experimental) @NotNull public String getBridgeArn()
      (experimental) The Amazon Resource Name (ARN) of the bridge that owns this source.
      Specified by:
      getBridgeArn in interface IBridgeSource
    • getBridgeSourceName

      @Stability(Experimental) @NotNull public String getBridgeSourceName()
      (experimental) The name of the bridge source.
      Specified by:
      getBridgeSourceName in interface IBridgeSource
    • getBridgeSourceRef

      @Stability(Experimental) @NotNull public BridgeSourceReference getBridgeSourceRef()
      (experimental) A reference to this BridgeSource resource.
      Specified by:
      getBridgeSourceRef in interface IBridgeSourceRef