Skip to content

Batch Get User Access Tasks

appfabric_batch_get_user_access_tasks R Documentation

Gets user access details in a batch request

Description

Gets user access details in a batch request.

This action polls data from the tasks that are kicked off by the start_user_access_tasks action.

Usage

appfabric_batch_get_user_access_tasks(appBundleIdentifier, taskIdList)

Arguments

appBundleIdentifier

[required] The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.

taskIdList

[required] The tasks IDs to use for the request.

Value

A list with the following syntax:

list(
  userAccessResultsList = list(
    list(
      app = "string",
      tenantId = "string",
      tenantDisplayName = "string",
      taskId = "string",
      resultStatus = "IN_PROGRESS"|"COMPLETED"|"FAILED"|"EXPIRED",
      email = "string",
      userId = "string",
      userFullName = "string",
      userFirstName = "string",
      userLastName = "string",
      userStatus = "string",
      taskError = list(
        errorCode = "string",
        errorMessage = "string"
      )
    )
  )
)

Request syntax

svc$batch_get_user_access_tasks(
  appBundleIdentifier = "string",
  taskIdList = list(
    "string"
  )
)