Enum rusoto_rekognition::CompareFacesError [] [src]

pub enum CompareFacesError {
    AccessDenied(String),
    ImageTooLarge(String),
    InternalServerError(String),
    InvalidImageFormat(String),
    InvalidParameter(String),
    InvalidS3Object(String),
    ProvisionedThroughputExceeded(String),
    Throttling(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CompareFaces

Variants

You are not authorized to perform the action.

The input image size exceeds the allowed limit. For more information, see limits.

Amazon Rekognition experienced a service issue. Try your call again.

The provided image format is not supported.

Input parameter violated a constraint. Validate your parameter before calling the API operation again.

Amazon Rekognition is unable to access the S3 object specified in the request.

The number of requests exceeded your throughput limit. If you want to increase this limit, contact Amazon Rekognition.

Amazon Rekognition is temporarily unable to process the request. Try your call again.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl CompareFacesError
[src]

Trait Implementations

impl Debug for CompareFacesError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for CompareFacesError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<Error> for CompareFacesError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for CompareFacesError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for CompareFacesError
[src]

[src]

Performs the conversion.

impl From<Error> for CompareFacesError
[src]

[src]

Performs the conversion.

impl Display for CompareFacesError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for CompareFacesError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

Auto Trait Implementations