[][src]Struct rusoto_codeguru_reviewer::DescribeRecommendationFeedbackRequest

pub struct DescribeRecommendationFeedbackRequest {
    pub code_review_arn: String,
    pub recommendation_id: String,
    pub user_id: Option<String>,
}

Fields

code_review_arn: String

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

recommendation_id: String

The recommendation ID that can be used to track the provided recommendations and then to collect the feedback.

user_id: Option<String>

Optional parameter to describe the feedback for a given user. If this is not supplied, it defaults to the user making the request.

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 DescribeRecommendationFeedbackRequest[src]

impl Debug for DescribeRecommendationFeedbackRequest[src]

impl Default for DescribeRecommendationFeedbackRequest[src]

impl PartialEq<DescribeRecommendationFeedbackRequest> for DescribeRecommendationFeedbackRequest[src]

impl Serialize for DescribeRecommendationFeedbackRequest[src]

impl StructuralPartialEq for DescribeRecommendationFeedbackRequest[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> From<T> 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.