Enum rusoto_rekognition::GetLabelDetectionError[][src]

pub enum GetLabelDetectionError {
    AccessDenied(String),
    InternalServerError(String),
    InvalidPaginationToken(String),
    InvalidParameter(String),
    ProvisionedThroughputExceeded(String),
    ResourceNotFound(String),
    Throttling(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by GetLabelDetection

Variants

You are not authorized to perform the action.

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

Pagination token in the request is not valid.

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

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

The collection specified in the request cannot be found.

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 GetLabelDetectionError
[src]

Trait Implementations

impl Debug for GetLabelDetectionError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for GetLabelDetectionError
[src]

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

This method tests for !=.

impl From<Error> for GetLabelDetectionError
[src]

Performs the conversion.

impl From<CredentialsError> for GetLabelDetectionError
[src]

Performs the conversion.

impl From<HttpDispatchError> for GetLabelDetectionError
[src]

Performs the conversion.

impl From<Error> for GetLabelDetectionError
[src]

Performs the conversion.

impl Display for GetLabelDetectionError
[src]

Formats the value using the given formatter. Read more

impl Error for GetLabelDetectionError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations