We recommend new projects start with resources from the AWS provider.
published on Monday, Sep 21, 2026 by Pulumi
We recommend new projects start with resources from the AWS provider.
published on Monday, Sep 21, 2026 by Pulumi
Resource Type definition for AWS::DAX::ParameterGroup
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var daxParamGroup = new AwsNative.Dax.ParameterGroup("daxParamGroup", new()
{
ParameterGroupName = "MyDAXParameterGroup",
Description = "Description for my DAX parameter group",
ParameterNameValues = new Dictionary<string, object?>
{
["query-ttl-millis"] = "75000",
["record-ttl-millis"] = "88000",
},
});
return new Dictionary<string, object?>
{
["parameterGroup"] = daxParamGroup.Id,
};
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/dax"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
daxParamGroup, err := dax.NewParameterGroup(ctx, "daxParamGroup", &dax.ParameterGroupArgs{
ParameterGroupName: pulumi.String("MyDAXParameterGroup"),
Description: pulumi.String("Description for my DAX parameter group"),
ParameterNameValues: pulumi.Any(map[string]interface{}{
"query-ttl-millis": "75000",
"record-ttl-millis": "88000",
}),
})
if err != nil {
return err
}
ctx.Export("parameterGroup", daxParamGroup.ID())
return nil
})
}
Example coming soon!
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const daxParamGroup = new aws_native.dax.ParameterGroup("daxParamGroup", {
parameterGroupName: "MyDAXParameterGroup",
description: "Description for my DAX parameter group",
parameterNameValues: {
"query-ttl-millis": "75000",
"record-ttl-millis": "88000",
},
});
export const parameterGroup = daxParamGroup.id;
import pulumi
import pulumi_aws_native as aws_native
dax_param_group = aws_native.dax.ParameterGroup("daxParamGroup",
parameter_group_name="MyDAXParameterGroup",
description="Description for my DAX parameter group",
parameter_name_values={
"query-ttl-millis": "75000",
"record-ttl-millis": "88000",
})
pulumi.export("parameterGroup", dax_param_group.id)
Example coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var daxParamGroup = new AwsNative.Dax.ParameterGroup("daxParamGroup", new()
{
ParameterGroupName = "MyDAXParameterGroup",
Description = "Description for my DAX parameter group",
ParameterNameValues = new Dictionary<string, object?>
{
["query-ttl-millis"] = "75000",
["record-ttl-millis"] = "88000",
},
});
return new Dictionary<string, object?>
{
["parameterGroup"] = daxParamGroup.Id,
};
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/dax"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
daxParamGroup, err := dax.NewParameterGroup(ctx, "daxParamGroup", &dax.ParameterGroupArgs{
ParameterGroupName: pulumi.String("MyDAXParameterGroup"),
Description: pulumi.String("Description for my DAX parameter group"),
ParameterNameValues: pulumi.Any(map[string]interface{}{
"query-ttl-millis": "75000",
"record-ttl-millis": "88000",
}),
})
if err != nil {
return err
}
ctx.Export("parameterGroup", daxParamGroup.ID())
return nil
})
}
Example coming soon!
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const daxParamGroup = new aws_native.dax.ParameterGroup("daxParamGroup", {
parameterGroupName: "MyDAXParameterGroup",
description: "Description for my DAX parameter group",
parameterNameValues: {
"query-ttl-millis": "75000",
"record-ttl-millis": "88000",
},
});
export const parameterGroup = daxParamGroup.id;
import pulumi
import pulumi_aws_native as aws_native
dax_param_group = aws_native.dax.ParameterGroup("daxParamGroup",
parameter_group_name="MyDAXParameterGroup",
description="Description for my DAX parameter group",
parameter_name_values={
"query-ttl-millis": "75000",
"record-ttl-millis": "88000",
})
pulumi.export("parameterGroup", dax_param_group.id)
Example coming soon!
Create ParameterGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ParameterGroup(name: string, args?: ParameterGroupArgs, opts?: CustomResourceOptions);@overload
def ParameterGroup(resource_name: str,
args: Optional[ParameterGroupArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ParameterGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
parameter_group_name: Optional[str] = None,
parameter_name_values: Optional[Any] = None)func NewParameterGroup(ctx *Context, name string, args *ParameterGroupArgs, opts ...ResourceOption) (*ParameterGroup, error)public ParameterGroup(string name, ParameterGroupArgs? args = null, CustomResourceOptions? opts = null)
public ParameterGroup(String name, ParameterGroupArgs args)
public ParameterGroup(String name, ParameterGroupArgs args, CustomResourceOptions options)
type: aws-native:dax:ParameterGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aws-native_dax_parameter_group" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ParameterGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ParameterGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ParameterGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ParameterGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ParameterGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ParameterGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ParameterGroup resource accepts the following input properties:
- Description string
- A description of the parameter group.
- Parameter
Group stringName - The name of the parameter group.
- Parameter
Name objectValues An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
Search the CloudFormation User Guide for
AWS::DAX::ParameterGroupfor more information about the expected schema for this property.
- Description string
- A description of the parameter group.
- Parameter
Group stringName - The name of the parameter group.
- Parameter
Name interface{}Values An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
Search the CloudFormation User Guide for
AWS::DAX::ParameterGroupfor more information about the expected schema for this property.
- description string
- A description of the parameter group.
- parameter_
group_ stringname - The name of the parameter group.
- parameter_
name_ anyvalues An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
Search the CloudFormation User Guide for
AWS::DAX::ParameterGroupfor more information about the expected schema for this property.
- description String
- A description of the parameter group.
- parameter
Group StringName - The name of the parameter group.
- parameter
Name ObjectValues An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
Search the CloudFormation User Guide for
AWS::DAX::ParameterGroupfor more information about the expected schema for this property.
- description string
- A description of the parameter group.
- parameter
Group stringName - The name of the parameter group.
- parameter
Name anyValues An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
Search the CloudFormation User Guide for
AWS::DAX::ParameterGroupfor more information about the expected schema for this property.
- description str
- A description of the parameter group.
- parameter_
group_ strname - The name of the parameter group.
- parameter_
name_ Anyvalues An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
Search the CloudFormation User Guide for
AWS::DAX::ParameterGroupfor more information about the expected schema for this property.
- description String
- A description of the parameter group.
- parameter
Group StringName - The name of the parameter group.
- parameter
Name AnyValues An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
Search the CloudFormation User Guide for
AWS::DAX::ParameterGroupfor more information about the expected schema for this property.
Outputs
All input properties are implicitly available as output properties. Additionally, the ParameterGroup resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.
published on Monday, Sep 21, 2026 by Pulumi