Amazon AppSync · Schema

ListFunctionsResponse

Response with list of functions

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
functions array List of functions
nextToken string Pagination token
View JSON Schema on GitHub

JSON Schema

appsync-list-functions-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-appsync/json-schema/appsync-list-functions-response-schema.json",
  "title": "ListFunctionsResponse",
  "description": "Response with list of functions",
  "type": "object",
  "properties": {
    "functions": {
      "type": "array",
      "description": "List of functions"
    },
    "nextToken": {
      "type": "string",
      "description": "Pagination token"
    }
  }
}