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

**********************
delete_attribute_group
**********************



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

  

  Deletes an attribute group, specified either by its attribute group ID, name, or ARN.

  

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


  **Request Syntax**
  ::

    response = client.delete_attribute_group(
        attributeGroup='string'
    )
    
  :type attributeGroup: string
  :param attributeGroup: **[REQUIRED]** 

    The name, ID, or ARN of the attribute group that holds the attributes to describe the application.

    

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

    
    ::

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

    

    - *(dict) --* 
      

      - **attributeGroup** *(dict) --* 

        Information about the deleted 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.

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

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

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

  