pub enum CreateCustomActionTypeError {
ConcurrentModification(String),
InvalidTags(String),
LimitExceeded(String),
TooManyTags(String),
}
Expand description
Errors returned by CreateCustomActionType
Variants§
ConcurrentModification(String)
Unable to modify the tag due to a simultaneous update request.
InvalidTags(String)
The specified resource tags are invalid.
LimitExceeded(String)
The number of pipelines associated with the AWS account has exceeded the limit allowed for the account.
TooManyTags(String)
The tags limit for a resource has been exceeded.
Implementations§
Source§impl CreateCustomActionTypeError
impl CreateCustomActionTypeError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateCustomActionTypeError>
Trait Implementations§
Source§impl Debug for CreateCustomActionTypeError
impl Debug for CreateCustomActionTypeError
Source§impl Error for CreateCustomActionTypeError
impl Error for CreateCustomActionTypeError
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()
impl StructuralPartialEq for CreateCustomActionTypeError
Auto Trait Implementations§
impl Freeze for CreateCustomActionTypeError
impl RefUnwindSafe for CreateCustomActionTypeError
impl Send for CreateCustomActionTypeError
impl Sync for CreateCustomActionTypeError
impl Unpin for CreateCustomActionTypeError
impl UnwindSafe for CreateCustomActionTypeError
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