Parameter Group Args
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
Content copied to clipboard
Properties
Link copied to clipboard
The description of the DB parameter group. Defaults to "Managed by Pulumi".
Link copied to clipboard
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