1 Answer
- Newest
- Most votes
- Most comments
0
Hello,
Cloufront URL are not valid to deploy your Java based AWS Lambda functions. You can upload your zip artifact with the java function in two ways:
- Upload the zip artifact from your local computer with the console or CLI.
- Use a S3 bucket location (where you have access) with your artifact in the console or CLI:
aws s3 cp my-function.zip s3://my-bucket
And later:
aws lambda update-function-code --function-name my-function \
--s3-bucket my-bucket --s3-key my-function.zip
Hope it helps.
answered 3 years ago
Relevant content
- asked a year ago
- asked 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 20 days ago
- AWS OFFICIALUpdated 2 years ago