Amazon Cognito · Schema

ListUserImportJobsResponse

Represents the response from the server to the request to list the user import jobs.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
UserImportJobs object
PaginationToken object
View JSON Schema on GitHub

JSON Schema

user-pools-list-user-import-jobs-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-list-user-import-jobs-response-schema.json",
  "title": "ListUserImportJobsResponse",
  "description": "Represents the response from the server to the request to list the user import jobs.",
  "type": "object",
  "properties": {
    "UserImportJobs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserImportJobsListType"
        },
        {
          "description": "The user import jobs."
        }
      ]
    },
    "PaginationToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationKeyType"
        },
        {
          "description": "An identifier that can be used to return the next set of user import jobs in the list."
        }
      ]
    }
  }
}