Skip to content

ChadElias/aws-cloudwatch-stream-to-lambda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

CloudWatch Stream to Lambda Function

This is a basic lambda function to read AWS CloudWatch Streams.

Here are some steps to follow from Visual Studio:

To deploy your function to AWS Lambda, right click the project in Solution Explorer and select Publish to AWS Lambda.

To view your deployed function open its Function View window by double-clicking the function name shown beneath the AWS Lambda node in the AWS Explorer tree.

To perform testing against your deployed function use the Test Invoke tab in the opened Function View window.

To configure event sources for your deployed function, for example to have your function invoked when an object is created in an Amazon S3 bucket, use the Event Sources tab in the opened Function View window.

To update the runtime configuration of your deployed function use the Configuration tab in the opened Function View window.

To view execution logs of invocations of your function use the Logs tab in the opened Function View window.

Here are some steps to follow to get started from the command line:

Once you have edited your function you can use the following command lines to build, test and deploy your function to AWS Lambda from the command line (these examples assume the project name is EmptyFunction):

Restore dependencies

    cd "ParseCloudWatch"
    dotnet restore

Execute unit tests

    cd "ParseCloudWatch/test/ParseCloudWatch.Tests"
    dotnet test

Deploy function to AWS Lambda

    cd "ParseCloudWatch/src/ParseCloudWatch"
    dotnet lambda deploy-function

About

A basic lambda function for streaming cloudwatch logs to

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages