Enum rusoto_mgh::NotifyMigrationTaskStateError[][src]

pub enum NotifyMigrationTaskStateError {
    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 NotifyMigrationTaskState

Variants

You do not have sufficient access to perform this action.

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 there is an internal, configuration, or dependency error encountered.

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

Trait Implementations

impl Debug for NotifyMigrationTaskStateError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for NotifyMigrationTaskStateError
[src]

Performs the conversion.

impl From<HttpDispatchError> for NotifyMigrationTaskStateError
[src]

Performs the conversion.

impl From<Error> for NotifyMigrationTaskStateError
[src]

Performs the conversion.

impl Display for NotifyMigrationTaskStateError
[src]

Formats the value using the given formatter. Read more

impl Error for NotifyMigrationTaskStateError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations