MemoryDB.Client.
reset_parameter_group
(**kwargs)¶Modifies the parameters of a parameter group to the engine or system default value. You can reset specific parameters by submitting a list of parameter names. To reset the entire parameter group, specify the AllParameters and ParameterGroupName parameters.
See also: AWS API Documentation
Request Syntax
response = client.reset_parameter_group(
ParameterGroupName='string',
AllParameters=True|False,
ParameterNames=[
'string',
]
)
[REQUIRED]
The name of the parameter group to reset.
An array of parameter names to reset to their default values. If AllParameters is true, do not use ParameterNames. If AllParameters is false, you must specify the name of at least one parameter to reset.
dict
Response Syntax
{
'ParameterGroup': {
'Name': 'string',
'Family': 'string',
'Description': 'string',
'ARN': 'string'
}
}
Response Structure
(dict) --
ParameterGroup (dict) --
The parameter group being reset.
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
MemoryDB.Client.exceptions.InvalidParameterGroupStateFault
MemoryDB.Client.exceptions.ParameterGroupNotFoundFault
MemoryDB.Client.exceptions.ServiceLinkedRoleNotFoundFault
MemoryDB.Client.exceptions.InvalidParameterValueException
MemoryDB.Client.exceptions.InvalidParameterCombinationException