Enum rusoto_codecommit::GetCommentsForPullRequestError[][src]

pub enum GetCommentsForPullRequestError {
    CommitDoesNotExist(String),
    CommitIdRequired(String),
    EncryptionIntegrityChecksFailed(String),
    EncryptionKeyAccessDenied(String),
    EncryptionKeyDisabled(String),
    EncryptionKeyNotFound(String),
    EncryptionKeyUnavailable(String),
    InvalidCommitId(String),
    InvalidContinuationToken(String),
    InvalidMaxResults(String),
    InvalidPullRequestId(String),
    InvalidRepositoryName(String),
    PullRequestDoesNotExist(String),
    PullRequestIdRequired(String),
    RepositoryDoesNotExist(String),
    RepositoryNameRequired(String),
    RepositoryNotAssociatedWithPullRequest(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by GetCommentsForPullRequest

Variants

The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

A commit ID was not specified.

An encryption integrity check failed.

An encryption key could not be accessed.

The encryption key is disabled.

No encryption key was found.

The encryption key is not available.

The specified commit ID is not valid.

The specified continuation token is not valid.

The specified number of maximum results is not valid.

The pull request ID is not valid. Make sure that you have provided the full ID and that the pull request is in the specified repository, and then try again.

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 pull request ID could not be found. Make sure that you have specified the correct repository name and pull request ID, and then try again.

A pull request ID is required, but none was provided.

The specified repository does not exist.

A repository name is required but was not specified.

The repository does not contain any pull requests with that pull request ID. Check to make sure you have provided the correct repository name for the pull request.

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

Trait Implementations

impl Debug for GetCommentsForPullRequestError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for GetCommentsForPullRequestError
[src]

Performs the conversion.

impl From<HttpDispatchError> for GetCommentsForPullRequestError
[src]

Performs the conversion.

impl From<Error> for GetCommentsForPullRequestError
[src]

Performs the conversion.

impl Display for GetCommentsForPullRequestError
[src]

Formats the value using the given formatter. Read more

impl Error for GetCommentsForPullRequestError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations