AwsRdsParameter

interface AwsRdsParameter { applyMethod?: 'immediate' | 'pending-reboot'; name: string; value: Input<string>; }

A DB parameter applied by an RDS parameter-group capability.

Example

CODE
const parameter: AwsRdsParameter = { name: 'log_min_duration_statement', value: '500' };

Properties

applyMethod: 'immediate' | 'pending-reboot'

Apply timing. Defaults to immediate.

name: string

Parameter name accepted by the selected RDS parameter-group family.

value: Input<string>

Parameter value.