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]

[src]

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

impl Debug for ResetDBParameterGroupMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ResetDBParameterGroupMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations