Skip to content

Delete Comment Content

codecommit_delete_comment_content R Documentation

Deletes the content of a comment made on a change, file, or commit in a repository

Description

Deletes the content of a comment made on a change, file, or commit in a repository.

Usage

codecommit_delete_comment_content(commentId)

Arguments

commentId

[required] The unique, system-generated ID of the comment. To get this ID, use get_comments_for_compared_commit or get_comments_for_pull_request.

Value

A list with the following syntax:

list(
  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$delete_comment_content(
  commentId = "string"
)