{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InvokeAsyncRequest",
"title": "InvokeAsyncRequest",
"type": "object",
"required": [
"InvokeArgs"
],
"deprecated": true,
"properties": {
"InvokeArgs": {
"allOf": [
{
"$ref": "#/components/schemas/BlobStream"
},
{
"description": "The JSON that you want to provide to your Lambda function as input."
}
]
}
}
}