Create Parameter Group
memorydb_create_parameter_group | R Documentation |
Creates a new MemoryDB parameter group¶
Description¶
Creates a new MemoryDB parameter group. A parameter group is a collection of parameters and their values that are applied to all of the nodes in any cluster. For more information, see Configuring engine parameters using parameter groups.
Usage¶
memorydb_create_parameter_group(ParameterGroupName, Family, Description,
Tags)
Arguments¶
ParameterGroupName |
[required] The name of the parameter group. |
Family |
[required] The name of the parameter group family that the parameter group can be used with. |
Description |
An optional description of the parameter group. |
Tags |
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted. |
Value¶
A list with the following syntax:
list(
ParameterGroup = list(
Name = "string",
Family = "string",
Description = "string",
ARN = "string"
)
)
Request syntax¶
svc$create_parameter_group(
ParameterGroupName = "string",
Family = "string",
Description = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)