[][src]Enum rusoto_events::CreateEventBusError

pub enum CreateEventBusError {
    ConcurrentModification(String),
    Internal(String),
    InvalidState(String),
    LimitExceeded(String),
    OperationDisabled(String),
    ResourceAlreadyExists(String),
    ResourceNotFound(String),
}

Errors returned by CreateEventBus

Variants

ConcurrentModification(String)

There is concurrent modification on a rule or target.

Internal(String)

This exception occurs due to unexpected causes.

InvalidState(String)

The specified state is not a valid state for an event source.

LimitExceeded(String)

You tried to create more rules or add more targets to a rule than is allowed.

OperationDisabled(String)

The operation you are attempting is not available in this region.

ResourceAlreadyExists(String)

The resource you are trying to create already exists.

ResourceNotFound(String)

An entity that you specified does not exist.

Implementations

impl CreateEventBusError[src]

Trait Implementations

impl Debug for CreateEventBusError[src]

impl Display for CreateEventBusError[src]

impl Error for CreateEventBusError[src]

impl PartialEq<CreateEventBusError> for CreateEventBusError[src]

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