Class: Aws::CodeGuruReviewer::Types::ListRecommendationFeedbackRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::ListRecommendationFeedbackRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codegurureviewer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_review_arn ⇒ String
The Amazon Resource Name (ARN) of the [CodeReview] object.
-
#max_results ⇒ Integer
The maximum number of results that are returned per call.
-
#next_token ⇒ String
If ‘nextToken` is returned, there are more results available.
-
#recommendation_ids ⇒ Array<String>
Used to query the recommendation feedback for a given recommendation.
-
#user_ids ⇒ Array<String>
An Amazon Web Services user’s account ID or Amazon Resource Name (ARN).
Instance Attribute Details
#code_review_arn ⇒ String
The Amazon Resource Name (ARN) of the [CodeReview] object.
[1]: docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReview.html
891 892 893 894 895 896 897 898 899 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 891 class ListRecommendationFeedbackRequest < Struct.new( :next_token, :max_results, :code_review_arn, :user_ids, :recommendation_ids) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results that are returned per call. The default is 100.
891 892 893 894 895 896 897 898 899 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 891 class ListRecommendationFeedbackRequest < Struct.new( :next_token, :max_results, :code_review_arn, :user_ids, :recommendation_ids) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If ‘nextToken` is returned, there are more results available. The value of `nextToken` is 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.
891 892 893 894 895 896 897 898 899 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 891 class ListRecommendationFeedbackRequest < Struct.new( :next_token, :max_results, :code_review_arn, :user_ids, :recommendation_ids) SENSITIVE = [] include Aws::Structure end |
#recommendation_ids ⇒ Array<String>
Used to query the recommendation feedback for a given recommendation.
891 892 893 894 895 896 897 898 899 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 891 class ListRecommendationFeedbackRequest < Struct.new( :next_token, :max_results, :code_review_arn, :user_ids, :recommendation_ids) SENSITIVE = [] include Aws::Structure end |
#user_ids ⇒ Array<String>
An 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 ‘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*.
891 892 893 894 895 896 897 898 899 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 891 class ListRecommendationFeedbackRequest < Struct.new( :next_token, :max_results, :code_review_arn, :user_ids, :recommendation_ids) SENSITIVE = [] include Aws::Structure end |