Amazon AppSync · Schema

ListApiKeysResponse

Response with list of API keys

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
apiKeys array List of API keys
nextToken string Pagination token
View JSON Schema on GitHub

JSON Schema

appsync-list-api-keys-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-api-keys-response-schema.json",
  "title": "ListApiKeysResponse",
  "description": "Response with list of API keys",
  "type": "object",
  "properties": {
    "apiKeys": {
      "type": "array",
      "description": "List of API keys"
    },
    "nextToken": {
      "type": "string",
      "description": "Pagination token"
    }
  }
}