Amazon Cognito · JSON Structure

Cognito Idp Create User Import Job Request Structure

Represents the request to create the user import job.

Type: object Properties: 3 Required: 3
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

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

Properties

JobName UserPoolId CloudWatchLogsRoleArn

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "JobName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserImportJobNameType"
        },
        {
          "description": "The job name for the user import job."
        }
      ]
    },
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolIdType"
        },
        {
          "description": "The user pool ID for the user pool that the users are being imported into."
        }
      ]
    },
    "CloudWatchLogsRoleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArnType"
        },
        {
          "description": "The role ARN for the Amazon CloudWatch Logs Logging role for the user import job."
        }
      ]
    }
  },
  "required": [
    "JobName",
    "UserPoolId",
    "CloudWatchLogsRoleArn"
  ],
  "description": "Represents the request to create 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-create-user-import-job-request-structure.json",
  "name": "CreateUserImportJobRequest"
}