Home / Connectors / Amazon EventBridge Boundary Event Connector

Amazon EventBridge Boundary Event Connector

Receive events from AWS EventBridge

inbound-boundary

Required inputs

KeyLabelType
inbound.context Webhook ID string
inbound.auth.username Username FEEL expression
inbound.auth.password Password secret
inbound.auth.apiKey API key secret
inbound.auth.apiKeyLocator API key locator secret
Correlation key (process) FEEL expression
correlationKeyExpression Correlation key (payload) FEEL expression

Optional inputs

KeyLabelType
webhookMethod Webhook method string
authorizationType Authorization type string
inbound.auth.jwt.jwkUrl JWK URL FEEL expression
inbound.auth.jwt.permissionsExpression JWT role property expression FEEL expression
inbound.auth.jwt.requiredPermissions Required roles FEEL expression
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.AWSEventBridge.boundary.v1", { "inbound.context": "...", "inbound.auth.username": "= ...", "inbound.auth.password": "<your password>", "inbound.auth.apiKey": "<your api key>", "inbound.auth.apiKeyLocator": "<your api key locator>", "": "= ...", "correlationKeyExpression": "= ...", "webhookMethod": "any", "authorizationType": "NONE", })