Skip to content

Netvent/interceptd-api-integrator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

interceptd-api-integrator

AWS Lambda written in Go consuming SNS events triggered from S3.

Getting Started

Interceptd-api-integrator consumes SNS events. That's why, presumably you create bucket and connect necessary SNS topics to this bucket's events.

Prerequisites

You should install Go in your local computer to compile and set GOPATH variable appropriately.

When you create AWS Lambda function, the properties should be like below;

Runtime: Go 1.x
Handler: main
Environment Variables: BULK_COUNT={some integer value like 10}, URL={value that get request will be completed}

Installing

After you create AWS Lambda function with proper values. You compile source code and zip in order to upload it.

For Linux:

go build -o main main.go
zip main.zip main

If you are using Mac:

GOOS=linux GOARCH=amd64 go build -o main main.go
zip main.zip main

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages