InputReference

class aws_cdk.aws_medialive.InputReference(*, input_arn, input_id)

Bases: object

A reference to a Input resource.

Parameters:
  • input_arn (str) – The ARN of the Input resource.

  • input_id (str) – The Id of the Input 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

input_reference = medialive.InputReference(
    input_arn="inputArn",
    input_id="inputId"
)

Attributes

input_arn

The ARN of the Input resource.

input_id

The Id of the Input resource.