pub enum UpdateStateMachineError {
InvalidArn(String),
InvalidDefinition(String),
InvalidLoggingConfiguration(String),
MissingRequiredParameter(String),
StateMachineDeleting(String),
StateMachineDoesNotExist(String),
}
Expand description
Errors returned by UpdateStateMachine
Variants§
InvalidArn(String)
The provided Amazon Resource Name (ARN) is invalid.
InvalidDefinition(String)
The provided Amazon States Language definition is invalid.
InvalidLoggingConfiguration(String)
MissingRequiredParameter(String)
Request is missing a required parameter. This error occurs if both definition
and roleArn
are not specified.
StateMachineDeleting(String)
The specified state machine is being deleted.
StateMachineDoesNotExist(String)
The specified state machine does not exist.
Implementations§
Source§impl UpdateStateMachineError
impl UpdateStateMachineError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateStateMachineError>
Trait Implementations§
Source§impl Debug for UpdateStateMachineError
impl Debug for UpdateStateMachineError
Source§impl Display for UpdateStateMachineError
impl Display for UpdateStateMachineError
Source§impl Error for UpdateStateMachineError
impl Error for UpdateStateMachineError
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 UpdateStateMachineError
impl PartialEq for UpdateStateMachineError
impl StructuralPartialEq for UpdateStateMachineError
Auto Trait Implementations§
impl Freeze for UpdateStateMachineError
impl RefUnwindSafe for UpdateStateMachineError
impl Send for UpdateStateMachineError
impl Sync for UpdateStateMachineError
impl Unpin for UpdateStateMachineError
impl UnwindSafe for UpdateStateMachineError
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