Amazon SNS connector
Send message to topic
Required inputs
| Key | Label | Type |
|---|---|---|
authentication.accessKey | Access key | secret |
authentication.secretKey | Secret key | secret |
topic.topicArn | Topic ARN | string |
topic.region | Region | FEEL expression |
topic.message | Message | FEEL expression |
Optional inputs
| Key | Label | Type |
|---|---|---|
topic.subject | Subject | FEEL expression |
topic.messageAttributes | Message attributes | FEEL expression |
resultVariable | Result variable | string |
resultExpression | Result expression | FEEL expression |
errorExpression | Error expression | FEEL expression |
Apply this connector with @bpmnkit/connectors
import { applyConnectorTemplate } from "@bpmnkit/connectors"
const result = applyConnectorTemplate("io.camunda.connectors.AWSSNS.v1", {
"authentication.accessKey": "<your access key>",
"authentication.secretKey": "<your secret key>",
"topic.topicArn": "...",
"topic.region": "= ...",
"topic.message": "= ...",
"topic.subject": "= ...",
"topic.messageAttributes": "= ...",
})