@mxraven/mail - v0.2.0
    Preparing search index...

    Interface StorageStatus

    The object-storage NOTIFY_WEBHOOK payload.

    interface StorageStatus {
        accepted_at_utc?: number;
        attempt: number;
        bucket_name?: string;
        endpoint_host?: string;
        error_code?: string;
        event_type: string;
        listener_id?: string;
        message?: string;
        next_retry_at_utc?: number;
        object_key?: string;
        occurred_at_utc: number;
        status: StatusOutcome;
        status_code?: number;
        storage_ref?: string;
        task_id?: string;
        tenant_id?: string;
    }
    Index
    accepted_at_utc?: number

    The Unix time, in seconds, when mxRaven accepted the message.

    attempt: number

    The delivery attempt number, starting at 1.

    bucket_name?: string

    The destination bucket.

    endpoint_host?: string

    The storage endpoint host.

    error_code?: string

    The storage provider error code.

    event_type: string

    Always s3_egress_status.

    listener_id?: string

    The source listener.

    message?: string

    The failure description, truncated to 512 bytes.

    next_retry_at_utc?: number

    The Unix time, in seconds, of the next attempt for a deferred status.

    object_key?: string

    The stored object key.

    occurred_at_utc: number

    The Unix time, in seconds, when this status was built.

    The storage outcome.

    status_code?: number

    The storage provider response status.

    storage_ref?: string

    The storage integration identifier.

    task_id?: string

    The storage task identifier.

    tenant_id?: string

    The owning tenant.