in Custom/crhelper.py [0:0]
def cfn_handler(event, context, create, update, delete, logger, init_failed):
logger.info("Lambda RequestId: %s CloudFormation RequestId: %s" %
(context.aws_request_id, event['RequestId']))
# Define an object to place any response information you would like to send
# back to CloudFormation (these keys can then be used by Fn::GetAttr)
responseData = {}
# Define a physicalId for the resource, if the event is an update and the
# returned phyiscalid changes, cloudformation will then issue a delete
# against the old id
physicalResourceId = None
logger.debug("EVENT: " + str(event))
# handle init failures
if init_failed:
send(event, context, "FAILED", responseData, physicalResourceId, logger=logger, reason=init_failed)
raise
# Setup timer to catch timeouts
logger.info("Custom Lambda timeout set - remaining time in millis: " + str(context.get_remaining_time_in_millis()))
t = threading.Timer((context.get_remaining_time_in_millis()/1000.00)-0.5,
timeout, args=[event, context, logger])
t.start()
try:
# Execute custom resource handlers
logger.info("Received a %s Request" % event['RequestType'])
if event['RequestType'] == 'Create':
physicalResourceId, responseData = create(event, context)
elif event['RequestType'] == 'Update':
physicalResourceId, responseData = update(event, context)
elif event['RequestType'] == 'Delete':
delete(event, context)
# Send response back to CloudFormation
logger.info("Completed successfully, sending response to cfn")
send(event, context, "SUCCESS", responseData, physicalResourceId,
logger=logger)
# Catch any exceptions, log the stacktrace, send a failure back to
# CloudFormation and then raise an exception
except Exception as e:
logger.error(e, exc_info=True)
send(event, context, "FAILED", responseData, physicalResourceId, logger=logger, reason=e)
raise