Interface CfnFunctionPropsMixin.SequentialExecutorConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunctionPropsMixin.SequentialExecutorConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFunctionPropsMixin
@Stability(Stable)
public static interface CfnFunctionPropsMixin.SequentialExecutorConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.mediatailor.*;
SequentialExecutorConfigurationProperty sequentialExecutorConfigurationProperty = SequentialExecutorConfigurationProperty.builder()
.functionList(List.of(FunctionRefProperty.builder()
.functionId("functionId")
.runCondition("runCondition")
.build()))
.output(Map.of(
"outputKey", "output"))
.runtime("runtime")
.timeoutMilliseconds(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnFunctionPropsMixin.SequentialExecutorConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFunctionList
The list of functions to execute sequentially.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnFunctionPropsMixin.FunctionRefProperty>- See Also:
-
getOutput
- See Also:
-
getRuntime
- See Also:
-
getTimeoutMilliseconds
The timeout in milliseconds for the entire sequential execution chain.- See Also:
-
builder
@Stability(Stable) static CfnFunctionPropsMixin.SequentialExecutorConfigurationProperty.Builder builder()
-