BridgeSourceProps

class aws_cdk.aws_mediaconnect_alpha.BridgeSourceProps(*, bridge, source, bridge_source_name=None)

Bases: object

(experimental) Properties for the bridge source.

Parameters:
  • bridge (IBridge) – (experimental) The bridge to add this source to.

  • source (BridgeSourceConfiguration) – (experimental) Configuration for Bridge Source Input.

  • bridge_source_name (Optional[str]) – (experimental) Name of the bridge source. Default: - autogenerated

Stability:

experimental

ExampleMetadata:

infused

Example:

# stack: Stack
# bridge: Bridge
# flow: Flow


# Add a flow source to an egress bridge (requires failover to be enabled)
additional_source = BridgeSource(stack, "AdditionalSource",
    bridge_source_name="backup-source",
    bridge=bridge,
    source=BridgeSourceConfiguration.flow(
        flow=flow
    )
)

Attributes

bridge

(experimental) The bridge to add this source to.

Stability:

experimental

bridge_source_name

(experimental) Name of the bridge source.

Default:
  • autogenerated

Stability:

experimental

source

(experimental) Configuration for Bridge Source Input.

Stability:

experimental