[][src]Enum rusoto_application_autoscaling::DeleteScheduledActionError

pub enum DeleteScheduledActionError {
    ConcurrentUpdate(String),
    InternalService(String),
    ObjectNotFound(String),
}

Errors returned by DeleteScheduledAction

Variants

ConcurrentUpdate(String)

Concurrent updates caused an exception, for example, if you request an update to an Application Auto Scaling resource that already has a pending update.

InternalService(String)

The service encountered an internal error.

ObjectNotFound(String)

The specified object could not be found. For any operation that depends on the existence of a scalable target, this exception is thrown if the scalable target with the specified service namespace, resource ID, and scalable dimension does not exist. For any operation that deletes or deregisters a resource, this exception is thrown if the resource cannot be found.

Implementations

impl DeleteScheduledActionError[src]

Trait Implementations

impl Debug for DeleteScheduledActionError[src]

impl Display for DeleteScheduledActionError[src]

impl Error for DeleteScheduledActionError[src]

impl PartialEq<DeleteScheduledActionError> for DeleteScheduledActionError[src]

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