pub struct ModifyClusterParameterGroupMessage {
pub parameter_group_name: String,
pub parameters: Vec<Parameter>,
}
Expand description
Fields§
§parameter_group_name: String
The name of the parameter group to be modified.
parameters: Vec<Parameter>
An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.
For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional.
For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.
Trait Implementations§
Source§impl Clone for ModifyClusterParameterGroupMessage
impl Clone for ModifyClusterParameterGroupMessage
Source§fn clone(&self) -> ModifyClusterParameterGroupMessage
fn clone(&self) -> ModifyClusterParameterGroupMessage
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 ModifyClusterParameterGroupMessage
impl Default for ModifyClusterParameterGroupMessage
Source§fn default() -> ModifyClusterParameterGroupMessage
fn default() -> ModifyClusterParameterGroupMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyClusterParameterGroupMessage
impl PartialEq for ModifyClusterParameterGroupMessage
Source§fn eq(&self, other: &ModifyClusterParameterGroupMessage) -> bool
fn eq(&self, other: &ModifyClusterParameterGroupMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyClusterParameterGroupMessage
Auto Trait Implementations§
impl Freeze for ModifyClusterParameterGroupMessage
impl RefUnwindSafe for ModifyClusterParameterGroupMessage
impl Send for ModifyClusterParameterGroupMessage
impl Sync for ModifyClusterParameterGroupMessage
impl Unpin for ModifyClusterParameterGroupMessage
impl UnwindSafe for ModifyClusterParameterGroupMessage
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