Amazon AppSync · Schema

CreateApiKeyRequest

Request to create an API key

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
description string API key description
expires integer Unix timestamp for expiration
View JSON Schema on GitHub

JSON Schema

appsync-create-api-key-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-appsync/json-schema/appsync-create-api-key-request-schema.json",
  "title": "CreateApiKeyRequest",
  "description": "Request to create an API key",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "API key description"
    },
    "expires": {
      "type": "integer",
      "description": "Unix timestamp for expiration"
    }
  }
}