Enum rusoto_workdocs::InitiateDocumentVersionUploadError [] [src]

pub enum InitiateDocumentVersionUploadError {
    DraftUploadOutOfSync(String),
    EntityAlreadyExists(String),
    EntityNotExists(String),
    FailedDependency(String),
    ProhibitedState(String),
    ResourceAlreadyCheckedOut(String),
    ServiceUnavailable(String),
    StorageLimitExceeded(String),
    StorageLimitWillExceed(String),
    UnauthorizedOperation(String),
    UnauthorizedResourceAccess(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by InitiateDocumentVersionUpload

Variants

This exception is thrown when a valid checkout ID is not presented on document version upload calls for a document that has been checked out from Web client.

The resource already exists.

The resource does not exist.

The AWS Directory Service cannot reach an on-premises instance. Or a dependency under the control of the organization is failing, such as a connected active directory.

The specified document version is not in the INITIALIZED state.

The resource is already checked out.

One or more of the dependencies is unavailable.

The storage limit has been exceeded.

The storage limit will be exceeded.

The operation is not permitted.

The caller does not have access to perform the action on the resource.

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 InitiateDocumentVersionUploadError
[src]

Trait Implementations

impl Debug for InitiateDocumentVersionUploadError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for InitiateDocumentVersionUploadError
[src]

[src]

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

[src]

This method tests for !=.

impl From<Error> for InitiateDocumentVersionUploadError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for InitiateDocumentVersionUploadError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for InitiateDocumentVersionUploadError
[src]

[src]

Performs the conversion.

impl From<Error> for InitiateDocumentVersionUploadError
[src]

[src]

Performs the conversion.

impl Display for InitiateDocumentVersionUploadError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for InitiateDocumentVersionUploadError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations