API Reference
    Preparing search index...

    Configuration options for the idempotency utility.

    When making a function idempotent you should always set a persistence store.

    DynamoDBPersistenceLayer

    Optionally, you can also pass a custom configuration object, this allows you to customize the behavior of the idempotency utility.

    type IdempotencyLambdaHandlerOptions = {
        config?: IdempotencyConfig;
        keyPrefix?: string;
        persistenceStore: BasePersistenceLayer;
    }
    Index

    Properties

    keyPrefix?: string
    persistenceStore: BasePersistenceLayer