pub enum UpdateRecordsError {
InternalError(String),
InvalidLambdaFunctionOutput(String),
InvalidParameter(String),
LambdaThrottled(String),
LimitExceeded(String),
NotAuthorized(String),
ResourceConflict(String),
ResourceNotFound(String),
TooManyRequests(String),
}Expand description
Errors returned by UpdateRecords
Variants§
InternalError(String)
Indicates an internal service error.
InvalidLambdaFunctionOutput(String)
The AWS Lambda function returned invalid output or an exception.
InvalidParameter(String)
Thrown when a request parameter does not comply with the associated constraints.
LambdaThrottled(String)
AWS Lambda throttled your account, please contact AWS Support
LimitExceeded(String)
Thrown when the limit on the number of objects or operations has been exceeded.
NotAuthorized(String)
Thrown when a user is not authorized to access the requested resource.
ResourceConflict(String)
Thrown if an update can't be applied because the resource was changed by another call and this would result in a conflict.
ResourceNotFound(String)
Thrown if the resource doesn't exist.
TooManyRequests(String)
Thrown if the request is throttled.
Implementations§
Source§impl UpdateRecordsError
impl UpdateRecordsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateRecordsError>
Trait Implementations§
Source§impl Debug for UpdateRecordsError
impl Debug for UpdateRecordsError
Source§impl Display for UpdateRecordsError
impl Display for UpdateRecordsError
Source§impl Error for UpdateRecordsError
impl Error for UpdateRecordsError
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()
Source§impl PartialEq for UpdateRecordsError
impl PartialEq for UpdateRecordsError
impl StructuralPartialEq for UpdateRecordsError
Auto Trait Implementations§
impl Freeze for UpdateRecordsError
impl RefUnwindSafe for UpdateRecordsError
impl Send for UpdateRecordsError
impl Sync for UpdateRecordsError
impl Unpin for UpdateRecordsError
impl UnwindSafe for UpdateRecordsError
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