[][src]Enum rusoto_codedeploy::RemoveTagsFromOnPremisesInstancesError

pub enum RemoveTagsFromOnPremisesInstancesError {
    InstanceLimitExceeded(String),
    InstanceNameRequired(String),
    InstanceNotRegistered(String),
    InvalidInstanceName(String),
    InvalidTag(String),
    TagLimitExceeded(String),
    TagRequired(String),
}

Errors returned by RemoveTagsFromOnPremisesInstances

Variants

InstanceLimitExceeded(String)

The maximum number of allowed on-premises instances in a single call was exceeded.

InstanceNameRequired(String)

An on-premises instance name was not specified.

InstanceNotRegistered(String)

The specified on-premises instance is not registered.

InvalidInstanceName(String)

The on-premises instance name was specified in an invalid format.

InvalidTag(String)

The tag was specified in an invalid format.

TagLimitExceeded(String)

The maximum allowed number of tags was exceeded.

TagRequired(String)

A tag was not specified.

Implementations

impl RemoveTagsFromOnPremisesInstancesError[src]

Trait Implementations

impl Debug for RemoveTagsFromOnPremisesInstancesError[src]

impl Display for RemoveTagsFromOnPremisesInstancesError[src]

impl Error for RemoveTagsFromOnPremisesInstancesError[src]

impl PartialEq<RemoveTagsFromOnPremisesInstancesError> for RemoveTagsFromOnPremisesInstancesError[src]

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