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: