interface SequentialExecutorConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnFunction.SequentialExecutorConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnFunction_SequentialExecutorConfigurationProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnFunction.SequentialExecutorConfigurationProperty |
Python | aws_cdk.aws_mediatailor.CfnFunction.SequentialExecutorConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnFunction » SequentialExecutorConfigurationProperty |
Configuration for sequential executor functions.
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 sequentialExecutorConfigurationProperty: mediatailor.CfnFunction.SequentialExecutorConfigurationProperty = {
functionList: [{
functionId: 'functionId',
runCondition: 'runCondition',
}],
runtime: 'runtime',
timeoutMilliseconds: 123,
// the properties below are optional
output: {
outputKey: 'output',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| function | IResolvable | (IResolvable | Function)[] | The list of functions to execute sequentially. |
| runtime | string | |
| timeout | number | The timeout in milliseconds for the entire sequential execution chain. |
| output? | IResolvable | { [string]: string } |
functionList
Type:
IResolvable | (IResolvable | Function)[]
The list of functions to execute sequentially.
runtime
Type:
string
timeoutMilliseconds
Type:
number
The timeout in milliseconds for the entire sequential execution chain.
output?
Type:
IResolvable | { [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript