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

.NET
Go
Java
Python
TypeScript