pub enum UpdateEnrollmentStatusError {
AccessDenied(String),
InternalServer(String),
InvalidParameterValue(String),
MissingAuthenticationToken(String),
ServiceUnavailable(String),
Throttling(String),
}
Expand description
Errors returned by UpdateEnrollmentStatus
Variants§
AccessDenied(String)
You do not have sufficient access to perform this action.
InternalServer(String)
An internal error has occurred. Try your call again.
InvalidParameterValue(String)
An invalid or out-of-range value was supplied for the input parameter.
MissingAuthenticationToken(String)
The request must contain either a valid (registered) AWS access key ID or X.509 certificate.
The request has failed due to a temporary failure of the server.
Throttling(String)
The request was denied due to request throttling.
Implementations§
Source§impl UpdateEnrollmentStatusError
impl UpdateEnrollmentStatusError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateEnrollmentStatusError>
Trait Implementations§
Source§impl Debug for UpdateEnrollmentStatusError
impl Debug for UpdateEnrollmentStatusError
Source§impl Error for UpdateEnrollmentStatusError
impl Error for UpdateEnrollmentStatusError
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 UpdateEnrollmentStatusError
Auto Trait Implementations§
impl Freeze for UpdateEnrollmentStatusError
impl RefUnwindSafe for UpdateEnrollmentStatusError
impl Send for UpdateEnrollmentStatusError
impl Sync for UpdateEnrollmentStatusError
impl Unpin for UpdateEnrollmentStatusError
impl UnwindSafe for UpdateEnrollmentStatusError
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