Skip to content

Instantly share code, notes, and snippets.

@tonysneed
Created December 16, 2018 22:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonysneed/52dd5e8f1cd4ba91ff21abd8625a1afe to your computer and use it in GitHub Desktop.
Save tonysneed/52dd5e8f1cd4ba91ff21abd8625a1afe to your computer and use it in GitHub Desktop.
FunctionHandler 1
public string FunctionHandler(string input, ILambdaContext context)
{
// Get config setting using input as a key
return ConfigService.GetConfiguration()[input] ?? "None";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment