{"id":19042518,"url":"https://github.com/serverless/event-gateway-connector","last_synced_at":"2025-10-17T00:03:39.130Z","repository":{"id":65982474,"uuid":"147958791","full_name":"serverless/event-gateway-connector","owner":"serverless","description":"Serverless Event Gateway Connector Framework ","archived":false,"fork":false,"pushed_at":"2018-12-06T08:53:30.000Z","size":74,"stargazers_count":7,"open_issues_count":0,"forks_count":5,"subscribers_count":27,"default_branch":"master","last_synced_at":"2025-04-18T07:51:35.544Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/serverless.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-08T18:18:51.000Z","updated_at":"2021-06-15T10:36:23.000Z","dependencies_parsed_at":"2023-02-19T18:45:30.823Z","dependency_job_id":null,"html_url":"https://github.com/serverless/event-gateway-connector","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverless%2Fevent-gateway-connector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverless%2Fevent-gateway-connector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverless%2Fevent-gateway-connector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverless%2Fevent-gateway-connector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/serverless","download_url":"https://codeload.github.com/serverless/event-gateway-connector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250525779,"owners_count":21445074,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T22:38:07.602Z","updated_at":"2025-10-17T00:03:34.101Z","avatar_url":"https://github.com/serverless.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Event Gateway Connector\n\nEvent Gateway Connector enables importing messages (events) from different, popular message queues into Event Gateway. Currently supported technologies: AWS Kinesis, AMQP, AWS CloudTrail.\n\n## Concepts\n\n**Source** is a implementation of message queue client that connects to the queue (based on configuration stored in Connection) and fetches messages. Currently implemented sources can be found in [`sources`](./sources) folder.\n\n**Connection** is a configuration describing a source (address, credentials) and target Event Gateway (e.g. URL, path, event type). Connections are managed by [Config API](#config-api).\n\n## Config API\n\nConfig API allows creating connections that Connector will use to fetch data from.\n\n### API\n\n#### List Connections\n\n`GET /v1/spaces/\u003cspace name\u003e/connections`\n\nPayload:\n```\n{\n\t\"connections\": [{\n\t\t\"target\": \"http://localhost:4001\",\n\t\t\"eventType\": \"user.created\",\n\t\t\"type\": \"awskinesis\",\n\t\t\"source\": {\n\t\t\t\"streamName\": \"test\",\n\t\t\t\"region\": \"us-east-1\"\n\t\t}\n\t}]\n}\n```\n\n#### Create Connection\n\n`POST /v1/spaces/\u003cspace name\u003e/connections`\n\nPayload:\n```\n{\n\t\"target\": \"http://localhost:4001\",\n\t\"eventType\": \"user.created\",\n\t\"type\": \"awskinesis\",\n\t\"source\": {\n\t\t\"streamName\": \"test\",\n\t\t\"region\": \"us-east-1\"\n\t}\n}\n```\n\n#### Update Connection\n\n`PUT /v1/spaces/\u003cspace name\u003e/connections/\u003cconnection ID\u003e`\n\nPayload:\n```\n{\n\t\"target\": \"http://localhost:4001\",\n\t\"eventType\": \"user.created\",\n\t\"type\": \"awskinesis\",\n\t\"source\": {\n\t\t\"streamName\": \"test\",\n\t\t\"region\": \"us-east-1\"\n\t}\n}\n```\n\n#### Delete Connection\n\n`DELETE /v1/spaces/\u003cspace name\u003e/connections/\u003cconnection ID\u003e`","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserverless%2Fevent-gateway-connector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fserverless%2Fevent-gateway-connector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserverless%2Fevent-gateway-connector/lists"}