[][src]Enum rusoto_codestar_notifications::CreateNotificationRuleError

pub enum CreateNotificationRuleError {
    AccessDenied(String),
    ConcurrentModification(String),
    Configuration(String),
    LimitExceeded(String),
    ResourceAlreadyExists(String),
}

Errors returned by CreateNotificationRule

Variants

AccessDenied(String)

AWS CodeStar Notifications can't create the notification rule because you do not have sufficient permissions.

ConcurrentModification(String)

AWS CodeStar Notifications can't complete the request because the resource is being modified by another process. Wait a few minutes and try again.

Configuration(String)

Some or all of the configuration is incomplete, missing, or not valid.

LimitExceeded(String)

One of the AWS CodeStar Notifications limits has been exceeded. Limits apply to accounts, notification rules, notifications, resources, and targets. For more information, see Limits.

ResourceAlreadyExists(String)

A resource with the same name or ID already exists. Notification rule names must be unique in your AWS account.

Implementations

impl CreateNotificationRuleError[src]

Trait Implementations

impl Debug for CreateNotificationRuleError[src]

impl Display for CreateNotificationRuleError[src]

impl Error for CreateNotificationRuleError[src]

impl PartialEq<CreateNotificationRuleError> for CreateNotificationRuleError[src]

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