-
Notifications
You must be signed in to change notification settings - Fork 966
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
new serverless pattern - s3-eventbridge-lambda-textract-node #2562
base: main
Are you sure you want to change the base?
new serverless pattern - s3-eventbridge-lambda-textract-node #2562
Conversation
@@ -0,0 +1,66 @@ | |||
# Amazon S3 to Amazon Textract through AWS EventBridge |
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.
Amazon EventBridge
``` | ||
git clone https://github.com/aws-samples/serverless-patterns | ||
``` | ||
1. Change directory to the pattern directory: |
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.
Increase the sequence 1, 2, 3...
@@ -0,0 +1,66 @@ | |||
# Amazon S3 to Amazon Textract through AWS EventBridge | |||
|
|||
This pattern demonstrates how to create an S3 bucket which when uploaded with an object invokes a Lambda function through EventBridge and detects the text in a document through Amazon Textract. The lambda function code uses NodeJs runtime. |
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.
Please rephrase this.
Ref: "This pattern demonstrates how to create an S3 bucket"
This pattern is not demonstrating how to create S3 bucket.
``` | ||
|
||
Replace the parameters in the above command appropriately. | ||
|
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.
Add complete testing steps. What will the user test after uploading the file? What is to be validated.
Upload the file (document/image) to the input S3 <STACK_NAME>-input-bucket-<AWS_ACCOUNTID> bucket via the console or use the PutObject API call: | ||
|
||
``` | ||
aws s3api put-object --bucket your-bucket-name --key your-document.pdf --body /path/to/your/document.pdf |
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.
aws s3api put-object --bucket InputBucketName
--key your-document.pdf --body /path/to/your/document.pdf
## Cleanup | ||
|
||
1. Delete the stack | ||
```bash |
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.
use sam delete
instead
Replace the parameters in the above command appropriately. | ||
|
||
## Cleanup | ||
|
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.
You need to add a step to clean up the buckets,
@@ -0,0 +1,59 @@ | |||
{ | |||
"title": "S3 to Textract using EventBridge ", |
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.
Amazon S3 to Amazon Textract using Amazon EventBridge
``` | ||
aws s3api put-object --bucket your-bucket-name --key your-document.pdf --body /path/to/your/document.pdf | ||
``` | ||
|
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.
Got the below error in the Lambda log while testing:
2025-02-14T07:05:16.220Z 426f36aa-3f5a-4189-9123-9d5e2f0784b7 ERROR Invoke Error { "errorType": "TypeError", "errorMessage": "Cannot read properties of undefined (reading '0')", "stack": [ "TypeError: Cannot read properties of undefined (reading '0')", " at Runtime.handler (file:///var/task/index.mjs:10:18)", " at Runtime.handleOnceNonStreaming (file:///var/runtime/index.mjs:1173:29)" ] }
{ | ||
"title": "S3 to Textract using EventBridge ", | ||
"description": "SAM template for an S3 object upload to invoke a Lambda function through EventBridge that detects the text in a document through Amazon Textract", | ||
"language": "nodejs", |
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.
Node.js
Issue #, if available: #2563
Description of changes:
This is a new pull request (PR) created for a serverless pattern that involves S3, Eventbridge, Lambda and texrtact deployed using SAM.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.