Python AWS

Last modified by Douglas Bower on 2026/02/04 04:05

S3
How keys and separators work with Prfix and Delimiter
https://docs.aws.amazon.com/AmazonS3/latest/dev/ListingKeysHierarchy.html

https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GettingStarted.Python.03.html

https://docs.aws.amazon.com/cli/latest/userguide/cli-config-files.html

https://aws.amazon.com/developers/getting-started/python/

http://boto3.readthedocs.io/en/latest/guide/quickstart.html

Interesting Examples:

http://boto3.readthedocs.io/en/latest/guide/examples.html

https://github.com/boto/boto3-sample/blob/master/transcoder.py

http://boto3.readthedocs.io/en/latest/guide/s3-example-creating-buckets.html

boto3-sample-transcoder.py at master · boto-boto3-sample

Sophisticated S3 Examples
dlow · PyPI

Python Lambda Information
https://docs.aws.amazon.com/lambda/latest/dg/python-programming-model-handler-types.html

http://boto3.readthedocs.io/en/latest/reference/services/lambda.html#Lambda.Client.invoke

https://www.twilio.com/blog/2017/05/send-sms-text-messages-aws-lambda-python-3-6.html

https://medium.com/@stephinmon.antony/aws-lambda-with-python-examples-2eb227f5fafe

https://codeburst.io/aws-lambda-functions-made-easy-1fae0feeab27

https://www.fullstackpython.com/blog/aws-lambda-python-3-6.html

https://docs.aws.amazon.com/lambda/latest/dg/get-started-create-function.html

How to get response from Lambda - Synchronously. Also some information on how to return a json object :
return json.dumps(obj)  and then decode in calling routine:

Or possibly JSON.parse(sampleData)); where sampleData is a string of jason data. {data1:{key1:value1, key2:value2}}

https://stackoverflow.com/questions/36784925/how-to-get-return-response-from-aws-lambda-function

Interesting article on returning value from lambda
https://stackoverflow.com/questions/43438966/return-variables-in-aws-lambda


Originally created: 2018-04-12 03:12