pub enum CreateActivityError {
ActivityLimitExceeded(String),
InvalidName(String),
TooManyTags(String),
}
Expand description
Errors returned by CreateActivity
Variants§
ActivityLimitExceeded(String)
The maximum number of activities has been reached. Existing activities must be deleted before a new activity can be created.
InvalidName(String)
The provided name is invalid.
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 CreateActivityError
impl CreateActivityError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateActivityError>
Trait Implementations§
Source§impl Debug for CreateActivityError
impl Debug for CreateActivityError
Source§impl Display for CreateActivityError
impl Display for CreateActivityError
Source§impl Error for CreateActivityError
impl Error for CreateActivityError
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 CreateActivityError
impl PartialEq for CreateActivityError
impl StructuralPartialEq for CreateActivityError
Auto Trait Implementations§
impl Freeze for CreateActivityError
impl RefUnwindSafe for CreateActivityError
impl Send for CreateActivityError
impl Sync for CreateActivityError
impl Unpin for CreateActivityError
impl UnwindSafe for CreateActivityError
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