This small module is meant to help test Python based AWS Lambda functions that get triggered by other AWS services (ex: CodePipeline action). The module will generate an "event" that appears to come from a specified service which can be used to simulate an actual invocation of the function.
pip install aws_lambda_sample_events
from aws_lambda_sample_events import SampleEvent
from pprint import pprint
codepipeline = SampleEvent('codepipeline')
pprint(codepipeline.event)
SampleEvent()
expects a single string argument representing the name of the AWS Service you would like a sample event for.
- codepipeline
- sns
- cloudformation
- ses
- scheduled
- dynamodb_update
- cognito_sync_trigger
- kinesis_stream
- s3_put
- s3_delete
- cloudwatch_logs
- cloudwatch_events
- config_rule
Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at
http://aws.amazon.com/apache2.0/
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Note: Other license terms may apply to certain, identified software files contained within or distributed with the accompanying software if such terms are included in the directory containing the accompanying software. Such other license terms will then apply in lieu of the terms of the software license above.