pub enum StartExecutionError {
ExecutionAlreadyExists(String),
ExecutionLimitExceeded(String),
InvalidArn(String),
InvalidExecutionInput(String),
InvalidName(String),
StateMachineDeleting(String),
StateMachineDoesNotExist(String),
}
Expand description
Errors returned by StartExecution
Variants§
ExecutionAlreadyExists(String)
The execution has the same name
as another execution (but a different input
).
Executions with the same name
and input
are considered idempotent.
ExecutionLimitExceeded(String)
The maximum number of running executions has been reached. Running executions must end or be stopped before a new execution can be started.
InvalidArn(String)
The provided Amazon Resource Name (ARN) is invalid.
InvalidExecutionInput(String)
The provided JSON input data is invalid.
InvalidName(String)
The provided name is invalid.
StateMachineDeleting(String)
The specified state machine is being deleted.
StateMachineDoesNotExist(String)
The specified state machine does not exist.
Implementations§
Source§impl StartExecutionError
impl StartExecutionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StartExecutionError>
Trait Implementations§
Source§impl Debug for StartExecutionError
impl Debug for StartExecutionError
Source§impl Display for StartExecutionError
impl Display for StartExecutionError
Source§impl Error for StartExecutionError
impl Error for StartExecutionError
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 StartExecutionError
impl PartialEq for StartExecutionError
impl StructuralPartialEq for StartExecutionError
Auto Trait Implementations§
impl Freeze for StartExecutionError
impl RefUnwindSafe for StartExecutionError
impl Send for StartExecutionError
impl Sync for StartExecutionError
impl Unpin for StartExecutionError
impl UnwindSafe for StartExecutionError
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