This gist contains lists of modules available in
in AWS Lambda.
It also contains the code to run in Lambda to generate these lists. In addition there
is a less_versbose
module in the code that you can call to get a list of the top
This gist contains lists of modules available in
in AWS Lambda.
It also contains the code to run in Lambda to generate these lists. In addition there
is a less_versbose
module in the code that you can call to get a list of the top
/* This is designed to be run in Python, with the {} vars below templated in. */ | |
WITH vars AS ( | |
SELECT | |
'{schema}' AS schemaname, | |
'{table}' AS tablename | |
), | |
base_info AS ( | |
SELECT | |
cls.oid AS table_id, |