class Aws::RDS::Types::ModifyDBParameterGroupMessage

@note When making an API call, you may pass ModifyDBParameterGroupMessage

data as a hash:

    {
      db_parameter_group_name: "String", # required
      parameters: [ # required
        {
          parameter_name: "String",
          parameter_value: "String",
          description: "String",
          source: "String",
          apply_type: "String",
          data_type: "String",
          allowed_values: "String",
          is_modifiable: false,
          minimum_engine_version: "String",
          apply_method: "immediate", # accepts immediate, pending-reboot
          supported_engine_modes: ["String"],
        },
      ],
    }

@!attribute [rw] db_parameter_group_name

The name of the DB parameter group.

Constraints:

* If supplied, must match the name of an existing
  `DBParameterGroup`.

^
@return [String]

@!attribute [rw] parameters

An array of parameter names, values, and the application methods for
the parameter update. At least one parameter name, value, and
application method method must be supplied; later arguments are
optional. A maximum of 20 parameters can be modified in a single
request.

Valid Values (for the application method): `immediate |
pending-reboot`

<note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
can use the `pending-reboot` value for both dynamic and static
parameters.

 When the application method is `immediate`, changes to dynamic
parameters are applied immediately to the DB instances associated
with the parameter group. When the application method is
`pending-reboot`, changes to dynamic and static parameters are
applied after a reboot without failover to the DB instances
associated with the parameter group.

 </note>
@return [Array<Types::Parameter>]

@see docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBParameterGroupMessage AWS API Documentation

Constants

SENSITIVE