[ aws . codeguru-reviewer ]
Describes the customer feedback for a CodeGuru Reviewer recommendation.
See also: AWS API Documentation
See ‘aws help’ for descriptions of global parameters.
describe-recommendation-feedback
--code-review-arn <value>
--recommendation-id <value>
[--user-id <value>]
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
--code-review-arn
(string)
The Amazon Resource Name (ARN) of the `
CodeReview
https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html`__ object.
--recommendation-id
(string)
The recommendation ID that can be used to track the provided recommendations and then to collect the feedback.
--user-id
(string)
Optional parameter to describe the feedback for a given user. If this is not supplied, it defaults to the user making the request.
The
UserId
is 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 .
--cli-input-json
| --cli-input-yaml
(string)
Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton
. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml
.
--generate-cli-skeleton
(string)
Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input
, prints a sample input JSON that can be used as an argument for --cli-input-json
. Similarly, if provided yaml-input
it will print a sample input YAML that can be used with --cli-input-yaml
. If provided with the value output
, it validates the command inputs and returns a sample output JSON for that command. The generated JSON skeleton is not stable between versions of the AWS CLI and there are no backwards compatibility guarantees in the JSON skeleton generated.
See ‘aws help’ for descriptions of global parameters.
Note
To use the following examples, you must have the AWS CLI installed and configured. See the Getting started guide in the AWS CLI User Guide for more information.
Unless otherwise stated, all examples have unix-like quotation rules. These examples will need to be adapted to your terminal’s quoting rules. See Using quotation marks with strings in the AWS CLI User Guide .
To view information about feedback on a recommendation
The following describe-recommendation-feedback
displays information about feedback on a recommendation. This recommendation has one ThumbsUp
reaction.
aws codeguru-reviewer describe-recommendation-feedback \
--code-review-arn arn:aws:codeguru-reviewer:us-west-2:123456789012:association:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:code-review:RepositoryAnalysis-my-repository-name-branch-abcdefgh12345678 \
--recommendation-id 3be1b2e5d7ef6e298a06499379ee290c9c596cf688fdcadb08285ddb0dd390eb
Output:
{
"RecommendationFeedback": {
"CodeReviewArn": "arn:aws:codeguru-reviewer:us-west-2:123456789012:association:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:code-review:RepositoryAnalysis-my-repository-name-branch-abcdefgh12345678",
"RecommendationId": "3be1b2e5d7ef6e298a06499379ee290c9c596cf688fdcadb08285ddb0dd390eb",
"Reactions": [
"ThumbsUp"
],
"UserId": "aws-user-id",
"CreatedTimeStamp": 1618877070.313,
"LastUpdatedTimeStamp": 1618877948.881
}
}
For more information, see DescribeRecommendationFeedback in the Amazon CodeGuru Reviewer API Reference.
RecommendationFeedback -> (structure)
The recommendation feedback given by the user.
CodeReviewArn -> (string)
The Amazon Resource Name (ARN) of the `
CodeReview
https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html`__ object.RecommendationId -> (string)
The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.
Reactions -> (list)
List for storing reactions. Reactions are utf-8 text code for emojis. You can send an empty list to clear off all your feedback.
(string)
UserId -> (string)
The ID of the user that made the API call.
The
UserId
is 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 .CreatedTimeStamp -> (timestamp)
The time at which the feedback was created.
LastUpdatedTimeStamp -> (timestamp)
The time at which the feedback was last updated.