Learn R Programming

paws.database (version 0.1.12)

dax_create_parameter_group: Creates a new parameter group

Description

Creates a new parameter group. A parameter group is a collection of parameters that you apply to all of the nodes in a DAX cluster.

Usage

dax_create_parameter_group(ParameterGroupName, Description)

Value

A list with the following syntax:

list(
  ParameterGroup = list(
    ParameterGroupName = "string",
    Description = "string"
  )
)

Arguments

ParameterGroupName

[required] The name of the parameter group to apply to all of the clusters in this replication group.

Description

A description of the parameter group.

Request syntax

svc$create_parameter_group(
  ParameterGroupName = "string",
  Description = "string"
)