[][src]Struct rusoto_codeguru_reviewer::RecommendationFeedback

pub struct RecommendationFeedback {
    pub code_review_arn: Option<String>,
    pub created_time_stamp: Option<f64>,
    pub last_updated_time_stamp: Option<f64>,
    pub reactions: Option<Vec<String>>,
    pub recommendation_id: Option<String>,
    pub user_id: Option<String>,
}

Information about the recommendation feedback.

Fields

code_review_arn: Option<String>

The Amazon Resource Name (ARN) of the CodeReview object.

created_time_stamp: Option<f64>

The time at which the feedback was created.

last_updated_time_stamp: Option<f64>

The time at which the feedback was last updated.

reactions: Option<Vec<String>>

List for storing reactions. Reactions are utf-8 text code for emojis. You can send an empty list to clear off all your feedback.

recommendation_id: Option<String>

The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.

user_id: Option<String>

The ID of the user that made the API call.

The UserId is an IAM principal that can be specified as an AWS account ID or an Amazon Resource Name (ARN). For more information, see Specifying a Principal in the AWS Identity and Access Management User Guide.

Trait Implementations

impl Clone for RecommendationFeedback[src]

impl Debug for RecommendationFeedback[src]

impl Default for RecommendationFeedback[src]

impl<'de> Deserialize<'de> for RecommendationFeedback[src]

impl PartialEq<RecommendationFeedback> for RecommendationFeedback[src]

impl StructuralPartialEq for RecommendationFeedback[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.