SNS HTTPS Receive Task Connector
Receive messages from AWS SNS via HTTPS.
Required inputs
| Key | Label | Type |
|---|---|---|
inbound.context | Subscription ID | string |
correlationKeyProcess | Correlation key (process) | FEEL expression |
correlationKeyPayload | Correlation key (payload) | FEEL expression |
deduplicationId | Deduplication ID | string |
Optional inputs
| Key | Label | Type |
|---|---|---|
inbound.securitySubscriptionAllowedFor | Allow to receive messages from topic(s) | string |
inbound.topicsAllowList | Topic ARN(s) | FEEL expression |
activationCondition | Activation condition | FEEL expression |
consumeUnmatchedEvents | Consume unmatched events | string |
messageIdExpression | Message ID expression | FEEL expression |
messageTtl | Message TTL | FEEL expression |
deduplicationModeManualFlag | Manual mode | string |
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.Receive.v1", {
"inbound.context": "...",
"correlationKeyProcess": "= ...",
"correlationKeyPayload": "= ...",
"deduplicationId": "...",
"inbound.securitySubscriptionAllowedFor": "any",
"inbound.topicsAllowList": "= ...",
})