pub struct ModifyDBParameterGroupMessage {
pub db_parameter_group_name: String,
pub parameters: Vec<Parameter>,
}
Expand description
Fields§
§db_parameter_group_name: String
The name of the DB parameter group.
Constraints:
-
If supplied, must match the name of an existing
DBParameterGroup
.
parameters: Vec<Parameter>
An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply 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
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 you reboot the DB instance without failover.
Trait Implementations§
Source§impl Clone for ModifyDBParameterGroupMessage
impl Clone for ModifyDBParameterGroupMessage
Source§fn clone(&self) -> ModifyDBParameterGroupMessage
fn clone(&self) -> ModifyDBParameterGroupMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ModifyDBParameterGroupMessage
impl Default for ModifyDBParameterGroupMessage
Source§fn default() -> ModifyDBParameterGroupMessage
fn default() -> ModifyDBParameterGroupMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyDBParameterGroupMessage
impl PartialEq for ModifyDBParameterGroupMessage
Source§fn eq(&self, other: &ModifyDBParameterGroupMessage) -> bool
fn eq(&self, other: &ModifyDBParameterGroupMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyDBParameterGroupMessage
Auto Trait Implementations§
impl Freeze for ModifyDBParameterGroupMessage
impl RefUnwindSafe for ModifyDBParameterGroupMessage
impl Send for ModifyDBParameterGroupMessage
impl Sync for ModifyDBParameterGroupMessage
impl Unpin for ModifyDBParameterGroupMessage
impl UnwindSafe for ModifyDBParameterGroupMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more