CDK Constructs for deploying AWS Events Rule that inveokes AWS Lambda
Project description
aws-events-rule-lambda module
---All classes are under active development and subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
Reference Documentation: | https://docs.aws.amazon.com/solutions/latest/constructs/ |
---|
Language | Package |
---|---|
Python | aws_solutions_constructs.aws_events_rule_lambda |
Typescript | @aws-solutions-constructs/aws-events-rule-lambda |
Java | software.amazon.awsconstructs.services.eventsrulelambda |
This AWS Solutions Construct implements an AWS Events rule and an AWS Lambda function.
Here is a minimal deployable pattern definition:
const { EventsRuleToLambdaProps, EventsRuleToLambda } = require('@aws-solutions-constructs/aws-events-rule-lambda');
const props: EventsRuleToLambdaProps = {
lambdaFunctionProps: {
code: lambda.Code.asset(`${__dirname}/lambda`),
runtime: lambda.Runtime.NODEJS_12_X,
handler: 'index.handler'
},
eventRuleProps: {
schedule: events.Schedule.rate(Duration.minutes(5))
}
};
new EventsRuleToLambda(stack, 'test-events-rule-lambda', props);
Initializer
new EventsRuleToLambda(scope: Construct, id: string, props: EventsRuleToLambdaProps);
Parameters
- scope
Construct
- id
string
- props
EventsRuleToLambdaProps
Pattern Construct Props
Name | Type | Description |
---|---|---|
existingLambdaObj? | lambda.Function |
Existing instance of Lambda Function object, if this is set then the lambdaFunctionProps is ignored. |
lambdaFunctionProps? | lambda.FunctionProps |
User provided props to override the default props for the Lambda function. |
eventRuleProps | events.RuleProps |
User provided eventRuleProps to override the defaults |
Pattern Properties
Name | Type | Description |
---|---|---|
eventsRule | events.Rule |
Returns an instance of events.Rule created by the construct |
lambdaFunction | lambda.Function |
Returns an instance of lambda.Function created by the construct |
Default settings
Out of the box implementation of the Construct without any override will set the following defaults:
Amazon CloudWatch Events Rule
- Grant least privilege permissions to CloudWatch Events to trigger the Lambda Function
AWS Lambda Function
- Configure least privilege access IAM role for Lambda function
- Enable reusing connections with Keep-Alive for NodeJs Lambda function
Architecture
© Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
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
Built Distribution
Hashes for aws-solutions-constructs.aws-events-rule-lambda-1.58.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94c627014b89eb584236fe698e468fdffddf578398f87eb8398506b7ea96d578 |
|
MD5 | eba142a91f8547ab2fe67af27073e663 |
|
BLAKE2b-256 | 8cd799ca52d85d5b0749186404367015a3e75aef3bd457995bb72bfcadeba243 |
Hashes for aws_solutions_constructs.aws_events_rule_lambda-1.58.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9377722fb36a98f6ba5584fb8226e8ea2bd41331835466b31818d52f09fc88eb |
|
MD5 | 8b3a1ae23d230448960d98b4d82024a6 |
|
BLAKE2b-256 | 05949fd250a4281c98cff1994e5fd35be35fe77973e5b8fb250e3e286610fd6b |