Created
December 12, 2021 03:52
-
-
Save quickmute/52725d643c9169a9ac8180ea499175bb to your computer and use it in GitHub Desktop.
Powershell script to test the lambda container function
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
$body = '{"Name":"Jack"}' | |
$output = Invoke-WebRequest -Method Post -Body $body -Uri "http://localhost:9000/2015-03-31/functions/function/invocations" | |
$output.RawContent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment