[][src]Enum rusoto_athena::GetTableMetadataError

pub enum GetTableMetadataError {
    InternalServer(String),
    InvalidRequest(String),
    Metadata(String),
}

Errors returned by GetTableMetadata

Variants

InternalServer(String)

Indicates a platform issue, which may be due to a transient condition or outage.

InvalidRequest(String)

Indicates that something is wrong with the input to the request. For example, a required parameter may be missing or out of range.

Metadata(String)

An exception that Athena received when it called a custom metastore. Occurs if the error is not caused by user input (InvalidRequestException) or from the Athena platform (InternalServerException). For example, if a user-created Lambda function is missing permissions, the Lambda 4XX exception is returned in a MetadataException.

Implementations

impl GetTableMetadataError[src]

Trait Implementations

impl Debug for GetTableMetadataError[src]

impl Display for GetTableMetadataError[src]

impl Error for GetTableMetadataError[src]

impl PartialEq<GetTableMetadataError> for GetTableMetadataError[src]

impl StructuralPartialEq for GetTableMetadataError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.