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 be 1 to 255 alphanumeric characters

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

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.

impl Clone for ResetDBParameterGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more