Struct rusoto_rds::ResetDBParameterGroupMessage[][src]

pub struct ResetDBParameterGroupMessage {
    pub db_parameter_group_name: String,
    pub parameters: Option<Vec<Parameter>>,
    pub reset_all_parameters: Option<bool>,
}

Fields

The name of the DB parameter group.

Constraints:

  • Must match the name of an existing DBParameterGroup.

To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

MySQL

Valid Values (for Apply method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB instance reboots.

MariaDB

Valid Values (for Apply method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB instance reboots.

Oracle

Valid Values (for Apply method): pending-reboot

Specifies whether (true) or not (false) to reset all parameters in the DB parameter group to default values.

Default: true

Trait Implementations

impl Default for ResetDBParameterGroupMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for ResetDBParameterGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ResetDBParameterGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResetDBParameterGroupMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations