AwsRdsParameterGroupArgs

interface AwsRdsParameterGroupArgs { description: Input<string>; family: Input<string>; name: string; parameters?: AwsRdsParameter[]; scope: 'cluster' | 'instance'; tags?: AwsRdsTags; }

Inputs for an Aurora cluster or instance parameter group.

Example

CODE
const parameterGroup: AwsRdsParameterGroupArgs = {
  name: 'postgresTuning',
  family: 'aurora-postgresql15',
  scope: 'cluster',
  description: 'PostgreSQL tuning',
};

Properties

description: Input<string>

Human-readable parameter group description.

family: Input<string>

Parameter group family, for example aurora-mysql8.0 or aurora-postgresql15.

name: string

Required camelCase naming purpose and synchronous logical identity.

parameters: AwsRdsParameter[]

Parameters that differ from the engine defaults.

scope: 'cluster' | 'instance'

Whether this is a cluster-level or instance-level parameter group.

tags: AwsRdsTags

Additional tags. The Name tag is reserved.