pub enum CreateScriptError {
Conflict(String),
InternalService(String),
InvalidRequest(String),
TaggingFailed(String),
Unauthorized(String),
}Expand description
Errors returned by CreateScript
Variants§
Conflict(String)
The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
InternalService(String)
The service encountered an unrecoverable internal failure while processing the request. Clients can retry such requests immediately or after a waiting period.
InvalidRequest(String)
One or more parameter values in the request are invalid. Correct the invalid parameter values before retrying.
TaggingFailed(String)
The requested tagging operation did not succeed. This may be due to invalid tag format or the maximum tag limit may have been exceeded. Resolve the issue before retrying.
The client failed authentication. Clients should not retry such requests.
Implementations§
Source§impl CreateScriptError
impl CreateScriptError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateScriptError>
Trait Implementations§
Source§impl Debug for CreateScriptError
impl Debug for CreateScriptError
Source§impl Display for CreateScriptError
impl Display for CreateScriptError
Source§impl Error for CreateScriptError
impl Error for CreateScriptError
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 CreateScriptError
impl PartialEq for CreateScriptError
impl StructuralPartialEq for CreateScriptError
Auto Trait Implementations§
impl Freeze for CreateScriptError
impl RefUnwindSafe for CreateScriptError
impl Send for CreateScriptError
impl Sync for CreateScriptError
impl Unpin for CreateScriptError
impl UnwindSafe for CreateScriptError
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