You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::RDS::Types::CreateDBParameterGroupMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateDBParameterGroupMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  db_parameter_group_name: "String", # required
  db_parameter_group_family: "String", # required
  description: "String", # required
  tags: [
    {
      key: "String",
      value: "String",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_parameter_group_familyString

The DB parameter group family name. A DB parameter group can be associated with one and only one DB parameter group family, and can be applied only to a DB instance running a database engine and engine version compatible with that DB parameter group family.

To list all of the available parameter group families, use the following command:

aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"

The output contains duplicates.

Returns:

  • (String)

    The DB parameter group family name.

#db_parameter_group_nameString

The name of the DB parameter group.

Constraints:

  • Must be 1 to 255 letters, numbers, or hyphens.

  • First character must be a letter

  • Can\'t end with a hyphen or contain two consecutive hyphens

This value is stored as a lowercase string.

Returns:

  • (String)

    The name of the DB parameter group.

#descriptionString

The description for the DB parameter group.

Returns:

  • (String)

    The description for the DB parameter group.

#tagsArray<Types::Tag>

Tags to assign to the DB parameter group.

Returns:

  • (Array<Types::Tag>)

    Tags to assign to the DB parameter group.