Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateDBParameterGroupMessage

import type { CreateDBParameterGroupMessage } from "https://aws-api.deno.dev/v0.4/services/rds.ts?docs=full";
interface CreateDBParameterGroupMessage {
DBParameterGroupFamily: string;
DBParameterGroupName: string;
Description: string;
Tags?: Tag[] | null;
}

§Properties

§
DBParameterGroupFamily: string
[src]

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 for a DB engine, use the following command:

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

For example, to list all of the available parameter group families for the MySQL DB engine, use the following command:

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

Note: The output contains duplicates.

The following are the valid DB engine values:

  • aurora (for MySQL 5.6-compatible Aurora)
  • aurora-mysql (for MySQL 5.7-compatible and MySQL 8.0-compatible Aurora)
  • aurora-postgresql
    
  • mariadb
    
  • mysql
    
  • oracle-ee
    
  • oracle-ee-cdb
    
  • oracle-se2
    
  • oracle-se2-cdb
    
  • postgres
    
  • sqlserver-ee
    
  • sqlserver-se
    
  • sqlserver-ex
    
  • sqlserver-web
    
§
DBParameterGroupName: string
[src]

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

Note: This value is stored as a lowercase string.

§
Description: string
[src]

The description for the DB parameter group.

§
Tags?: Tag[] | null
[src]

Tags to assign to the DB parameter group.