Skip to content
Advertisement

Tag: amazon-web-services

Lambda path parameters are embedded inside path dictionary

I have some python AWS lambdas which are deployed using serverless framework and I was able to retrieve the path variables using: event.get(“variable”) I am not sure what has changed but now I need to retrieve these path parameters using: event.get(“path”).get(“variable”) I am using lambda integration and my serverless configuration has not changed and looks like: I want to retrieve

Get tables from AWS Glue using boto3

I need to harvest tables and column names from AWS Glue crawler metadata catalogue. I used boto3 but constantly getting number of 100 tables even though there are more. Setting up NextToken doesn’t help. Please help if possible. Desired results is list as follows: lst = [table_one.col_one, table_one.col_two, table_two.col_one….table_n.col_n] UPDATED code, still need to have tablename+columnname: Answer Adding sub-loop did

get data from s3 Bucket [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 1 year ago. Improve this question This is my code I got this error while getting the data from the bucket. Answer The error message writes

Advertisement