ParameterGroupArgs

data class ParameterGroupArgs(val description: Output<String>? = null, val family: Output<String>? = null, val name: Output<String>? = null, val namePrefix: Output<String>? = null, val parameters: Output<List<ParameterGroupParameterArgs>>? = null, val skipDestroy: Output<Boolean>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<ParameterGroupArgs>

Import

Using pulumi import, import DB Parameter groups using the name. For example:

$ pulumi import aws:rds/parameterGroup:ParameterGroup rds_pg rds-pg

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, family: Output<String>? = null, name: Output<String>? = null, namePrefix: Output<String>? = null, parameters: Output<List<ParameterGroupParameterArgs>>? = null, skipDestroy: Output<Boolean>? = null, tags: Output<Map<String, String>>? = null)

Properties

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

The description of the DB parameter group. Defaults to "Managed by Pulumi".

Link copied to clipboard
val family: Output<String>? = null

The family of the DB parameter group.

Link copied to clipboard
val name: Output<String>? = null

The name of the DB parameter group. If omitted, this provider will assign a random, unique name.

Link copied to clipboard
val namePrefix: Output<String>? = null

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

Link copied to clipboard

The DB parameters to apply. See parameter Block below for more details. Note that parameters may differ from a family to an other. Full list of all parameters can be discovered via aws rds describe-db-parameters after initial creation of the group.

Link copied to clipboard
val skipDestroy: Output<Boolean>? = null
Link copied to clipboard
val tags: Output<Map<String, String>>? = null

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.

Functions

Link copied to clipboard
open override fun toJava(): ParameterGroupArgs