:doc:`AmplifyUIBuilder <../../amplifyuibuilder>` / Paginator / ListComponents

**************
ListComponents
**************



.. py:class:: AmplifyUIBuilder.Paginator.ListComponents

  ::

    
    paginator = client.get_paginator('list_components')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`AmplifyUIBuilder.Client.list_components`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/amplifyuibuilder-2021-08-11/ListComponents>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          appId='string',
          environmentName='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type appId: string
    :param appId: **[REQUIRED]** 

      The unique ID for the Amplify app.

      

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

      The name of the backend environment that is a part of the Amplify app.

      

    
    :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**

      
      ::

        {
            'entities': [
                {
                    'appId': 'string',
                    'environmentName': 'string',
                    'id': 'string',
                    'name': 'string',
                    'componentType': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **entities** *(list) --* 

          The list of components for the Amplify app.

          
          

          - *(dict) --* 

            Contains a summary of a component. This is a read-only data type that is returned by ``ListComponents``.

            
            

            - **appId** *(string) --* 

              The unique ID of the Amplify app associated with the component.

              
            

            - **environmentName** *(string) --* 

              The name of the backend environment that is a part of the Amplify app.

              
            

            - **id** *(string) --* 

              The unique ID of the component.

              
            

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

              The name of the component.

              
            

            - **componentType** *(string) --* 

              The component type.

              
        
      
        

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

          A token to resume pagination.

          
    