pub struct ModifyCacheParameterGroupMessage {
pub cache_parameter_group_name: String,
pub parameter_name_values: Vec<ParameterNameValue>,
}
Expand description
Represents the input of a ModifyCacheParameterGroup
operation.
Fields§
§cache_parameter_group_name: String
The name of the cache parameter group to modify.
parameter_name_values: Vec<ParameterNameValue>
An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be modified per request.
Trait Implementations§
Source§impl Clone for ModifyCacheParameterGroupMessage
impl Clone for ModifyCacheParameterGroupMessage
Source§fn clone(&self) -> ModifyCacheParameterGroupMessage
fn clone(&self) -> ModifyCacheParameterGroupMessage
Returns a copy 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 ModifyCacheParameterGroupMessage
impl Default for ModifyCacheParameterGroupMessage
Source§fn default() -> ModifyCacheParameterGroupMessage
fn default() -> ModifyCacheParameterGroupMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyCacheParameterGroupMessage
impl PartialEq for ModifyCacheParameterGroupMessage
Source§fn eq(&self, other: &ModifyCacheParameterGroupMessage) -> bool
fn eq(&self, other: &ModifyCacheParameterGroupMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyCacheParameterGroupMessage
Auto Trait Implementations§
impl Freeze for ModifyCacheParameterGroupMessage
impl RefUnwindSafe for ModifyCacheParameterGroupMessage
impl Send for ModifyCacheParameterGroupMessage
impl Sync for ModifyCacheParameterGroupMessage
impl Unpin for ModifyCacheParameterGroupMessage
impl UnwindSafe for ModifyCacheParameterGroupMessage
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