interface FunctionRefProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnFunction.FunctionRefProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnFunction_FunctionRefProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnFunction.FunctionRefProperty |
Python | aws_cdk.aws_mediatailor.CfnFunction.FunctionRefProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnFunction » FunctionRefProperty |
A reference to a function with an optional run condition.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
const functionRefProperty: mediatailor.CfnFunction.FunctionRefProperty = {
functionId: 'functionId',
runCondition: 'runCondition',
};
Properties
| Name | Type | Description |
|---|---|---|
| function | string | The identifier of the function to execute. |
| run | string | A conditional expression that determines whether this function should execute. |
functionId?
Type:
string
(optional)
The identifier of the function to execute.
runCondition?
Type:
string
(optional)
A conditional expression that determines whether this function should execute.

.NET
Go
Java
Python
TypeScript