Enum rusoto_ecr::CompleteLayerUploadError [] [src]

pub enum CompleteLayerUploadError {
    EmptyUpload(String),
    InvalidLayer(String),
    InvalidParameter(String),
    LayerAlreadyExists(String),
    LayerPartTooSmall(String),
    RepositoryNotFound(String),
    Server(String),
    UploadNotFound(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CompleteLayerUpload

Variants

The specified layer upload does not contain any layer parts.

The layer digest calculation performed by Amazon ECR upon receipt of the image layer does not match the digest specified.

The specified parameter is invalid. Review the available parameters for the API request.

The image layer already exists in the associated repository.

Layer parts must be at least 5 MiB in size.

The specified repository could not be found. Check the spelling of the specified repository and ensure that you are performing operations on the correct registry.

These errors are usually caused by a server-side issue.

The upload could not be found, or the specified upload id is not valid for this repository.

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

Trait Implementations

impl Debug for CompleteLayerUploadError
[src]

Formats the value using the given formatter.

impl PartialEq for CompleteLayerUploadError
[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 CompleteLayerUploadError
[src]

Performs the conversion.

impl From<CredentialsError> for CompleteLayerUploadError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CompleteLayerUploadError
[src]

Performs the conversion.

impl Display for CompleteLayerUploadError
[src]

Formats the value using the given formatter. Read more

impl Error for CompleteLayerUploadError
[src]

A short description of the error. Read more

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