SNS HTTPS Boundary Event Connector
Receive events from AWS SNS
Required inputs
| Key | Label | Type |
|---|---|---|
inbound.context | Subscription ID | string |
inbound.topicsAllowList | Topic ARN(s) | FEEL expression |
| Correlation key (process) | FEEL expression |
correlationKeyExpression | Correlation key (payload) | FEEL expression |
Optional inputs
| Key | Label | Type |
|---|---|---|
securitySubscriptionAllowedFor | Allow to receive messages from topic(s) | string |
activationCondition | Condition | FEEL expression |
resultVariable | Result variable | string |
resultExpression | Result expression | FEEL expression |
Apply this connector with @bpmnkit/connectors
import { applyConnectorTemplate } from "@bpmnkit/connectors"
const result = applyConnectorTemplate("io.camunda.connectors.inbound.AWSSNS.Boundary.v1", {
"inbound.context": "...",
"inbound.topicsAllowList": "= ...",
"": "= ...",
"correlationKeyExpression": "= ...",
"securitySubscriptionAllowedFor": "any",
"activationCondition": "= ...",
})