pub enum UpdateResourceShareError {
IdempotentParameterMismatch(String),
InvalidClientToken(String),
InvalidParameter(String),
MalformedArn(String),
MissingRequiredParameter(String),
OperationNotPermitted(String),
ServerInternal(String),
ServiceUnavailable(String),
UnknownResource(String),
}
Expand description
Errors returned by UpdateResourceShare
Variants§
IdempotentParameterMismatch(String)
A client token input parameter was reused with an operation, but at least one of the other input parameters is different from the previous call to the operation.
InvalidClientToken(String)
A client token is not valid.
InvalidParameter(String)
A parameter is not valid.
MalformedArn(String)
The format of an Amazon Resource Name (ARN) is not valid.
MissingRequiredParameter(String)
A required input parameter is missing.
OperationNotPermitted(String)
The requested operation is not permitted.
ServerInternal(String)
The service could not respond to the request due to an internal problem.
The service is not available.
UnknownResource(String)
A specified resource was not found.
Implementations§
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateResourceShareError>
Trait Implementations§
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()
Auto Trait Implementations§
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