Class BridgeSource
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();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class(experimental) A fluent builder forBridgeSource.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.mediaconnect.alpha.IBridgeSource
IBridgeSource.Jsii$Default, IBridgeSource.Jsii$ProxyNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String(experimental) Uniquely identifies this class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedBridgeSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedBridgeSource(software.amazon.jsii.JsiiObjectRef objRef) BridgeSource(software.constructs.Construct scope, String id, BridgeSourceProps props) -
Method Summary
Modifier and TypeMethodDescription(experimental) The Amazon Resource Name (ARN) of the bridge that owns this source.(experimental) The name of the bridge source.(experimental) A reference to this BridgeSource resource.Methods inherited from class software.amazon.awscdk.Resource
applyCrossStackReferenceStrength, applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResource, withMethods inherited from class software.constructs.Construct
getNode, isConstruct, toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNode, withMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getStackMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
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
(experimental) The Amazon Resource Name (ARN) of the bridge that owns this source.- Specified by:
getBridgeArnin interfaceIBridgeSource
-
getBridgeSourceName
(experimental) The name of the bridge source.- Specified by:
getBridgeSourceNamein interfaceIBridgeSource
-
getBridgeSourceRef
(experimental) A reference to this BridgeSource resource.- Specified by:
getBridgeSourceRefin interfaceIBridgeSourceRef
-