List Recommendation Feedback
| codegurureviewer_list_recommendation_feedback | R Documentation |
Returns a list of RecommendationFeedbackSummary objects that contain customer recommendation feedback for all CodeGuru Reviewer users¶
Description¶
Returns a list of RecommendationFeedbackSummary objects that contain customer recommendation feedback for all CodeGuru Reviewer users.
Usage¶
codegurureviewer_list_recommendation_feedback(NextToken, MaxResults,
CodeReviewArn, UserIds, RecommendationIds)
Arguments¶
NextTokenIf
nextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.MaxResultsThe maximum number of results that are returned per call. The default is 100.
CodeReviewArn[required] The Amazon Resource Name (ARN) of the CodeReview object.
UserIdsAn Amazon Web Services user's account ID or Amazon Resource Name (ARN). Use this ID to query the recommendation feedback for a code review from that user.
The
UserIdis an IAM principal that can be specified as an Amazon Web Services account ID or an Amazon Resource Name (ARN). For more information, see Specifying a Principal in the Amazon Web Services Identity and Access Management User Guide.RecommendationIdsUsed to query the recommendation feedback for a given recommendation.
Value¶
A list with the following syntax:
list(
RecommendationFeedbackSummaries = list(
list(
RecommendationId = "string",
Reactions = list(
"ThumbsUp"|"ThumbsDown"
),
UserId = "string"
)
),
NextToken = "string"
)