#[non_exhaustive]
pub enum UpdateResourceCollectionErrorKind {
AccessDeniedException(AccessDeniedException),
ConflictException(ConflictException),
InternalServerException(InternalServerException),
ThrottlingException(ThrottlingException),
ValidationException(ValidationException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the UpdateResourceCollection
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
AccessDeniedException(AccessDeniedException)
You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management in the IAM User Guide.
ConflictException(ConflictException)
An exception that is thrown when a conflict occurs.
InternalServerException(InternalServerException)
An internal failure in an Amazon service occurred.
ThrottlingException(ThrottlingException)
The request was denied due to a request throttling.
ValidationException(ValidationException)
Contains information about data passed in to a field during a request that is not valid.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl Send for UpdateResourceCollectionErrorKind
impl Sync for UpdateResourceCollectionErrorKind
impl Unpin for UpdateResourceCollectionErrorKind
impl !UnwindSafe for UpdateResourceCollectionErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more