[][src]Enum rusoto_meteringmarketplace::ResolveCustomerError

pub enum ResolveCustomerError {
    DisabledApi(String),
    ExpiredToken(String),
    InternalServiceError(String),
    InvalidToken(String),
    Throttling(String),
}

Errors returned by ResolveCustomer

Variants

DisabledApi(String)

The API is disabled in the Region.

ExpiredToken(String)

The submitted registration token has expired. This can happen if the buyer's browser takes too long to redirect to your page, the buyer has resubmitted the registration token, or your application has held on to the registration token for too long. Your SaaS registration website should redeem this token as soon as it is submitted by the buyer's browser.

InternalServiceError(String)

An internal error has occurred. Retry your request. If the problem persists, post a message with details on the AWS forums.

InvalidToken(String)

Registration token is invalid.

Throttling(String)

The calls to the API are throttled.

Implementations

impl ResolveCustomerError[src]

Trait Implementations

impl Debug for ResolveCustomerError[src]

impl Display for ResolveCustomerError[src]

impl Error for ResolveCustomerError[src]

impl PartialEq<ResolveCustomerError> for ResolveCustomerError[src]

impl StructuralPartialEq for ResolveCustomerError[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.