We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the ofn cli, we can add function invoking ability like lambda:
aws lambda invoke --function-name my-function --payload '{ "key": "value" }' response.json
output
{ "ExecutedVersion": "$LATEST", "StatusCode": 200 }
aws lambda invoke \ --function-name my-function \ --invocation-type Event \ --cli-binary-format raw-in-base64-out \ --payload '{ "key": "value" }' response.json
The text was updated successfully, but these errors were encountered:
tpiperatgod
wenchajun
No branches or pull requests
In the ofn cli, we can add function invoking ability like lambda:
aws lambda invoke --function-name my-function --payload '{ "key": "value" }' response.json
output
aws lambda invoke \ --function-name my-function \ --invocation-type Event \ --cli-binary-format raw-in-base64-out \ --payload '{ "key": "value" }' response.json
The text was updated successfully, but these errors were encountered: