Amazon API Gateway · JSON Structure

V2 Authorizers Structure

Authorizers schema from Amazon API Gateway v2 API

Type: object Properties: 1
API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

Authorizers is a JSON Structure definition published by Amazon API Gateway, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Items

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "Items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "AuthorizerId": {
            "type": "string",
            "description": "Authorizer identifier.",
            "example": "abc123"
          },
          "Name": {
            "type": "string",
            "description": "Authorizer name.",
            "example": "my-resource"
          },
          "AuthorizerType": {
            "type": "string",
            "description": "Type of authorizer (REQUEST or JWT).",
            "example": "example-value"
          },
          "IdentitySource": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Identity sources for the authorizer.",
            "example": [
              "example-value"
            ]
          }
        }
      },
      "example": [
        "example-value"
      ]
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-structure/v2-authorizers-structure.json",
  "name": "Authorizers",
  "description": "Authorizers schema from Amazon API Gateway v2 API"
}