Amazon Cognito · Schema

HttpHeader

The HTTP header.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

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

JSON Schema

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