Enum rusoto_codecommit::GetCommentError[][src]

pub enum GetCommentError {
    CommentDeleted(String),
    CommentDoesNotExist(String),
    CommentIdRequired(String),
    InvalidCommentId(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by GetComment

Variants

This comment has already been deleted. You cannot edit or delete a deleted comment.

No comment exists with the provided ID. Verify that you have provided the correct ID, and then try again.

The comment ID is missing or null. A comment ID is required.

The comment ID is not in a valid format. Make sure that you have provided the full comment ID.

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

Trait Implementations

impl Debug for GetCommentError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for GetCommentError
[src]

Performs the conversion.

impl From<HttpDispatchError> for GetCommentError
[src]

Performs the conversion.

impl From<Error> for GetCommentError
[src]

Performs the conversion.

impl Display for GetCommentError
[src]

Formats the value using the given formatter. Read more

impl Error for GetCommentError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations