:doc:`QuickSight <../../quicksight>` / Client / list_folder_members

*******************
list_folder_members
*******************



.. py:method:: QuickSight.Client.list_folder_members(**kwargs)

  

  List all assets ( ``DASHBOARD``, ``ANALYSIS``, and ``DATASET``) in a folder.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListFolderMembers>`_  


  **Request Syntax**
  ::

    response = client.list_folder_members(
        AwsAccountId='string',
        FolderId='string',
        NextToken='string',
        MaxResults=123
    )
    
  :type AwsAccountId: string
  :param AwsAccountId: **[REQUIRED]** 

    The ID for the Amazon Web Services account that contains the folder.

    

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

    The ID of the folder.

    

  
  :type NextToken: string
  :param NextToken: 

    The token for the next set of results, or null if there are no more results.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to be returned per request.

    

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

    
    ::

      {
          'Status': 123,
          'FolderMemberList': [
              {
                  'MemberId': 'string',
                  'MemberArn': 'string'
              },
          ],
          'NextToken': 'string',
          'RequestId': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Status** *(integer) --* 

        The HTTP status of the request.

        
      

      - **FolderMemberList** *(list) --* 

        A structure that contains all of the folder members (dashboards, analyses, and datasets) in the folder.

        
        

        - *(dict) --* 

          An object that consists of a member Amazon Resource Name (ARN) and a member ID.

          
          

          - **MemberId** *(string) --* 

            The ID of the member.

            
          

          - **MemberArn** *(string) --* 

            The Amazon Resource Name (ARN) of the member.

            
      
    
      

      - **NextToken** *(string) --* 

        The token for the next set of results, or null if there are no more results.

        
      

      - **RequestId** *(string) --* 

        The Amazon Web Services request ID for this operation.

        
  
  **Exceptions**
  
  *   :py:class:`QuickSight.Client.exceptions.InvalidParameterValueException`

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

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

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

  
  *   :py:class:`QuickSight.Client.exceptions.InvalidNextTokenException`

  
  *   :py:class:`QuickSight.Client.exceptions.UnsupportedUserEditionException`

  
  *   :py:class:`QuickSight.Client.exceptions.InternalFailureException`

  