Struct aws_sdk_codeguruprofiler::input::SubmitFeedbackInput [−][src]
#[non_exhaustive]pub struct SubmitFeedbackInput {
pub profiling_group_name: Option<String>,
pub anomaly_instance_id: Option<String>,
pub type: Option<FeedbackType>,
pub comment: Option<String>,
}
Expand description
The structure representing the SubmitFeedbackRequest.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.profiling_group_name: Option<String>
The name of the profiling group that is associated with the analysis data.
anomaly_instance_id: Option<String>
The universally unique identifier (UUID) of the AnomalyInstance
object that is included in the analysis data.
type: Option<FeedbackType>
The feedback tpye. Thee are two valid values, Positive
and Negative
.
comment: Option<String>
Optional feedback about this anomaly.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SubmitFeedback, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SubmitFeedback, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<SubmitFeedback
>
Creates a new builder-style object to manufacture SubmitFeedbackInput
The name of the profiling group that is associated with the analysis data.
The universally unique identifier (UUID) of the AnomalyInstance
object that is included in the analysis data.
The feedback tpye. Thee are two valid values, Positive
and Negative
.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more