Enum rusoto_ssm::UpdateDocumentError[][src]

pub enum UpdateDocumentError {
    DocumentVersionLimitExceeded(String),
    DuplicateDocumentContent(String),
    InternalServerError(String),
    InvalidDocument(String),
    InvalidDocumentContent(String),
    InvalidDocumentSchemaVersion(String),
    InvalidDocumentVersion(String),
    MaxDocumentSizeExceeded(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpdateDocument

Variants

The document has too many versions. Delete one or more document versions and try again.

The content of the association document matches another document. Change the content of the document and try again.

An error occurred on the server side.

The specified document does not exist.

The content for the document is not valid.

The version of the document schema is not supported.

The document version is not valid or does not exist.

The size limit of a document is 64 KB.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl UpdateDocumentError
[src]

Trait Implementations

impl Debug for UpdateDocumentError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for UpdateDocumentError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<Error> for UpdateDocumentError
[src]

Performs the conversion.

impl From<CredentialsError> for UpdateDocumentError
[src]

Performs the conversion.

impl From<HttpDispatchError> for UpdateDocumentError
[src]

Performs the conversion.

impl From<Error> for UpdateDocumentError
[src]

Performs the conversion.

impl Display for UpdateDocumentError
[src]

Formats the value using the given formatter. Read more

impl Error for UpdateDocumentError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations