Amplify Toolbox
    Preparing search index...

    Type Alias FunctionDurableConfigOptions

    type FunctionDurableConfigOptions = {
        executionTimeoutSeconds: number;
        retentionPeriodDays?: number;
    }
    Index

    Properties

    executionTimeoutSeconds: number

    The amount of time in seconds that Lambda allows a durable function to run before stopping it.

    Must be between 1 and 31,622,400 seconds (366 days).

    retentionPeriodDays?: number

    The number of days after a durable execution is closed that Lambda retains its history.

    Must be between 1 and 90 days.

    14