errorKey
Message Response Failure Key
|
The name of the key to store a boolean if sending a message failed. If set, you can check the MessageResponse errorCode and other attributes for the reason.
type: string
default value: 'messageResponseFailure '
|
from
From
required
|
Who the message is from. May be a string template similar to the body and subject.
type: string
|
logLevel
Log Level
|
The Log Level. May be: debug, info, warn, error
type: string
enum: {
debug
info
warn
error
}
|
messageBodyTemplate
Message Body Template
required
|
A Message Template that is used to create the message body to send. See https://github.com/antlr/stringtemplate4/blob/master/doc/index.md for details on the template language.
type: string
default value: 'Processing Document '
|
messageSubjectTemplate
Message Subject Template
required
|
A Message Template that is used to create the message subject to send. See https://github.com/antlr/stringtemplate4/blob/master/doc/index.md for details on the template language.
type: string
default value: 'Hello '
|
responseKey
Message Response Context Key
|
The name of the key to store the MessageResponse under in the Pipeline Context.
type: string
default value: 'messageResponse '
|
storeInContext
Add to Pipeline Context
|
Put the generated Message later in the pipeline.
type: boolean
default value: 'false '
|
to
To
required
|
Who to send the message to. May be a string template similar to the body and subject.
type: array of string
|