:doc:`AppRegistry <../../servicecatalog-appregistry>` / Paginator / ListAttributeGroupsForApplication

*********************************
ListAttributeGroupsForApplication
*********************************



.. py:class:: AppRegistry.Paginator.ListAttributeGroupsForApplication

  ::

    
    paginator = client.get_paginator('list_attribute_groups_for_application')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`AppRegistry.Client.list_attribute_groups_for_application`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAttributeGroupsForApplication>`_    


    **Request Syntax**
    ::

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

      The name or ID of the application.

      

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

      
      ::

        {
            'attributeGroupsDetails': [
                {
                    'id': 'string',
                    'arn': 'string',
                    'name': 'string',
                    'createdBy': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **attributeGroupsDetails** *(list) --* 

          The details related to a specific attribute group.

          
          

          - *(dict) --* 

            The details related to a specific AttributeGroup.

            
            

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

              The unique identifier of the attribute group.

              
            

            - **arn** *(string) --* 

              The Amazon resource name (ARN) that specifies the attribute group.

              
            

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

              .. warning::

                

                This field is no longer supported. We recommend you don't use the field when using ``ListAttributeGroupsForApplication``.

                 

               

              The name of the attribute group.

              
            

            - **createdBy** *(string) --* 

              The service principal that created the attribute group.

              
        
      
        

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

          A token to resume pagination.

          
    