Enum rusoto_mgh::ListMigrationTasksError [] [src]

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

Errors returned by ListMigrationTasks

Variants

Exception raised when the account making the call is not whitelisted or there are other authentication errors.

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 there are problems accessing ADS (Application Discovery Service); most likely due to a misconfigured policy or the ADSCaller role is missing or not configured correctly.

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 the service encounters throttled communication with upstream dependencies or is overloaded with requests.

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

Trait Implementations

impl Debug for ListMigrationTasksError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for ListMigrationTasksError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for ListMigrationTasksError
[src]

[src]

Performs the conversion.

impl From<Error> for ListMigrationTasksError
[src]

[src]

Performs the conversion.

impl Display for ListMigrationTasksError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for ListMigrationTasksError
[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