[][src]Enum rusoto_dax::TagResourceError

pub enum TagResourceError {
    ClusterNotFoundFault(String),
    InvalidARNFault(String),
    InvalidClusterStateFault(String),
    InvalidParameterCombination(String),
    InvalidParameterValue(String),
    ServiceLinkedRoleNotFoundFault(String),
    TagQuotaPerResourceExceeded(String),
}

Errors returned by TagResource

Variants

ClusterNotFoundFault(String)

The requested cluster ID does not refer to an existing DAX cluster.

InvalidARNFault(String)

The Amazon Resource Name (ARN) supplied in the request is not valid.

InvalidClusterStateFault(String)

The requested DAX cluster is not in the available state.

InvalidParameterCombination(String)

Two or more incompatible parameters were specified.

InvalidParameterValue(String)

The value for a parameter is invalid.

ServiceLinkedRoleNotFoundFault(String)

The specified service linked role (SLR) was not found.

TagQuotaPerResourceExceeded(String)

You have exceeded the maximum number of tags for this DAX cluster.

Implementations

impl TagResourceError[src]

Trait Implementations

impl Debug for TagResourceError[src]

impl Display for TagResourceError[src]

impl Error for TagResourceError[src]

impl PartialEq<TagResourceError> for TagResourceError[src]

impl StructuralPartialEq for TagResourceError[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, 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> Sealed<T> for T where
    T: ?Sized

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.