BridgeNetworkInput

class aws_cdk.aws_mediaconnect_alpha.BridgeNetworkInput(*, name, source)

Bases: object

(experimental) A named network source for an ingress bridge.

Parameters:
  • name (str) – (experimental) The name of the network source. Must be unique among sources on the bridge.

  • source (Union[BridgeNetworkSource, Dict[str, Any]]) – (experimental) The network source configuration describing the multicast endpoint the bridge listens to.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_mediaconnect_alpha as mediaconnect_alpha

# bridge_protocol: mediaconnect_alpha.BridgeProtocol
# gateway_network: mediaconnect_alpha.GatewayNetwork

bridge_network_input = mediaconnect_alpha.BridgeNetworkInput(
    name="name",
    source=mediaconnect_alpha.BridgeNetworkSource(
        multicast_ip="multicastIp",
        network=gateway_network,
        port=123,
        protocol=bridge_protocol,

        # the properties below are optional
        multicast_source_ip="multicastSourceIp"
    )
)

Attributes

name

(experimental) The name of the network source.

Must be unique among sources on the bridge.

Stability:

experimental

source

(experimental) The network source configuration describing the multicast endpoint the bridge listens to.

Stability:

experimental