FunctionReference

class aws_cdk.interfaces.aws_mediatailor.FunctionReference(*, function_arn, function_id)

Bases: object

A reference to a Function resource.

Parameters:
  • function_arn (str) – The ARN of the Function resource.

  • function_id (str) – The FunctionId of the Function 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_mediatailor as interfaces_mediatailor

function_reference = interfaces_mediatailor.FunctionReference(
    function_arn="functionArn",
    function_id="functionId"
)

Attributes

function_arn

The ARN of the Function resource.

function_id

The FunctionId of the Function resource.