Package com.pulumi.aws.elasticache
Class ParameterGroup
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.elasticache.ParameterGroup
-
public class ParameterGroup extends com.pulumi.resources.CustomResource
Provides an ElastiCache parameter group resource. > **NOTE:** Attempting to remove the `reserved-memory` parameter when `family` is set to `redis2.6` or `redis2.8` may show a perpetual difference in this provider due to an ElastiCache API limitation. Leave that parameter configured with any value to workaround the issue. ## Example Usage <!--Start PulumiCodeChooser --> ```java package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.aws.elasticache.ParameterGroup; import com.pulumi.aws.elasticache.ParameterGroupArgs; import com.pulumi.aws.elasticache.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 default_ = new ParameterGroup("default", ParameterGroupArgs.builder() .name("cache-params") .family("redis2.8") .parameters( ParameterGroupParameterArgs.builder() .name("activerehashing") .value("yes") .build(), ParameterGroupParameterArgs.builder() .name("min-slaves-to-write") .value("2") .build()) .build()); } } ``` <!--End PulumiCodeChooser --> ## Import Using `pulumi import`, import ElastiCache Parameter Groups using the `name`. For example: ```sh $ pulumi import aws:elasticache/parameterGroup:ParameterGroup default redis-params ```
-
-
Constructor Summary
Constructors Constructor Description ParameterGroup(java.lang.String name)
ParameterGroup(java.lang.String name, ParameterGroupArgs args)
ParameterGroup(java.lang.String name, ParameterGroupArgs args, com.pulumi.resources.CustomResourceOptions options)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.pulumi.core.Output<java.lang.String>
arn()
com.pulumi.core.Output<java.lang.String>
description()
com.pulumi.core.Output<java.lang.String>
family()
static ParameterGroup
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, ParameterGroupState state, com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.com.pulumi.core.Output<java.lang.String>
name()
com.pulumi.core.Output<java.util.Optional<java.util.List<ParameterGroupParameter>>>
parameters()
com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>>
tags()
com.pulumi.core.Output<java.util.Map<java.lang.String,java.lang.String>>
tagsAll()
-
-
-
Constructor Detail
-
ParameterGroup
public ParameterGroup(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
ParameterGroup
public ParameterGroup(java.lang.String name, ParameterGroupArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
ParameterGroup
public ParameterGroup(java.lang.String name, ParameterGroupArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.options
- A bag of options that control this resource's behavior.
-
-
Method Detail
-
arn
public com.pulumi.core.Output<java.lang.String> arn()
- Returns:
- The AWS ARN associated with the parameter group.
-
description
public com.pulumi.core.Output<java.lang.String> description()
- Returns:
- The description of the ElastiCache parameter group. Defaults to "Managed by Pulumi".
-
family
public com.pulumi.core.Output<java.lang.String> family()
- Returns:
- The family of the ElastiCache parameter group.
-
name
public com.pulumi.core.Output<java.lang.String> name()
- Returns:
- The name of the ElastiCache parameter.
-
parameters
public com.pulumi.core.Output<java.util.Optional<java.util.List<ParameterGroupParameter>>> parameters()
- Returns:
- A list of ElastiCache parameters to apply.
-
tags
public com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>> tags()
- Returns:
- Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level
-
tagsAll
public com.pulumi.core.Output<java.util.Map<java.lang.String,java.lang.String>> tagsAll()
- Returns:
- A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
-
get
public static ParameterGroup get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable ParameterGroupState state, @Nullable com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.- Parameters:
name
- The _unique_ name of the resulting resource.id
- The _unique_ provider ID of the resource to lookup.state
-options
- Optional settings to control the behavior of the CustomResource.
-
-