Answers for "An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist."

0

An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.

#An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.
Maybe you are hardcoding filename into your aws lambda function.
# you are try to access file_name like this s3_file_name ='test2.csv'
# But it's saved into S3 bucket like this s3_file_name ='test.csv'
You need to call exact file_name into your aws lambda code.
Posted by: Guest on June-04-2021

Code answers related to "An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist."

Python Answers by Framework

Browse Popular Code Answers by Language