Amazon AppSync · Schema

HttpDataSourceConfig

HTTP endpoint data source configuration

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
endpoint string HTTP endpoint URL
authorizationConfig object Authorization configuration for the HTTP endpoint
View JSON Schema on GitHub

JSON Schema

appsync-http-data-source-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-appsync/json-schema/appsync-http-data-source-config-schema.json",
  "title": "HttpDataSourceConfig",
  "description": "HTTP endpoint data source configuration",
  "type": "object",
  "properties": {
    "endpoint": {
      "type": "string",
      "description": "HTTP endpoint URL"
    },
    "authorizationConfig": {
      "type": "object",
      "description": "Authorization configuration for the HTTP endpoint"
    }
  }
}