Interface RecommendationFeedbackSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RecommendationFeedbackSummary.Builder,RecommendationFeedbackSummary>,SdkBuilder<RecommendationFeedbackSummary.Builder,RecommendationFeedbackSummary>,SdkPojo
- Enclosing class:
- RecommendationFeedbackSummary
public static interface RecommendationFeedbackSummary.Builder extends SdkPojo, CopyableBuilder<RecommendationFeedbackSummary.Builder,RecommendationFeedbackSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecommendationFeedbackSummary.Builderreactions(Collection<Reaction> reactions)List for storing reactions.RecommendationFeedbackSummary.Builderreactions(Reaction... reactions)List for storing reactions.RecommendationFeedbackSummary.BuilderreactionsWithStrings(String... reactions)List for storing reactions.RecommendationFeedbackSummary.BuilderreactionsWithStrings(Collection<String> reactions)List for storing reactions.RecommendationFeedbackSummary.BuilderrecommendationId(String recommendationId)The recommendation ID that can be used to track the provided recommendations.RecommendationFeedbackSummary.BuilderuserId(String userId)The ID of the user that gave the feedback.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
recommendationId
RecommendationFeedbackSummary.Builder recommendationId(String recommendationId)
The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.
- Parameters:
recommendationId- The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reactionsWithStrings
RecommendationFeedbackSummary.Builder reactionsWithStrings(Collection<String> reactions)
List for storing reactions. Reactions are utf-8 text code for emojis.
- Parameters:
reactions- List for storing reactions. Reactions are utf-8 text code for emojis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reactionsWithStrings
RecommendationFeedbackSummary.Builder reactionsWithStrings(String... reactions)
List for storing reactions. Reactions are utf-8 text code for emojis.
- Parameters:
reactions- List for storing reactions. Reactions are utf-8 text code for emojis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reactions
RecommendationFeedbackSummary.Builder reactions(Collection<Reaction> reactions)
List for storing reactions. Reactions are utf-8 text code for emojis.
- Parameters:
reactions- List for storing reactions. Reactions are utf-8 text code for emojis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reactions
RecommendationFeedbackSummary.Builder reactions(Reaction... reactions)
List for storing reactions. Reactions are utf-8 text code for emojis.
- Parameters:
reactions- List for storing reactions. Reactions are utf-8 text code for emojis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userId
RecommendationFeedbackSummary.Builder userId(String userId)
The ID of the user that gave the feedback.
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.- Parameters:
userId- The ID of the user that gave the feedback.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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-