InvocationRequest

APIs.ioEngineeringPlatform

Properties

Name Type Description
Payload object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-invocationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvocationRequest",
  "title": "InvocationRequest",
  "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>"
        }
      ]
    }
  }
}