MultiplexReference

class aws_cdk.aws_medialive.MultiplexReference(*, multiplex_arn, multiplex_id)

Bases: object

A reference to a Multiplex resource.

Parameters:
  • multiplex_arn (str) – The ARN of the Multiplex resource.

  • multiplex_id (str) – The Id of the Multiplex resource.

ExampleMetadata:

fixture=_generated

Example:

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

multiplex_reference = medialive.MultiplexReference(
    multiplex_arn="multiplexArn",
    multiplex_id="multiplexId"
)

Attributes

multiplex_arn

The ARN of the Multiplex resource.

multiplex_id

The Id of the Multiplex resource.