modal
    Preparing search index...

    Type Alias QueuePutOptions

    Options to configure a Queue.put() or Queue.putMany() operation.

    type QueuePutOptions = {
        partition?: string;
        partitionTtl?: number;
        timeout?: number;
    }
    Index

    Properties

    partition?: string

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

    partitionTtl?: number

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

    timeout?: number

    How long to wait if the queue is full (default: indefinite).