modal
    Preparing search index...

    Type Alias QueuePutParams

    Optional parameters for Queue.put().

    type QueuePutParams = {
        partition?: string;
        partitionTtlMs?: number;
        timeoutMs?: number;
    }
    Index

    Properties

    partition?: string

    Partition to add items to, uses default partition if not set.

    partitionTtlMs?: number

    TTL for the partition in milliseconds (default: 1 day).

    timeoutMs?: number

    How long to wait if the Queue is full in milliseconds (default: indefinite).