[][src]Struct rusoto_codeguru_reviewer::ListRecommendationFeedbackRequest

pub struct ListRecommendationFeedbackRequest {
    pub code_review_arn: String,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub recommendation_ids: Option<Vec<String>>,
    pub user_ids: Option<Vec<String>>,
}

Fields

code_review_arn: String

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

max_results: Option<i64>

The maximum number of results that are returned per call. The default is 100.

next_token: Option<String>

If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.

recommendation_ids: Option<Vec<String>>

Used to query the recommendation feedback for a given recommendation.

user_ids: Option<Vec<String>>

An AWS user's account ID or Amazon Resource Name (ARN). Use this ID to query the recommendation feedback for a code review from that user.

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

impl Debug for ListRecommendationFeedbackRequest[src]

impl Default for ListRecommendationFeedbackRequest[src]

impl PartialEq<ListRecommendationFeedbackRequest> for ListRecommendationFeedbackRequest[src]

impl Serialize for ListRecommendationFeedbackRequest[src]

impl StructuralPartialEq for ListRecommendationFeedbackRequest[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.