interface FunctionRefProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaTailor.CfnFunctionPropsMixin.FunctionRefProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediatailor#CfnFunctionPropsMixin_FunctionRefProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediatailor.CfnFunctionPropsMixin.FunctionRefProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediatailor.CfnFunctionPropsMixin.FunctionRefProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediatailor » CfnFunctionPropsMixin » 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/cfn-property-mixins';
const functionRefProperty: mediatailor.CfnFunctionPropsMixin.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