update_parameter_group

DAX.Client.update_parameter_group(**kwargs)

Modifies 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

Request Syntax

response = client.update_parameter_group(
    ParameterGroupName='string',
    ParameterNameValues=[
        {
            'ParameterName': 'string',
            'ParameterValue': 'string'
        },
    ]
)
Parameters
  • ParameterGroupName (string) --

    [REQUIRED]

    The name of the parameter group.

  • ParameterNameValues (list) --

    [REQUIRED]

    An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.

    Note

    record-ttl-millis and query-ttl-millis are the only supported parameter names. For more details, see Configuring TTL Settings.

    • (dict) --

      An individual DAX parameter.

      • ParameterName (string) --

        The name of the parameter.

      • ParameterValue (string) --

        The value of the parameter.

Return type

dict

Returns

Response Syntax

{
    'ParameterGroup': {
        'ParameterGroupName': 'string',
        'Description': 'string'
    }
}

Response Structure

  • (dict) --

    • ParameterGroup (dict) --

      The parameter group that has been modified.

      • ParameterGroupName (string) --

        The name of the parameter group.

      • Description (string) --

        A description of the parameter group.

Exceptions

  • DAX.Client.exceptions.InvalidParameterGroupStateFault
  • DAX.Client.exceptions.ParameterGroupNotFoundFault
  • DAX.Client.exceptions.ServiceLinkedRoleNotFoundFault
  • DAX.Client.exceptions.InvalidParameterValueException
  • DAX.Client.exceptions.InvalidParameterCombinationException