AWS Lambda · Schema

ListFunctionsResponse

Paginated list of Lambda functions

Properties

Name Type Description
NextMarker string Pagination token for the next page of results
Functions array
View JSON Schema on GitHub

JSON Schema

aws-lambda-list-functions-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ListFunctionsResponse",
  "type": "object",
  "description": "Paginated list of Lambda functions",
  "properties": {
    "NextMarker": {
      "type": "string",
      "description": "Pagination token for the next page of results"
    },
    "Functions": {
      "type": "array"
    }
  }
}