Home / Connectors / Amazon EventBridge Connector

Amazon EventBridge Connector

Receive events from AWS EventBridge

inbound-start

Required inputs

KeyLabelType
inbound.context Webhook ID string
inbound.auth.jwt.jwkUrl JWK URL FEEL expression
inbound.auth.username Username FEEL expression
inbound.auth.password Password secret
inbound.auth.apiKey API key secret
inbound.auth.apiKeyLocator API key locator secret

Optional inputs

KeyLabelType
webhookMethod Webhook method string
authorizationType Authorization type string
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.startEvent.v1", { "inbound.context": "...", "inbound.auth.jwt.jwkUrl": "= ...", "inbound.auth.username": "= ...", "inbound.auth.password": "<your password>", "inbound.auth.apiKey": "<your api key>", "inbound.auth.apiKeyLocator": "<your api key locator>", "webhookMethod": "any", "authorizationType": "NONE", })