Monday, August 15, 2022

Example of using the AthenaQueryPolicy policy with SAM AWS::Serverless::Function

 When defining a Lambda in a SAM template this is how you would add the AthenaQueryPolicy 

primary is the name of the Athena Workspace

Thursday, July 21, 2022

Clojuresmith concept: return value


Every function returns the last value of the last expression evaluated.

There is no "return" statement.

Tuesday, July 19, 2022

Clojuresmith concept: truth



In Clojure all values are either truthy or falsey.  The only falsey values are:

false
nil

Every other value is considered truthy