Enum rusoto_cloudtrail::LookupEventsError [] [src]

pub enum LookupEventsError {
    InvalidLookupAttributes(String),
    InvalidMaxResults(String),
    InvalidNextToken(String),
    InvalidTimeRange(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by LookupEvents

Variants

Occurs when an invalid lookup attribute is specified.

This exception is thrown if the limit specified is invalid.

Invalid token or token that was previously used in a request with different parameters. This exception is thrown if the token is invalid.

Occurs if the timestamp values are invalid. Either the start time occurs after the end time or the time range is outside the range of possible values.

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

Trait Implementations

impl Debug for LookupEventsError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for LookupEventsError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for LookupEventsError
[src]

[src]

Performs the conversion.

impl From<Error> for LookupEventsError
[src]

[src]

Performs the conversion.

impl Display for LookupEventsError
[src]

[src]

Formats the value using the given formatter. Read more

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