A Event Checker For AWS Lambda Handler.
Project description
AWS Event Check
- Annotation based library to check aws event.
- Checking event to avoid internal call by lambda function.
- Supporting AWS Cloud Watch trigger events.
- Supporting AWS S3 trigger event.
- Supporting AWS API Gateway event.
Examples
- S3 trigger check :
- Checking for event Records.
from aws.event import s3_trigger_event_check
@s3_trigger_event_check
def handler(event, context):
try:
pass
except Exception as e:
raise e
- Cloud Watch Event :
- Checking for event id.
from aws.event import cloud_watch_trigger_event_check
@cloud_watch_trigger_event_check
def handler(event, context):
try:
pass
except Exception as e:
raise e
-
API Gateway Event :
- Checking only http method.
from aws.event import api_gateway_trigger_event_check
@api_gateway_trigger_event_check
def handler(event, context):
try:
pass
except Exception as e:
raise e
MIT License : Copyright (c) 2019 Abhimanyu Haralukallu
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aws-event-check-1.0.0.tar.gz
(1.4 kB
view hashes)
Built Distribution
Close
Hashes for aws_event_check-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | abdc4a6bfa62d74d258360a9e338ea780a9e8d4a323aa23722b5d2d3c70dc401 |
|
MD5 | 8563e6b6f0c4b83d9f857c02dfa273ae |
|
BLAKE2b-256 | 97de7902e6aaf34065d91dc185fda249627ffb1f76b1c619ff113be6a336f6a9 |