#[non_exhaustive]pub struct SubmitFeedbackInput { /* private fields */ }
Expand description
The structure representing the SubmitFeedbackRequest.
Implementations
sourceimpl SubmitFeedbackInput
impl SubmitFeedbackInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SubmitFeedback, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SubmitFeedback, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SubmitFeedback
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SubmitFeedbackInput
.
sourceimpl SubmitFeedbackInput
impl SubmitFeedbackInput
sourcepub fn profiling_group_name(&self) -> Option<&str>
pub fn profiling_group_name(&self) -> Option<&str>
The name of the profiling group that is associated with the analysis data.
sourcepub fn anomaly_instance_id(&self) -> Option<&str>
pub fn anomaly_instance_id(&self) -> Option<&str>
The universally unique identifier (UUID) of the AnomalyInstance
object that is included in the analysis data.
sourcepub fn type(&self) -> Option<&FeedbackType>
pub fn type(&self) -> Option<&FeedbackType>
The feedback tpye. Thee are two valid values, Positive
and Negative
.
Trait Implementations
sourceimpl Clone for SubmitFeedbackInput
impl Clone for SubmitFeedbackInput
sourcefn clone(&self) -> SubmitFeedbackInput
fn clone(&self) -> SubmitFeedbackInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SubmitFeedbackInput
impl Debug for SubmitFeedbackInput
sourceimpl PartialEq<SubmitFeedbackInput> for SubmitFeedbackInput
impl PartialEq<SubmitFeedbackInput> for SubmitFeedbackInput
sourcefn eq(&self, other: &SubmitFeedbackInput) -> bool
fn eq(&self, other: &SubmitFeedbackInput) -> bool
impl StructuralPartialEq for SubmitFeedbackInput
Auto Trait Implementations
impl RefUnwindSafe for SubmitFeedbackInput
impl Send for SubmitFeedbackInput
impl Sync for SubmitFeedbackInput
impl Unpin for SubmitFeedbackInput
impl UnwindSafe for SubmitFeedbackInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more