Package version:

Interface DeadLetterOptions

Describes the reason and error description for dead lettering a message using the deadLetter() method on the message received from Service Bus.

interface DeadLetterOptions {
    deadLetterErrorDescription: string;
    deadLetterReason: string;
}

Properties

deadLetterErrorDescription: string

The error description for deadlettering the message.

deadLetterReason: string

The reason for deadlettering the message.

Generated using TypeDoc