Start User Access Tasks
appfabric_start_user_access_tasks | R Documentation |
Starts the tasks to search user access status for a specific email address¶
Description¶
Starts the tasks to search user access status for a specific email address.
The tasks are stopped when the user access status data is found. The tasks are terminated when the API calls to the application time out.
Usage¶
appfabric_start_user_access_tasks(appBundleIdentifier, email)
Arguments¶
appBundleIdentifier |
[required] The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request. |
email |
[required] The email address of the target user. |
Value¶
A list with the following syntax:
list(
userAccessTasksList = list(
list(
app = "string",
tenantId = "string",
taskId = "string",
error = list(
errorCode = "string",
errorMessage = "string"
)
)
)
)
Request syntax¶
svc$start_user_access_tasks(
appBundleIdentifier = "string",
email = "string"
)