in lambda/workmail-org-user-domain-lambda/workmailcreateorg.py [0:0]
def on_update(event):
physical_id = event["PhysicalResourceId"]
props = event["ResourceProperties"]
request_type = event["RequestType"]
print("Nothing to do as an update event : update resource %s with props %s" %
(physical_id, props))
response = {
'PhysicalResourceId': physical_id
}
return response