:doc:`AppRegistry <../../servicecatalog-appregistry>` / Client / list_attribute_groups

*********************
list_attribute_groups
*********************



.. py:method:: AppRegistry.Client.list_attribute_groups(**kwargs)

  

  Lists all attribute groups which you have access to. Results are paginated.

  

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


  **Request Syntax**
  ::

    response = client.list_attribute_groups(
        nextToken='string',
        maxResults=123
    )
    
  :type nextToken: string
  :param nextToken: 

    The token to use to get the next page of results after a previous API call.

    

  
  :type maxResults: integer
  :param maxResults: 

    The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.

    

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

    
    ::

      {
          'attributeGroups': [
              {
                  'id': 'string',
                  'arn': 'string',
                  'name': 'string',
                  'description': 'string',
                  'creationTime': datetime(2015, 1, 1),
                  'lastUpdateTime': datetime(2015, 1, 1),
                  'createdBy': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **attributeGroups** *(list) --* 

        This list of attribute groups.

        
        

        - *(dict) --* 

          Summary of a Amazon Web Services Service Catalog AppRegistry attribute group.

          
          

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

            The globally unique attribute group identifier of the attribute group.

            
          

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

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

            
          

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

            The name of the attribute group.

            
          

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

            The description of the attribute group that the user provides.

            
          

          - **creationTime** *(datetime) --* 

            The ISO-8601 formatted timestamp of the moment the attribute group was created.

            
          

          - **lastUpdateTime** *(datetime) --* 

            The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.

            
          

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

            The service principal that created the attribute group.

            
      
    
      

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

        The token to use to get the next page of results after a previous API call.

        
  
  **Exceptions**
  
  *   :py:class:`AppRegistry.Client.exceptions.ValidationException`

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

  