MultiplexReference

class aws_cdk.interfaces.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.interfaces import aws_medialive as interfaces_aws_medialive

multiplex_reference = interfaces_aws_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.