:doc:`IdentityStore <../../identitystore>` / Client / update_group

************
update_group
************



.. py:method:: IdentityStore.Client.update_group(**kwargs)

  

  Updates the specified group metadata and attributes in the specified identity store.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/UpdateGroup>`_  


  **Request Syntax**
  ::

    response = client.update_group(
        IdentityStoreId='string',
        GroupId='string',
        Operations=[
            {
                'AttributePath': 'string',
                'AttributeValue': {...}|[...]|123|123.4|'string'|True|None
            },
        ]
    )
    
  :type IdentityStoreId: string
  :param IdentityStoreId: **[REQUIRED]** 

    The globally unique identifier for the identity store.

    

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

    The identifier for a group in the identity store.

    

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

    A list of ``AttributeOperation`` objects to apply to the requested group. These operations might add, replace, or remove an attribute. For more information on the attributes that can be added, replaced, or removed, see `Group <https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_Group.html>`__.

    

  
    - *(dict) --* 

      An operation that applies to the requested group. This operation might add, replace, or remove an attribute.

      

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

        A string representation of the path to a given attribute or sub-attribute. Supports JMESPath.

        

      
      - **AttributeValue** (:ref:`document<document>`) -- 

        The value of the attribute. This is a ``Document`` type. This type is not supported by Java V1, Go V1, and older versions of the CLI.

        

      
    

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

    
    ::

      {}
      
    **Response Structure**

    

    - *(dict) --* 
  
  **Exceptions**
  
  *   :py:class:`IdentityStore.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`IdentityStore.Client.exceptions.ThrottlingException`

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

  
  *   :py:class:`IdentityStore.Client.exceptions.ConflictException`

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

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

  
  *   :py:class:`IdentityStore.Client.exceptions.ServiceQuotaExceededException`

  