:doc:`ChimeSDKMessaging <../../chime-sdk-messaging>` / Client / list_channels_moderated_by_app_instance_user

********************************************
list_channels_moderated_by_app_instance_user
********************************************



.. py:method:: ChimeSDKMessaging.Client.list_channels_moderated_by_app_instance_user(**kwargs)

  

  A list of the channels moderated by an ``AppInstanceUser``.

   

  .. note::

    

    The ``x-amz-chime-bearer`` request header is mandatory. Use the ARN of the ``AppInstanceUser`` or ``AppInstanceBot`` that makes the API call as the value in the header.

    

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/ListChannelsModeratedByAppInstanceUser>`_  


  **Request Syntax**
  ::

    response = client.list_channels_moderated_by_app_instance_user(
        AppInstanceUserArn='string',
        MaxResults=123,
        NextToken='string',
        ChimeBearer='string'
    )
    
  :type AppInstanceUserArn: string
  :param AppInstanceUserArn: 

    The ARN of the user or bot in the moderated channel.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of channels in the request.

    

  
  :type NextToken: string
  :param NextToken: 

    The token returned from previous API requests until the number of channels moderated by the user is reached.

    

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

    The ARN of the ``AppInstanceUser`` or ``AppInstanceBot`` that makes the API call.

    

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

    
    ::

      {
          'Channels': [
              {
                  'ChannelSummary': {
                      'Name': 'string',
                      'ChannelArn': 'string',
                      'Mode': 'UNRESTRICTED'|'RESTRICTED',
                      'Privacy': 'PUBLIC'|'PRIVATE',
                      'Metadata': 'string',
                      'LastMessageTimestamp': datetime(2015, 1, 1)
                  }
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Channels** *(list) --* 

        The moderated channels in the request.

        
        

        - *(dict) --* 

          Summary of the details of a moderated channel.

          
          

          - **ChannelSummary** *(dict) --* 

            Summary of the details of a ``Channel``.

            
            

            - **Name** *(string) --* 

              The name of the channel.

              
            

            - **ChannelArn** *(string) --* 

              The ARN of the channel.

              
            

            - **Mode** *(string) --* 

              The mode of the channel.

              
            

            - **Privacy** *(string) --* 

              The privacy setting of the channel.

              
            

            - **Metadata** *(string) --* 

              The metadata of the channel.

              
            

            - **LastMessageTimestamp** *(datetime) --* 

              The time at which the last persistent message visible to the caller in a channel was sent.

              
        
      
    
      

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

        The token returned from previous API requests until the number of channels moderated by the user is reached.

        
  
  **Exceptions**
  
  *   :py:class:`ChimeSDKMessaging.Client.exceptions.BadRequestException`

  
  *   :py:class:`ChimeSDKMessaging.Client.exceptions.ForbiddenException`

  
  *   :py:class:`ChimeSDKMessaging.Client.exceptions.UnauthorizedClientException`

  
  *   :py:class:`ChimeSDKMessaging.Client.exceptions.ThrottledClientException`

  
  *   :py:class:`ChimeSDKMessaging.Client.exceptions.ServiceUnavailableException`

  
  *   :py:class:`ChimeSDKMessaging.Client.exceptions.ServiceFailureException`

  