pub struct PutRecommendationFeedback { /* private fields */ }Expand description
Fluent builder constructing a request to PutRecommendationFeedback.
Stores customer feedback for a CodeGuru Reviewer recommendation. When this API is called again with different reactions the previous feedback is overwritten.
Implementations§
source§impl PutRecommendationFeedback
impl PutRecommendationFeedback
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<PutRecommendationFeedback, AwsResponseRetryClassifier>, SdkError<PutRecommendationFeedbackError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<PutRecommendationFeedback, AwsResponseRetryClassifier>, SdkError<PutRecommendationFeedbackError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<PutRecommendationFeedbackOutput, SdkError<PutRecommendationFeedbackError>>
pub async fn send(
self
) -> Result<PutRecommendationFeedbackOutput, SdkError<PutRecommendationFeedbackError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn code_review_arn(self, input: impl Into<String>) -> Self
pub fn code_review_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the CodeReview object.
sourcepub fn set_code_review_arn(self, input: Option<String>) -> Self
pub fn set_code_review_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the CodeReview object.
sourcepub fn recommendation_id(self, input: impl Into<String>) -> Self
pub fn recommendation_id(self, input: impl Into<String>) -> Self
The recommendation ID that can be used to track the provided recommendations and then to collect the feedback.
sourcepub fn set_recommendation_id(self, input: Option<String>) -> Self
pub fn set_recommendation_id(self, input: Option<String>) -> Self
The recommendation ID that can be used to track the provided recommendations and then to collect the feedback.
sourcepub fn reactions(self, input: Reaction) -> Self
pub fn reactions(self, input: Reaction) -> Self
Appends an item to Reactions.
To override the contents of this collection use set_reactions.
List for storing reactions. Reactions are utf-8 text code for emojis. If you send an empty list it clears all your feedback.
sourcepub fn set_reactions(self, input: Option<Vec<Reaction>>) -> Self
pub fn set_reactions(self, input: Option<Vec<Reaction>>) -> Self
List for storing reactions. Reactions are utf-8 text code for emojis. If you send an empty list it clears all your feedback.
Trait Implementations§
source§impl Clone for PutRecommendationFeedback
impl Clone for PutRecommendationFeedback
source§fn clone(&self) -> PutRecommendationFeedback
fn clone(&self) -> PutRecommendationFeedback
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more