Interface OSMLQueueProps

Represents the properties required to define an OSMLQueue Construct.

OSMLQueueProps

interface OSMLQueueProps {
    dlQueue?: Queue;
    maxReceiveCount?: number;
    queueName: string;
}

Properties

dlQueue?: Queue

The dead-letter queue (DLQ) associated with this queue. Messages that fail to be processed can be moved to the DLQ.

Default

undefined (no DLQ)
maxReceiveCount?: number

The maximum number of times a message can be received (default is unlimited). If set, the message will be moved to the dead-letter queue after reaching this maximum receive count.

Default

undefined (unlimited)
queueName: string

The name to give the queue.

Generated using TypeDoc