Enum rusoto_mgh::ImportMigrationTaskError [] [src]

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

Errors returned by ImportMigrationTask

Variants

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

Exception raised to indicate a successfully authorized action when the DryRun flag is set to "true".

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

Exception raised to indicate a request was not authorized when the DryRun flag is set to "true".

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

Trait Implementations

impl Debug for ImportMigrationTaskError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for ImportMigrationTaskError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for ImportMigrationTaskError
[src]

[src]

Performs the conversion.

impl From<Error> for ImportMigrationTaskError
[src]

[src]

Performs the conversion.

impl Display for ImportMigrationTaskError
[src]

[src]

Formats the value using the given formatter. Read more

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