:doc:`CloudWatchLogs <../../logs>` / Client / list_sources_for_s3_table_integration

*************************************
list_sources_for_s3_table_integration
*************************************



.. py:method:: CloudWatchLogs.Client.list_sources_for_s3_table_integration(**kwargs)

  

  Returns a list of data source associations for a specified S3 Table Integration, showing which data sources are currently associated for query access.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ListSourcesForS3TableIntegration>`_  


  **Request Syntax**
  ::

    response = client.list_sources_for_s3_table_integration(
        integrationArn='string',
        maxResults=123,
        nextToken='string'
    )
    
  :type integrationArn: string
  :param integrationArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the S3 Table Integration to list associations for.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of associations to return in a single call. Valid range is 1 to 100.

    

  
  :type nextToken: string
  :param nextToken: 

    The token for the next set of items to return. The token expires after 24 hours.

    

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

    
    ::

      {
          'sources': [
              {
                  'identifier': 'string',
                  'dataSource': {
                      'name': 'string',
                      'type': 'string'
                  },
                  'status': 'ACTIVE'|'UNHEALTHY'|'FAILED'|'DATA_SOURCE_DELETE_IN_PROGRESS',
                  'statusReason': 'string',
                  'createdTimeStamp': 123
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **sources** *(list) --* 

        The list of data source associations for the specified S3 Table Integration.

        
        

        - *(dict) --* 

          Represents a data source association with an S3 Table Integration, including its status and metadata.

          
          

          - **identifier** *(string) --* 

            The unique identifier for this data source association.

            
          

          - **dataSource** *(dict) --* 

            The data source associated with the S3 Table Integration.

            
            

            - **name** *(string) --* 

              The name of the data source.

              
            

            - **type** *(string) --* 

              The type of the data source.

              
        
          

          - **status** *(string) --* 

            The current status of the data source association.

            
          

          - **statusReason** *(string) --* 

            Additional information about the status of the data source association.

            
          

          - **createdTimeStamp** *(integer) --* 

            The timestamp when the data source association was created.

            
      
    
      

      - **nextToken** *(string) --* 

        The token for the next set of items to return. The token expires after 24 hours.

        
  
  **Exceptions**
  
  *   :py:class:`CloudWatchLogs.Client.exceptions.AccessDeniedException`

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

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

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

  
  *   :py:class:`CloudWatchLogs.Client.exceptions.InternalServerException`

  