Amazon Cognito · Schema

ForgotPasswordResponse

The response from Amazon Cognito to a request to reset a password.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
CodeDeliveryDetails object
View JSON Schema on GitHub

JSON Schema

user-pools-forgot-password-response-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-forgot-password-response-schema.json",
  "title": "ForgotPasswordResponse",
  "description": "The response from Amazon Cognito to a request to reset a password.",
  "type": "object",
  "properties": {
    "CodeDeliveryDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CodeDeliveryDetailsType"
        },
        {
          "description": "The code delivery details returned by the server in response to the request to reset a password."
        }
      ]
    }
  }
}