[][src]Struct rusoto_codeguruprofiler::SubmitFeedbackRequest

pub struct SubmitFeedbackRequest {
    pub anomaly_instance_id: String,
    pub comment: Option<String>,
    pub profiling_group_name: String,
    pub type_: String,
}

The structure representing the SubmitFeedbackRequest.

Fields

anomaly_instance_id: String

The universally unique identifier (UUID) of the AnomalyInstance object that is included in the analysis data.

comment: Option<String>

Optional feedback about this anomaly.

profiling_group_name: String

The name of the profiling group that is associated with the analysis data.

type_: String

The feedback tpye. Thee are two valid values, Positive and Negative.

Trait Implementations

impl Clone for SubmitFeedbackRequest[src]

impl Debug for SubmitFeedbackRequest[src]

impl Default for SubmitFeedbackRequest[src]

impl PartialEq<SubmitFeedbackRequest> for SubmitFeedbackRequest[src]

impl Serialize for SubmitFeedbackRequest[src]

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