-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
Description
In the ofn cli, we can add function invoking ability like lambda:
aws lambda invoke --function-name my-function --payload '{ "key": "value" }' response.jsonoutput
{
"ExecutedVersion": "$LATEST",
"StatusCode": 200
}- Trigger an async function: To invoke a function asynchronously, set the invocation type parameter to Event.
aws lambda invoke \
--function-name my-function \
--invocation-type Event \
--cli-binary-format raw-in-base64-out \
--payload '{ "key": "value" }' response.json
tpiperatgod and wenchajun
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Backlog