API Reference
    Preparing search index...

    Base attributes used by the persistence layer i.e. DynamoDB, Redis, etc.

    interface BasePersistenceAttributes {
        dataAttr?: string;
        expiryAttr?: string;
        inProgressExpiryAttr?: string;
        statusAttr?: string;
        validationKeyAttr?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    dataAttr?: string

    The attribute name for response data. Defaults to 'data'.

    expiryAttr?: string

    The attribute name for expiry timestamp. Defaults to 'expiration'.

    inProgressExpiryAttr?: string

    The attribute name for in-progress expiry timestamp. Defaults to 'in_progress_expiration'.

    statusAttr?: string

    The attribute name for status. Defaults to 'status'.

    validationKeyAttr?: string

    The attribute name for hashed representation of the parts of the event used for validation. Defaults to 'validation'.