Amazon AppSync · Schema

UpdateGraphqlApiRequest

Request to update a GraphQL API

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
name string The API name
authenticationType string Authentication type
logConfig string logConfig
xrayEnabled boolean Enable X-Ray tracing
View JSON Schema on GitHub

JSON Schema

appsync-update-graphql-api-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-graphql-api-request-schema.json",
  "title": "UpdateGraphqlApiRequest",
  "description": "Request to update a GraphQL API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The API name"
    },
    "authenticationType": {
      "type": "string",
      "description": "Authentication type"
    },
    "logConfig": {
      "type": "string",
      "description": "logConfig"
    },
    "xrayEnabled": {
      "type": "boolean",
      "description": "Enable X-Ray tracing"
    }
  }
}