[][src]Enum rusoto_cloudformation::DeleteStackSetError

pub enum DeleteStackSetError {
    OperationInProgress(String),
    StackSetNotEmpty(String),
}

Errors returned by DeleteStackSet

Variants

OperationInProgress(String)

Another operation is currently in progress for this stack set. Only one operation can be performed for a stack set at a given time.

StackSetNotEmpty(String)

You can't yet delete this stack set, because it still contains one or more stack instances. Delete all stack instances from the stack set before deleting the stack set.

Implementations

impl DeleteStackSetError[src]

Trait Implementations

impl Debug for DeleteStackSetError[src]

impl Display for DeleteStackSetError[src]

impl Error for DeleteStackSetError[src]

impl PartialEq<DeleteStackSetError> for DeleteStackSetError[src]

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