Amazon Cognito · Schema

HttpHeader

The HTTP header.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
headerName object
headerValue object
View JSON Schema on GitHub

JSON Schema

user-pools-http-header-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-http-header-schema.json",
  "title": "HttpHeader",
  "description": "The HTTP header.",
  "type": "object",
  "properties": {
    "headerName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The header name."
        }
      ]
    },
    "headerValue": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The header value."
        }
      ]
    }
  }
}