pub enum UpdateParameterGroupError {
InvalidParameterCombination(String),
InvalidParameterGroupStateFault(String),
InvalidParameterValue(String),
ParameterGroupNotFoundFault(String),
ServiceLinkedRoleNotFoundFault(String),
}
Expand description
Errors returned by UpdateParameterGroup
Variants§
InvalidParameterCombination(String)
Two or more incompatible parameters were specified.
InvalidParameterGroupStateFault(String)
One or more parameters in a parameter group are in an invalid state.
InvalidParameterValue(String)
The value for a parameter is invalid.
ParameterGroupNotFoundFault(String)
The specified parameter group does not exist.
ServiceLinkedRoleNotFoundFault(String)
The specified service linked role (SLR) was not found.
Implementations§
Source§impl UpdateParameterGroupError
impl UpdateParameterGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateParameterGroupError>
Trait Implementations§
Source§impl Debug for UpdateParameterGroupError
impl Debug for UpdateParameterGroupError
Source§impl Display for UpdateParameterGroupError
impl Display for UpdateParameterGroupError
Source§impl Error for UpdateParameterGroupError
impl Error for UpdateParameterGroupError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl StructuralPartialEq for UpdateParameterGroupError
Auto Trait Implementations§
impl Freeze for UpdateParameterGroupError
impl RefUnwindSafe for UpdateParameterGroupError
impl Send for UpdateParameterGroupError
impl Sync for UpdateParameterGroupError
impl Unpin for UpdateParameterGroupError
impl UnwindSafe for UpdateParameterGroupError
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