{
"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-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-create-user-import-job-request-schema.json",
"title": "CreateUserImportJobRequest"
}