Describe Recommendation Feedback
codegurureviewer_describe_recommendation_feedback | R Documentation |
Describes the customer feedback for a CodeGuru Reviewer recommendation¶
Description¶
Describes the customer feedback for a CodeGuru Reviewer recommendation.
Usage¶
codegurureviewer_describe_recommendation_feedback(CodeReviewArn,
RecommendationId, UserId)
Arguments¶
CodeReviewArn |
[required] The Amazon Resource Name (ARN) of the CodeReview object. |
RecommendationId |
[required] The recommendation ID that can be used to track the provided recommendations and then to collect the feedback. |
UserId |
Optional parameter to describe the feedback for a given user. If this is not supplied, it defaults to the user making the request. The |
Value¶
A list with the following syntax:
list(
RecommendationFeedback = list(
CodeReviewArn = "string",
RecommendationId = "string",
Reactions = list(
"ThumbsUp"|"ThumbsDown"
),
UserId = "string",
CreatedTimeStamp = as.POSIXct(
"2015-01-01"
),
LastUpdatedTimeStamp = as.POSIXct(
"2015-01-01"
)
)
)
Request syntax¶
svc$describe_recommendation_feedback(
CodeReviewArn = "string",
RecommendationId = "string",
UserId = "string"
)