pub struct UpdateParameterGroupRequest {
pub parameter_group_name: String,
pub parameter_name_values: Vec<ParameterNameValue>,
}
Fields§
§parameter_group_name: String
The name of the parameter group.
parameter_name_values: Vec<ParameterNameValue>
An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
Trait Implementations§
Source§impl Clone for UpdateParameterGroupRequest
impl Clone for UpdateParameterGroupRequest
Source§fn clone(&self) -> UpdateParameterGroupRequest
fn clone(&self) -> UpdateParameterGroupRequest
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 Debug for UpdateParameterGroupRequest
impl Debug for UpdateParameterGroupRequest
Source§impl Default for UpdateParameterGroupRequest
impl Default for UpdateParameterGroupRequest
Source§fn default() -> UpdateParameterGroupRequest
fn default() -> UpdateParameterGroupRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdateParameterGroupRequest
Auto Trait Implementations§
impl Freeze for UpdateParameterGroupRequest
impl RefUnwindSafe for UpdateParameterGroupRequest
impl Send for UpdateParameterGroupRequest
impl Sync for UpdateParameterGroupRequest
impl Unpin for UpdateParameterGroupRequest
impl UnwindSafe for UpdateParameterGroupRequest
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