Amazon AppSync · Schema

UpdateApiKeyRequest

Request to update an API key

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
description string Updated description
expires integer Updated expiration timestamp
View JSON Schema on GitHub

JSON Schema

appsync-update-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-update-api-key-request-schema.json",
  "title": "UpdateApiKeyRequest",
  "description": "Request to update an API key",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Updated description"
    },
    "expires": {
      "type": "integer",
      "description": "Updated expiration timestamp"
    }
  }
}