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

**************************
create_license_asset_group
**************************



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

  

  Creates a license asset group.

  

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


  **Request Syntax**
  ::

    response = client.create_license_asset_group(
        Name='string',
        Description='string',
        LicenseAssetGroupConfigurations=[
            {
                'UsageDimension': 'string'
            },
        ],
        AssociatedLicenseAssetRulesetARNs=[
            'string',
        ],
        Properties=[
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        Tags=[
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        ClientToken='string'
    )
    
  :type Name: string
  :param Name: **[REQUIRED]** 

    License asset group name.

    

  
  :type Description: string
  :param Description: 

    License asset group description.

    

  
  :type LicenseAssetGroupConfigurations: list
  :param LicenseAssetGroupConfigurations: **[REQUIRED]** 

    License asset group configurations.

    

  
    - *(dict) --* 

      License asset group configuration.

      

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

        License Asset Group Configuration Usage dimension.

        

      
    

  :type AssociatedLicenseAssetRulesetARNs: list
  :param AssociatedLicenseAssetRulesetARNs: **[REQUIRED]** 

    ARNs of associated license asset rulesets.

    

  
    - *(string) --* 

    

  :type Properties: list
  :param Properties: 

    License asset group properties.

    

  
    - *(dict) --* 

      License asset group property.

      

    
      - **Key** *(string) --* **[REQUIRED]** 

        Property key.

        

      
      - **Value** *(string) --* **[REQUIRED]** 

        Property value.

        

      
    

  :type Tags: list
  :param Tags: 

    Tags to add to the license asset group.

    

  
    - *(dict) --* 

      Details about the tags for a resource. For more information about tagging support in License Manager, see the `TagResource <https://docs.aws.amazon.com/license-manager/latest/APIReference/API_TagResource.html>`__ operation.

      

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

        The tag key.

        

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

        The tag value.

        

      
    

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

    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    

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

    
    ::

      {
          'LicenseAssetGroupArn': 'string',
          'Status': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

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

        
      

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

        License asset group status.

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

  