Enum rusoto_codecommit::UpdateRepositoryNameError[][src]

pub enum UpdateRepositoryNameError {
    InvalidRepositoryName(String),
    RepositoryDoesNotExist(String),
    RepositoryNameExists(String),
    RepositoryNameRequired(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpdateRepositoryName

Variants

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

The specified repository does not exist.

The specified repository name already exists.

A repository name is required but was not specified.

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

Trait Implementations

impl Debug for UpdateRepositoryNameError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for UpdateRepositoryNameError
[src]

Performs the conversion.

impl From<HttpDispatchError> for UpdateRepositoryNameError
[src]

Performs the conversion.

impl From<Error> for UpdateRepositoryNameError
[src]

Performs the conversion.

impl Display for UpdateRepositoryNameError
[src]

Formats the value using the given formatter. Read more

impl Error for UpdateRepositoryNameError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations