/flutter_aws_lambda

A flutter implementation of AWS's lambda service library. It was implemented pretty quickly as a tool I use in my bachelor thesis for meassurement purposes and there is still a lot to do before I would recommend this to be used in production. Will probably continue this some time.

Primary LanguageJavaApache License 2.0Apache-2.0

aws_lambda

A flutter plugin made to allow the usage of aws lambdas via each platform's native aws lambda plugin.

This plugin offers a lightweight implementation of AWS's lambda service library into your Flutter project. It allows the same configurations that AWS's library also does. Every time you call a lambda function in Dart your parameters are simply passed to the platform's native AWS lambda library.

Getting Started

Just add the project to your pubspec.yaml file, get an instance of the AWSLambda class providing your credentials to the class's constructor and call the callLambda method passing at least the lambda function's name. For more details have a look at the provided example..