pub struct ResetCacheParameterGroupMessage {
pub cache_parameter_group_name: String,
pub parameter_name_values: Option<Vec<ParameterNameValue>>,
pub reset_all_parameters: Option<bool>,
}
Expand description
Represents the input of a ResetCacheParameterGroup
operation.
Fields§
§cache_parameter_group_name: String
The name of the cache parameter group to reset.
parameter_name_values: Option<Vec<ParameterNameValue>>
An array of parameter names to reset to their default values. If ResetAllParameters
is true
, do not use ParameterNameValues
. If ResetAllParameters
is false
, you must specify the name of at least one parameter to reset.
reset_all_parameters: Option<bool>
If true
, all parameters in the cache parameter group are reset to their default values. If false
, only the parameters listed by ParameterNameValues
are reset to their default values.
Valid values: true
| false
Trait Implementations§
Source§impl Clone for ResetCacheParameterGroupMessage
impl Clone for ResetCacheParameterGroupMessage
Source§fn clone(&self) -> ResetCacheParameterGroupMessage
fn clone(&self) -> ResetCacheParameterGroupMessage
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 ResetCacheParameterGroupMessage
impl Default for ResetCacheParameterGroupMessage
Source§fn default() -> ResetCacheParameterGroupMessage
fn default() -> ResetCacheParameterGroupMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResetCacheParameterGroupMessage
impl PartialEq for ResetCacheParameterGroupMessage
Source§fn eq(&self, other: &ResetCacheParameterGroupMessage) -> bool
fn eq(&self, other: &ResetCacheParameterGroupMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ResetCacheParameterGroupMessage
Auto Trait Implementations§
impl Freeze for ResetCacheParameterGroupMessage
impl RefUnwindSafe for ResetCacheParameterGroupMessage
impl Send for ResetCacheParameterGroupMessage
impl Sync for ResetCacheParameterGroupMessage
impl Unpin for ResetCacheParameterGroupMessage
impl UnwindSafe for ResetCacheParameterGroupMessage
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