{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InvokeWithResponseStreamRequest",
"title": "InvokeWithResponseStreamRequest",
"type": "object",
"properties": {
"Payload": {
"allOf": [
{
"$ref": "#/components/schemas/Blob"
},
{
"description": "<p>The JSON that you want to provide to your Lambda function as input.</p> <p>You can enter the JSON directly. For example, <code>--payload '{ \"key\": \"value\" }'</code>. You can also specify a file path. For example, <code>--payload file://payload.json</code>.</p>"
}
]
}
}
}