:doc:`LicenseManager <../../license-manager>` / Client / list_license_asset_groups

*************************
list_license_asset_groups
*************************



.. py:method:: LicenseManager.Client.list_license_asset_groups(**kwargs)

  

  Lists license asset groups.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseAssetGroups>`_  


  **Request Syntax**
  ::

    response = client.list_license_asset_groups(
        Filters=[
            {
                'Name': 'string',
                'Values': [
                    'string',
                ]
            },
        ],
        MaxResults=123,
        NextToken='string'
    )
    
  :type Filters: list
  :param Filters: 

    Filters to scope the results. Following filters are supported

     

    
    * ``LicenseAssetRulesetArn``
    

    

  
    - *(dict) --* 

      A filter name and value pair that is used to return more specific results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs.

      

    
      - **Name** *(string) --* 

        Name of the filter. Filter names are case-sensitive.

        

      
      - **Values** *(list) --* 

        The value of the filter, which is case-sensitive. You can only specify one value for the filter.

        

      
        - *(string) --* 

        
    
    

  :type MaxResults: integer
  :param MaxResults: 

    Maximum number of results to return in a single call.

    

  
  :type NextToken: string
  :param NextToken: 

    Token for the next set of results.

    

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

    
    ::

      {
          'LicenseAssetGroups': [
              {
                  'Name': 'string',
                  'Description': 'string',
                  'LicenseAssetGroupConfigurations': [
                      {
                          'UsageDimension': 'string'
                      },
                  ],
                  'AssociatedLicenseAssetRulesetARNs': [
                      'string',
                  ],
                  'Properties': [
                      {
                          'Key': 'string',
                          'Value': 'string'
                      },
                  ],
                  'LicenseAssetGroupArn': 'string',
                  'Status': 'ACTIVE'|'DISABLED'|'DELETED',
                  'StatusMessage': 'string',
                  'LatestUsageAnalysisTime': datetime(2015, 1, 1),
                  'LatestResourceDiscoveryTime': datetime(2015, 1, 1)
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **LicenseAssetGroups** *(list) --* 

        License asset groups.

        
        

        - *(dict) --* 

          License asset group.

          
          

          - **Name** *(string) --* 

            License asset group name.

            
          

          - **Description** *(string) --* 

            License asset group description.

            
          

          - **LicenseAssetGroupConfigurations** *(list) --* 

            License asset group configurations.

            
            

            - *(dict) --* 

              License asset group configuration.

              
              

              - **UsageDimension** *(string) --* 

                License Asset Group Configuration Usage dimension.

                
          
        
          

          - **AssociatedLicenseAssetRulesetARNs** *(list) --* 

            ARNs of associated license asset rulesets.

            
            

            - *(string) --* 
        
          

          - **Properties** *(list) --* 

            License asset group properties.

            
            

            - *(dict) --* 

              License asset group property.

              
              

              - **Key** *(string) --* 

                Property key.

                
              

              - **Value** *(string) --* 

                Property value.

                
          
        
          

          - **LicenseAssetGroupArn** *(string) --* 

            Amazon Resource Name (ARN) of the license asset group.

            
          

          - **Status** *(string) --* 

            License asset group status.

            
          

          - **StatusMessage** *(string) --* 

            License asset group status message.

            
          

          - **LatestUsageAnalysisTime** *(datetime) --* 

            Latest usage analysis time.

            
          

          - **LatestResourceDiscoveryTime** *(datetime) --* 

            Latest resource discovery time.

            
      
    
      

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

        Token for the next set of results.

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

  
  *   :py:class:`LicenseManager.Client.exceptions.InvalidParameterValueException`

  
  *   :py:class:`LicenseManager.Client.exceptions.AuthorizationException`

  
  *   :py:class:`LicenseManager.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`LicenseManager.Client.exceptions.RateLimitExceededException`

  
  *   :py:class:`LicenseManager.Client.exceptions.ServerInternalException`

  