-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(scheduler-targets): lambda invoke target integration test #27088
Conversation
- Set schedule to recurring every minute - Move test to targets package - Minor updates of how Scheduler API is used
packages/@aws-cdk/aws-scheduler-targets-alpha/test/integ.schedule.ts
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@filletofish a few comments but otherwise this should be good. thanks for writing this!
runtime: lambda.Runtime.NODEJS_18_X, | ||
functionName: functionName, | ||
}); | ||
func.addEnvironment('FUNC_ARN', stack.resolve(functionArn)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we have to add this and why can't we use func.functionArn
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise - it creates a cyclic dependency
packages/@aws-cdk/aws-scheduler-targets-alpha/test/integ.schedule.ts
Outdated
Show resolved
Hide resolved
packages/@aws-cdk/aws-scheduler-targets-alpha/test/integ.schedule.ts
Outdated
Show resolved
Hide resolved
packages/@aws-cdk/aws-scheduler-targets-alpha/test/integ.schedule.ts
Outdated
Show resolved
Hide resolved
Pull request has been modified.
- Rename the schedule test to lambda invoke test - Do not create IAM role - Update documentation / comments - Move target lambda function code from inline into the asset (separate file)
...-scheduler-targets-alpha/test/integ.lambda-invoke.js.snapshot/aws-cdk-schedule.template.json
Outdated
Show resolved
Hide resolved
@kaizencc could you please restart the build? it failed with seemingly transient error when attempting to download packages from NPM |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Pull request has been modified.
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Continuing @Jacco work from #26268
Currently we were second-guessing if the implementations of ScheduleExpression and ScheduleTargetInput generate valid and correct CloudFormation.
This integration test verifies that lambda invoke target is invoked:
Advances #23394
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license