[][src]Enum rusoto_stepfunctions::CreateActivityError

pub enum CreateActivityError {
    ActivityLimitExceeded(String),
    InvalidName(String),
    TooManyTags(String),
}

Errors returned by CreateActivity

Variants

ActivityLimitExceeded(String)

The maximum number of activities has been reached. Existing activities must be deleted before a new activity can be created.

InvalidName(String)

The provided name is invalid.

TooManyTags(String)

You've exceeded the number of tags allowed for a resource. See the Limits Topic in the AWS Step Functions Developer Guide.

Implementations

impl CreateActivityError[src]

Trait Implementations

impl Debug for CreateActivityError[src]

impl Display for CreateActivityError[src]

impl Error for CreateActivityError[src]

impl PartialEq<CreateActivityError> for CreateActivityError[src]

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