Enum rusoto_mgh::AssociateDiscoveredResourceError[][src]

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

Errors returned by AssociateDiscoveredResource

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 there are problems accessing ADS (Application Discovery Service); most likely due to a misconfigured policy or the migrationhub-discovery 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 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 AssociateDiscoveredResourceError
[src]

Trait Implementations

impl Debug for AssociateDiscoveredResourceError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for AssociateDiscoveredResourceError
[src]

Performs the conversion.

impl From<HttpDispatchError> for AssociateDiscoveredResourceError
[src]

Performs the conversion.

impl From<Error> for AssociateDiscoveredResourceError
[src]

Performs the conversion.

impl Display for AssociateDiscoveredResourceError
[src]

Formats the value using the given formatter. Read more

impl Error for AssociateDiscoveredResourceError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations