Skip to content

Commit 0bef64c

Browse files
authored
Fixing KeyError (#931)
1 parent 78e7ed0 commit 0bef64c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

typescript/custom-resource/custom-resource-handler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def main(event, context):
1414
raise RuntimeError('Create failure requested')
1515

1616
# Do the thing
17-
message = event['ResourceProperties']['Message']
17+
message = event['ResourceProperties']['message']
1818
attributes = {
1919
'Response': 'You said "%s"' % message
2020
}

0 commit comments

Comments
 (0)