:doc:`AppFabric <../../appfabric>` / Client / start_user_access_tasks

***********************
start_user_access_tasks
***********************



.. py:method:: AppFabric.Client.start_user_access_tasks(**kwargs)

  

  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.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/StartUserAccessTasks>`_  


  **Request Syntax**
  ::

    response = client.start_user_access_tasks(
        appBundleIdentifier='string',
        email='string'
    )
    
  :type appBundleIdentifier: string
  :param appBundleIdentifier: **[REQUIRED]** 

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

    

  
  :type email: string
  :param email: **[REQUIRED]** 

    The email address of the target user.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'userAccessTasksList': [
              {
                  'app': 'string',
                  'tenantId': 'string',
                  'taskId': 'string',
                  'error': {
                      'errorCode': 'string',
                      'errorMessage': 'string'
                  }
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **userAccessTasksList** *(list) --* 

        Contains a list of user access task information.

        
        

        - *(dict) --* 

          Contains information about a user access task.

          
          

          - **app** *(string) --* 

            The name of the application.

            
          

          - **tenantId** *(string) --* 

            The ID of the application tenant.

            
          

          - **taskId** *(string) --* 

            The unique ID of the task.

            
          

          - **error** *(dict) --* 

            Error from the task, if any.

            
            

            - **errorCode** *(string) --* 

              The code of the error.

              
            

            - **errorMessage** *(string) --* 

              The message of the error.

              
        
      
    
  
  **Exceptions**
  
  *   :py:class:`AppFabric.Client.exceptions.InternalServerException`

  
  *   :py:class:`AppFabric.Client.exceptions.ThrottlingException`

  
  *   :py:class:`AppFabric.Client.exceptions.ValidationException`

  
  *   :py:class:`AppFabric.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`AppFabric.Client.exceptions.AccessDeniedException`

  