pub enum CreateStateMachineError {
InvalidArn(String),
InvalidDefinition(String),
InvalidLoggingConfiguration(String),
InvalidName(String),
StateMachineAlreadyExists(String),
StateMachineDeleting(String),
StateMachineLimitExceeded(String),
StateMachineTypeNotSupported(String),
TooManyTags(String),
}
Expand description
Errors returned by CreateStateMachine
Variants§
InvalidArn(String)
The provided Amazon Resource Name (ARN) is invalid.
InvalidDefinition(String)
The provided Amazon States Language definition is invalid.
InvalidLoggingConfiguration(String)
InvalidName(String)
The provided name is invalid.
StateMachineAlreadyExists(String)
A state machine with the same name but a different definition or role ARN already exists.
StateMachineDeleting(String)
The specified state machine is being deleted.
StateMachineLimitExceeded(String)
The maximum number of state machines has been reached. Existing state machines must be deleted before a new state machine can be created.
StateMachineTypeNotSupported(String)
TooManyTags(String)
You've exceeded the number of tags allowed for a resource. See the Limits Topic in the AWS Step Functions Developer Guide.
Implementations§
Source§impl CreateStateMachineError
impl CreateStateMachineError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateStateMachineError>
Trait Implementations§
Source§impl Debug for CreateStateMachineError
impl Debug for CreateStateMachineError
Source§impl Display for CreateStateMachineError
impl Display for CreateStateMachineError
Source§impl Error for CreateStateMachineError
impl Error for CreateStateMachineError
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 CreateStateMachineError
impl PartialEq for CreateStateMachineError
impl StructuralPartialEq for CreateStateMachineError
Auto Trait Implementations§
impl Freeze for CreateStateMachineError
impl RefUnwindSafe for CreateStateMachineError
impl Send for CreateStateMachineError
impl Sync for CreateStateMachineError
impl Unpin for CreateStateMachineError
impl UnwindSafe for CreateStateMachineError
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