:doc:`MemoryDB <../../memorydb>` / Client / update_parameter_group

**********************
update_parameter_group
**********************



.. py:method:: MemoryDB.Client.update_parameter_group(**kwargs)

  

  Updates the parameters of a parameter group. You can modify up to 20 parameters in a single request by submitting a list parameter name and value pairs.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateParameterGroup>`_  


  **Request Syntax**
  ::

    response = client.update_parameter_group(
        ParameterGroupName='string',
        ParameterNameValues=[
            {
                'ParameterName': 'string',
                'ParameterValue': 'string'
            },
        ]
    )
    
  :type ParameterGroupName: string
  :param ParameterGroupName: **[REQUIRED]** 

    The name of the parameter group to update.

    

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

    An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be updated per request.

    

  
    - *(dict) --* 

      Describes a name-value pair that is used to update the value of a parameter.

      

    
      - **ParameterName** *(string) --* 

        The name of the parameter

        

      
      - **ParameterValue** *(string) --* 

        The value of the parameter

        

      
    

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

    
    ::

      {
          'ParameterGroup': {
              'Name': 'string',
              'Family': 'string',
              'Description': 'string',
              'ARN': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ParameterGroup** *(dict) --* 

        The updated parameter group

        
        

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

          The name of the parameter group

          
        

        - **Family** *(string) --* 

          The name of the parameter group family that this parameter group is compatible with.

          
        

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

          A description of the parameter group

          
        

        - **ARN** *(string) --* 

          The Amazon Resource Name (ARN) of the parameter group

          
    
  
  **Exceptions**
  
  *   :py:class:`MemoryDB.Client.exceptions.ParameterGroupNotFoundFault`

  
  *   :py:class:`MemoryDB.Client.exceptions.InvalidParameterGroupStateFault`

  
  *   :py:class:`MemoryDB.Client.exceptions.ServiceLinkedRoleNotFoundFault`

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

  
  *   :py:class:`MemoryDB.Client.exceptions.InvalidParameterCombinationException`

  