:doc:`AppSync <../../appsync>` / Client / list_source_api_associations

****************************
list_source_api_associations
****************************



.. py:method:: AppSync.Client.list_source_api_associations(**kwargs)

  

  Lists the ``SourceApiAssociationSummary`` data.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/ListSourceApiAssociations>`_  


  **Request Syntax**
  ::

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

    The API ID.

    

  
  :type nextToken: string
  :param nextToken: 

    An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results that you want the request to return.

    

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

    
    ::

      {
          'sourceApiAssociationSummaries': [
              {
                  'associationId': 'string',
                  'associationArn': 'string',
                  'sourceApiId': 'string',
                  'sourceApiArn': 'string',
                  'mergedApiId': 'string',
                  'mergedApiArn': 'string',
                  'description': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **sourceApiAssociationSummaries** *(list) --* 

        The ``SourceApiAssociationSummary`` object data.

        
        

        - *(dict) --* 

          Describes the ARNs and IDs of associations, Merged APIs, and source APIs.

          
          

          - **associationId** *(string) --* 

            The ID generated by the AppSync service for the source API association.

            
          

          - **associationArn** *(string) --* 

            The Amazon Resource Name (ARN) of the source API association.

            
          

          - **sourceApiId** *(string) --* 

            The ID of the AppSync source API.

            
          

          - **sourceApiArn** *(string) --* 

            The Amazon Resource Name (ARN) of the AppSync Source API.

            
          

          - **mergedApiId** *(string) --* 

            The ID of the AppSync Merged API.

            
          

          - **mergedApiArn** *(string) --* 

            The Amazon Resource Name (ARN) of the AppSync Merged API.

            
          

          - **description** *(string) --* 

            The description field.

            
      
    
      

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

        An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.

        
  
  **Exceptions**
  
  *   :py:class:`AppSync.Client.exceptions.UnauthorizedException`

  
  *   :py:class:`AppSync.Client.exceptions.BadRequestException`

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

  
  *   :py:class:`AppSync.Client.exceptions.NotFoundException`

  