Skip to content

Resource: awsDaxParameterGroup

Provides a DAX Parameter Group resource.

Example Usage

/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as aws from "./.gen/providers/aws";
new aws.daxParameterGroup.DaxParameterGroup(this, "example", {
  name: "example",
  parameters: [
    {
      name: "query-ttl-millis",
      value: "100000",
    },
    {
      name: "record-ttl-millis",
      value: "100000",
    },
  ],
});

Argument Reference

The following arguments are supported:

  • name – (Required) The name of the parameter group.

  • description - (Optional, ForceNew) A description of the parameter group.

  • parameters – (Optional) The parameters of the parameter group.

parameters

parameters supports the following:

  • name - (Required) The name of the parameter.
  • value - (Required) The value for the parameter.

Attributes Reference

In addition to all arguments above, the following attributes are exported:

  • id - The name of the parameter group.

Import

DAX Parameter Group can be imported using the name, e.g.,

$ terraform import aws_dax_parameter_group.example my_dax_pg