Class: Aws::CodeGuruReviewer::Types::RecommendationFeedbackSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::RecommendationFeedbackSummary
- Defined in:
- gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb
Overview
Information about recommendation feedback summaries.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reactions ⇒ Array<String>
List for storing reactions.
-
#recommendation_id ⇒ String
The recommendation ID that can be used to track the provided recommendations.
-
#user_id ⇒ String
The ID of the user that gave the feedback.
Instance Attribute Details
#reactions ⇒ Array<String>
List for storing reactions. Reactions are utf-8 text code for emojis.
1330 1331 1332 1333 1334 1335 1336 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1330 class RecommendationFeedbackSummary < Struct.new( :recommendation_id, :reactions, :user_id) SENSITIVE = [] include Aws::Structure end |
#recommendation_id ⇒ String
The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.
1330 1331 1332 1333 1334 1335 1336 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1330 class RecommendationFeedbackSummary < Struct.new( :recommendation_id, :reactions, :user_id) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The ID of the user that gave the feedback.
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.
1330 1331 1332 1333 1334 1335 1336 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1330 class RecommendationFeedbackSummary < Struct.new( :recommendation_id, :reactions, :user_id) SENSITIVE = [] include Aws::Structure end |