Amazon AppSync · Schema

ApiKey

An API key for AppSync API authentication

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
id string The API key ID
description string The API key description
expires integer Unix timestamp when the key expires
deletes integer Unix timestamp when the key is scheduled for deletion
View JSON Schema on GitHub

JSON Schema

appsync-api-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-appsync/json-schema/appsync-api-key-schema.json",
  "title": "ApiKey",
  "description": "An API key for AppSync API authentication",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The API key ID"
    },
    "description": {
      "type": "string",
      "description": "The API key description"
    },
    "expires": {
      "type": "integer",
      "description": "Unix timestamp when the key expires"
    },
    "deletes": {
      "type": "integer",
      "description": "Unix timestamp when the key is scheduled for deletion"
    }
  }
}