AWS Lambda · Schema

ListVersionsResponse

Paginated list of function versions

Properties

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

JSON Schema

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