Amazon API Gateway · JSON Structure

V2 Create Authorizer Request Structure

CreateAuthorizerRequest schema from Amazon API Gateway v2 API

Type: object Properties: 4 Required: 3
API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

CreateAuthorizerRequest is a JSON Structure definition published by Amazon API Gateway, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name AuthorizerType IdentitySource AuthorizerUri

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "Name": {
      "type": "string",
      "description": "Name of the authorizer.",
      "example": "my-resource"
    },
    "AuthorizerType": {
      "type": "string",
      "enum": [
        "REQUEST",
        "JWT"
      ],
      "description": "Type of authorizer.",
      "example": "REQUEST"
    },
    "IdentitySource": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Identity sources to use.",
      "example": [
        "example-value"
      ]
    },
    "AuthorizerUri": {
      "type": "string",
      "description": "URI of the Lambda authorizer (REQUEST type).",
      "example": "https://example.com/resource/123"
    }
  },
  "required": [
    "Name",
    "AuthorizerType",
    "IdentitySource"
  ],
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-structure/v2-create-authorizer-request-structure.json",
  "name": "CreateAuthorizerRequest",
  "description": "CreateAuthorizerRequest schema from Amazon API Gateway v2 API"
}