Learn R Programming

paws.security.identity (version 0.1.12)

cognitoidentityprovider_create_user_import_job: Creates the user import job

Description

Creates the user import job.

Usage

cognitoidentityprovider_create_user_import_job(JobName, UserPoolId,
  CloudWatchLogsRoleArn)

Value

A list with the following syntax:

list(
  UserImportJob = list(
    JobName = "string",
    JobId = "string",
    UserPoolId = "string",
    PreSignedUrl = "string",
    CreationDate = as.POSIXct(
      "2015-01-01"
    ),
    StartDate = as.POSIXct(
      "2015-01-01"
    ),
    CompletionDate = as.POSIXct(
      "2015-01-01"
    ),
    Status = "Created"|"Pending"|"InProgress"|"Stopping"|"Expired"|"Stopped"|"Failed"|"Succeeded",
    CloudWatchLogsRoleArn = "string",
    ImportedUsers = 123,
    SkippedUsers = 123,
    FailedUsers = 123,
    CompletionMessage = "string"
  )
)

Arguments

JobName

[required] The job name for the user import job.

UserPoolId

[required] The user pool ID for the user pool that the users are being imported into.

CloudWatchLogsRoleArn

[required] The role ARN for the Amazon CloudWatch Logging role for the user import job.

Request syntax

svc$create_user_import_job(
  JobName = "string",
  UserPoolId = "string",
  CloudWatchLogsRoleArn = "string"
)