Skip to content

Post Comment For Compared Commit

codecommit_post_comment_for_compared_commit R Documentation

Posts a comment on the comparison between two commits

Description

Posts a comment on the comparison between two commits.

Usage

codecommit_post_comment_for_compared_commit(repositoryName,
  beforeCommitId, afterCommitId, location, content, clientRequestToken)

Arguments

repositoryName

[required] The name of the repository where you want to post a comment on the comparison between commits.

beforeCommitId

To establish the directionality of the comparison, the full commit ID of the before commit. Required for commenting on any commit unless that commit is the initial commit.

afterCommitId

[required] To establish the directionality of the comparison, the full commit ID of the after commit.

location

The location of the comparison where you want to comment.

content

[required] The content of the comment you want to make.

clientRequestToken

A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.

Value

A list with the following syntax:

list(
  repositoryName = "string",
  beforeCommitId = "string",
  afterCommitId = "string",
  beforeBlobId = "string",
  afterBlobId = "string",
  location = list(
    filePath = "string",
    filePosition = 123,
    relativeFileVersion = "BEFORE"|"AFTER"
  ),
  comment = list(
    commentId = "string",
    content = "string",
    inReplyTo = "string",
    creationDate = as.POSIXct(
      "2015-01-01"
    ),
    lastModifiedDate = as.POSIXct(
      "2015-01-01"
    ),
    authorArn = "string",
    deleted = TRUE|FALSE,
    clientRequestToken = "string",
    callerReactions = list(
      "string"
    ),
    reactionCounts = list(
      123
    )
  )
)

Request syntax

svc$post_comment_for_compared_commit(
  repositoryName = "string",
  beforeCommitId = "string",
  afterCommitId = "string",
  location = list(
    filePath = "string",
    filePosition = 123,
    relativeFileVersion = "BEFORE"|"AFTER"
  ),
  content = "string",
  clientRequestToken = "string"
)