Interface CfnFunctionPropsMixin.DurableConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunctionPropsMixin.DurableConfigProperty.Jsii$Proxy
Enclosing class:
CfnFunctionPropsMixin

@Stability(Stable) public static interface CfnFunctionPropsMixin.DurableConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration settings for durable functions , including execution timeout and retention period for execution history.

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.lambda.*;
 DurableConfigProperty durableConfigProperty = DurableConfigProperty.builder()
         .executionTimeout(123)
         .retentionPeriodInDays(123)
         .build();
 

See Also: