Does anyone know if Smartsheet SDK is compatible with Amazon's AWS Lambda? I have a ticket in for Smartsheet but haven't heard from them yet so I thought I would give it a try here.
I'm getting a time-out when running this command on AWS "sheet = smartsheet.sheets.get(SHEET_ID)".
AWS Lambda error message:
{
"errorMessage": "2021-02-19T18:33:11.477Z cbad2464-4195-4a54-ac72-ea53c2786b75 Task timed out after 10.01 seconds"
}
Thanks!
Python (version 3.8) Code:
# Name of the Smartsheet being updated
SHEET_ID = "CENIC Circuit Master Sheet Current"
smartsheet = Smartsheet(TOKEN)
# print("DeBug 3 sheet = ", smartsheet)
# This is the problem below.
**sheet = smartsheet.sheets.get(SHEET_ID)**
# Make sure we don't miss any errors
smartsheet_client.errors_as_exceptions(True)
Runs fine on Ubuntu latest version.