Enum rusoto_rekognition::StartPersonTrackingError[][src]

pub enum StartPersonTrackingError {
    AccessDenied(String),
    IdempotentParameterMismatch(String),
    InternalServerError(String),
    InvalidParameter(String),
    InvalidS3Object(String),
    LimitExceeded(String),
    ProvisionedThroughputExceeded(String),
    Throttling(String),
    VideoTooLarge(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by StartPersonTracking

Variants

You are not authorized to perform the action.

A ClientRequestToken input parameter was reused with an operation, but at least one of the other input parameters is different from the previous call to the operation.

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

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.

The file size or duration of the supplied media is too large. The maximum file size is 8GB. The maximum duration is 2 hours.

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

Trait Implementations

impl Debug for StartPersonTrackingError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for StartPersonTrackingError
[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 StartPersonTrackingError
[src]

Performs the conversion.

impl From<CredentialsError> for StartPersonTrackingError
[src]

Performs the conversion.

impl From<HttpDispatchError> for StartPersonTrackingError
[src]

Performs the conversion.

impl From<Error> for StartPersonTrackingError
[src]

Performs the conversion.

impl Display for StartPersonTrackingError
[src]

Formats the value using the given formatter. Read more

impl Error for StartPersonTrackingError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations