:doc:`Chatbot <../../chatbot>` / Paginator / ListMicrosoftTeamsUserIdentities

********************************
ListMicrosoftTeamsUserIdentities
********************************



.. py:class:: Chatbot.Paginator.ListMicrosoftTeamsUserIdentities

  ::

    
    paginator = client.get_paginator('list_microsoft_teams_user_identities')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`Chatbot.Client.list_microsoft_teams_user_identities`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/ListMicrosoftTeamsUserIdentities>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          ChatConfigurationArn='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type ChatConfigurationArn: string
    :param ChatConfigurationArn: 

      The Amazon Resource Name (ARN) of the MicrosoftTeamsChannelConfiguration associated with the user identities to list.

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

        {
            'TeamsUserIdentities': [
                {
                    'IamRoleArn': 'string',
                    'ChatConfigurationArn': 'string',
                    'TeamId': 'string',
                    'UserId': 'string',
                    'AwsUserIdentity': 'string',
                    'TeamsChannelId': 'string',
                    'TeamsTenantId': 'string'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **TeamsUserIdentities** *(list) --* 

          User level permissions associated to a channel configuration.

          
          

          - *(dict) --* 

            Identifes a user level permission for a channel configuration.

            
            

            - **IamRoleArn** *(string) --* 

              A user-defined role that AWS Chatbot assumes. This is not the service-linked role.

               

              For more information, see `IAM policies for AWS Chatbot <https://docs.aws.amazon.com/chatbot/latest/adminguide/chatbot-iam-policies.html>`__ in the *AWS Chatbot Administrator Guide*.

              
            

            - **ChatConfigurationArn** *(string) --* 

              The Amazon Resource Name (ARN) of the MicrosoftTeamsChannelConfiguration associated with the user identity to delete.

              
            

            - **TeamId** *(string) --* 

              The ID of the Microsoft Teams authorized with AWS Chatbot.

               

              To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console. For more information, see `Step 1\: Configure a Microsoft Teams client <https://docs.aws.amazon.com/chatbot/latest/adminguide/teams-setup.html#teams-client-setup>`__ in the *AWS Chatbot Administrator Guide*.

              
            

            - **UserId** *(string) --* 

              The Microsoft Teams user ID.

              
            

            - **AwsUserIdentity** *(string) --* 

              The AWS user identity ARN used to associate a Microsoft Teams user Identity with an IAM Role.

              
            

            - **TeamsChannelId** *(string) --* 

              The ID of the Microsoft Teams channel.

              
            

            - **TeamsTenantId** *(string) --* 

              The ID of the Microsoft Teams tenant.

              
        
      
    