This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
START RequestId: 9ddba177-f068-4773-bdfa-4064e85d8222 Version: $LATEST | |
Starting with | |
context context.Background.WithDeadline(2019-02-11 22:56:29.628991061 +0000 UTC [5.998542519s]).WithValue(&lambdacontext.key | |
{} | |
, &lambdacontext.LambdaContext{AwsRequestID:"9ddba177-f068-4773-bdfa-4064e85d8222", InvokedFunctionArn:"arn:aws:lambda:us-east-1:848139458219:function:update-shelters-dev-dbMigration", Identity:lambdacontext.CognitoIdentity{CognitoIdentityID:"", CognitoIdentityPoolID:""}, ClientContext:lambdacontext.ClientContext{Client:lambdacontext.ClientApplication{InstallationID:"", AppTitle:"", AppVersionCode:"", AppPackageName:""}, Env:map[string]string(nil), Custom:map[string]string(nil)}}).WithValue("x-amzn-trace-id", "Root=1-5c61fd8f-e8dc42b140bd56ab87efcb19;Parent=5c01de6a5f6153a2;Sampled=0") | |
jsonEvent | |
{ | |
"RequestType": "Create", | |
"RequestId": "bd487606-8017-49f2-99af-b29b2bbad40b", | |
"ResponseURL": "https://cloudformation-custom-resource-response-useast1.s3.amazonaws.com/arn%3Aaws%3Acloudformation% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
javascript_base_path="$PWD/src/app" | |
while read -r file; do | |
IFS=' ' | |
declare -a controllers | |
i=0 | |
while ((i++)); read -r ctrl_name; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const _contacts = [ | |
{ Name: 'Andy', Emails: ['[email protected]', '[email protected]'] }, | |
{ Name: 'Jason', Emails: ['[email protected]', '[email protected]'] }, | |
{ Name: 'Bart', Emails: ['[email protected]'] }, | |
{ Name: 'Richard', Emails: ['[email protected]'] } | |
]; | |
const byEmail = {}; | |
_contacts.forEach(con => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
os: | |
- linux | |
- osx | |
osx_image: xcode8.3 | |
language: node_js | |
node_js: 8 |