[][src]Enum rusoto_ssm::CreateOpsMetadataError

pub enum CreateOpsMetadataError {
    InternalServerError(String),
    OpsMetadataAlreadyExists(String),
    OpsMetadataInvalidArgument(String),
    OpsMetadataLimitExceeded(String),
    OpsMetadataTooManyUpdates(String),
}

Errors returned by CreateOpsMetadata

Variants

InternalServerError(String)

An error occurred on the server side.

OpsMetadataAlreadyExists(String)

An OpsMetadata object already exists for the selected resource.

OpsMetadataInvalidArgument(String)

One of the arguments passed is invalid.

OpsMetadataLimitExceeded(String)

Your account reached the maximum number of OpsMetadata objects allowed by Application Manager. The maximum is 200 OpsMetadata objects. Delete one or more OpsMetadata object and try again.

OpsMetadataTooManyUpdates(String)

The system is processing too many concurrent updates. Wait a few moments and try again.

Implementations

impl CreateOpsMetadataError[src]

Trait Implementations

impl Debug for CreateOpsMetadataError[src]

impl Display for CreateOpsMetadataError[src]

impl Error for CreateOpsMetadataError[src]

impl PartialEq<CreateOpsMetadataError> for CreateOpsMetadataError[src]

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