BridgeNetworkOutput

class aws_cdk.aws_mediaconnect_alpha.BridgeNetworkOutput(*, name, output)

Bases: object

(experimental) A named network output for an egress bridge.

Parameters:
  • name (str) – (experimental) The name of the network output. Must be unique among outputs on the bridge. Used as the physical name of the underlying CFN resource.

  • output (BridgeOutputConfiguration) – (experimental) The network configuration describing where this output sends content.

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_output_configuration: mediaconnect_alpha.BridgeOutputConfiguration

bridge_network_output = mediaconnect_alpha.BridgeNetworkOutput(
    name="name",
    output=bridge_output_configuration
)

Attributes

name

(experimental) The name of the network output. Must be unique among outputs on the bridge.

Used as the physical name of the underlying CFN resource.

Stability:

experimental

output

(experimental) The network configuration describing where this output sends content.

Stability:

experimental