Amazon Cognito · JSON Structure

Cognito Idp Start User Import Job Request Structure

Represents the request to start the user import job.

Type: object Properties: 2 Required: 2
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

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

Properties

UserPoolId JobId

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolIdType"
        },
        {
          "description": "The user pool ID for the user pool that the users are being imported into."
        }
      ]
    },
    "JobId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserImportJobIdType"
        },
        {
          "description": "The job ID for the user import job."
        }
      ]
    }
  },
  "required": [
    "UserPoolId",
    "JobId"
  ],
  "description": "Represents the request to start the user import job.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-start-user-import-job-request-structure.json",
  "name": "StartUserImportJobRequest"
}