ParameterGroup

class ParameterGroup : KotlinCustomResource

Provides a MemoryDB Parameter Group. More information about parameter groups can be found in the MemoryDB User Guide.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.memorydb.ParameterGroup;
import com.pulumi.aws.memorydb.ParameterGroupArgs;
import com.pulumi.aws.memorydb.inputs.ParameterGroupParameterArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ParameterGroup("example", ParameterGroupArgs.builder()
.family("memorydb_redis6")
.parameters(ParameterGroupParameterArgs.builder()
.name("activedefrag")
.value("yes")
.build())
.build());
}
}

Import

Use the name to import a parameter group. For example

$ pulumi import aws:memorydb/parameterGroup:ParameterGroup example my-parameter-group

Properties

Link copied to clipboard
val arn: Output<String>

The ARN of the parameter group.

Link copied to clipboard
val description: Output<String>?

Description for the parameter group.

Link copied to clipboard
val family: Output<String>

The engine version that the parameter group can be used with. The following arguments are optional:

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

Name of the parameter group. If omitted, the provider will assign a random, unique name. Conflicts with name_prefix.

Link copied to clipboard
val namePrefix: Output<String>

Creates a unique name beginning with the specified prefix. Conflicts with name.

Link copied to clipboard

Set of MemoryDB parameters to apply. Any parameters not specified will fall back to their family defaults. Detailed below.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>