Enum rusoto_lambda::InvokeAsyncError [] [src]

pub enum InvokeAsyncError {
    InvalidRequestContent(String),
    InvalidRuntime(String),
    ResourceNotFound(String),
    Service(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by InvokeAsync

Variants

The request body could not be parsed as JSON.

The runtime or runtime version specified is not supported.

The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.

The AWS Lambda service encountered an internal error.

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

Trait Implementations

impl Debug for InvokeAsyncError
[src]

Formats the value using the given formatter.

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

Performs the conversion.

impl From<CredentialsError> for InvokeAsyncError
[src]

Performs the conversion.

impl From<HttpDispatchError> for InvokeAsyncError
[src]

Performs the conversion.

impl From<Error> for InvokeAsyncError
[src]

Performs the conversion.

impl Display for InvokeAsyncError
[src]

Formats the value using the given formatter. Read more

impl Error for InvokeAsyncError
[src]

A short description of the error. Read more

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