Interface CfnFunction.DurableConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunction.DurableConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFunction
@Stability(Stable)
public static interface CfnFunction.DurableConfigProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lambda.*;
DurableConfigProperty durableConfigProperty = DurableConfigProperty.builder()
.executionTimeout(123)
// the properties below are optional
.retentionPeriodInDays(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunction.DurableConfigPropertystatic final classAn implementation forCfnFunction.DurableConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExecutionTimeout
The amount of time (in seconds) that Lambda allows a durable function to run before stopping it.The maximum is one 366-day year or 31,622,400 seconds.
- See Also:
-
getRetentionPeriodInDays
The number of days after a durable execution is closed that Lambda retains its history, from one to 90 days.The default is 14 days.
Default: - 14
- See Also:
-
builder
-