TransportOutputDestinationProps

class aws_cdk.aws_medialive_alpha.TransportOutputDestinationProps(*, address, port)

Bases: object

(experimental) A destination address (IP or host) and port for a transport-stream output.

Parameters:
  • address (str) – (experimental) The destination address — a unicast or multicast IP, or a hostname.

  • port (Union[int, float]) – (experimental) The destination port.

Stability:

experimental

ExampleMetadata:

infused

Example:

# video: medialive.EncodeConfiguration


medialive.OutputGroupConfiguration.udp(
    name="udp",
    destinations=[medialive.UdpOutputDestination.rtp(address="203.0.113.5", port=5000)],
    outputs=[medialive.UdpOutputDefinition(
        encodes=[video],
        output_name="ts",
        fec=medialive.FecOutputSettings(mode=medialive.FecMode.COLUMN_AND_ROW, column_depth=10, row_length=10)
    )]
)

Attributes

address

(experimental) The destination address — a unicast or multicast IP, or a hostname.

Stability:

experimental

port

(experimental) The destination port.

Stability:

experimental