Enum rusoto_mgh::DescribeMigrationTaskError[][src]

pub enum DescribeMigrationTaskError {
    AccessDenied(String),
    InternalServerError(String),
    InvalidInput(String),
    ResourceNotFound(String),
    ServiceUnavailable(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by DescribeMigrationTask

Variants

You do not have sufficient access to perform this action.

Exception raised when there is an internal, configuration, or dependency error encountered.

Exception raised when the provided input violates a policy constraint or is entered in the wrong format or data type.

Exception raised when the request references a resource (ADS configuration, update stream, migration task, etc.) that does not exist in ADS (Application Discovery Service) or in Migration Hub's repository.

Exception raised when there is an internal, configuration, or dependency error encountered.

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

Trait Implementations

impl Debug for DescribeMigrationTaskError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for DescribeMigrationTaskError
[src]

Performs the conversion.

impl From<HttpDispatchError> for DescribeMigrationTaskError
[src]

Performs the conversion.

impl From<Error> for DescribeMigrationTaskError
[src]

Performs the conversion.

impl Display for DescribeMigrationTaskError
[src]

Formats the value using the given formatter. Read more

impl Error for DescribeMigrationTaskError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations