Returns information about comments made on the comparison between two commits
Source:R/codecommit_operations.R
codecommit_get_comments_for_compared_commit.RdReturns information about comments made on the comparison between two commits.
See https://www.paws-r-sdk.com/docs/codecommit_get_comments_for_compared_commit/ for full documentation.
Usage
codecommit_get_comments_for_compared_commit(
repositoryName,
beforeCommitId = NULL,
afterCommitId,
nextToken = NULL,
maxResults = NULL
)Arguments
- repositoryName
[required] The name of the repository where you want to compare commits.
- beforeCommitId
To establish the directionality of the comparison, the full commit ID of the before commit.
- afterCommitId
[required] To establish the directionality of the comparison, the full commit ID of the after commit.
- nextToken
An enumeration token that when provided in a request, returns the next batch of the results.
- maxResults
A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments, but you can configure up to 500.