pub enum DescribeCollectionError {
AccessDenied(String),
InternalServerError(String),
InvalidParameter(String),
ProvisionedThroughputExceeded(String),
ResourceNotFound(String),
Throttling(String),
}Expand description
Errors returned by DescribeCollection
Variants§
AccessDenied(String)
You are not authorized to perform the action.
InternalServerError(String)
Amazon Rekognition experienced a service issue. Try your call again.
InvalidParameter(String)
Input parameter violated a constraint. Validate your parameter before calling the API operation again.
ProvisionedThroughputExceeded(String)
The number of requests exceeded your throughput limit. If you want to increase this limit, contact Amazon Rekognition.
ResourceNotFound(String)
The resource specified in the request cannot be found.
Throttling(String)
Amazon Rekognition is temporarily unable to process the request. Try your call again.
Implementations§
Source§impl DescribeCollectionError
impl DescribeCollectionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeCollectionError>
Trait Implementations§
Source§impl Debug for DescribeCollectionError
impl Debug for DescribeCollectionError
Source§impl Display for DescribeCollectionError
impl Display for DescribeCollectionError
Source§impl Error for DescribeCollectionError
impl Error for DescribeCollectionError
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 DescribeCollectionError
impl PartialEq for DescribeCollectionError
impl StructuralPartialEq for DescribeCollectionError
Auto Trait Implementations§
impl Freeze for DescribeCollectionError
impl RefUnwindSafe for DescribeCollectionError
impl Send for DescribeCollectionError
impl Sync for DescribeCollectionError
impl Unpin for DescribeCollectionError
impl UnwindSafe for DescribeCollectionError
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