Struct aws_sdk_qconnect::operation::put_feedback::PutFeedbackOutput
source · #[non_exhaustive]pub struct PutFeedbackOutput {
pub assistant_id: String,
pub assistant_arn: String,
pub target_id: String,
pub target_type: TargetType,
pub content_feedback: Option<ContentFeedbackData>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.assistant_id: StringThe identifier of the Amazon Q assistant.
assistant_arn: StringThe Amazon Resource Name (ARN) of the Amazon Q assistant.
target_id: StringThe identifier of the feedback target.
target_type: TargetTypeThe type of the feedback target.
content_feedback: Option<ContentFeedbackData>Information about the feedback provided.
Implementations§
source§impl PutFeedbackOutput
impl PutFeedbackOutput
sourcepub fn assistant_id(&self) -> &str
pub fn assistant_id(&self) -> &str
The identifier of the Amazon Q assistant.
sourcepub fn assistant_arn(&self) -> &str
pub fn assistant_arn(&self) -> &str
The Amazon Resource Name (ARN) of the Amazon Q assistant.
sourcepub fn target_type(&self) -> &TargetType
pub fn target_type(&self) -> &TargetType
The type of the feedback target.
sourcepub fn content_feedback(&self) -> Option<&ContentFeedbackData>
pub fn content_feedback(&self) -> Option<&ContentFeedbackData>
Information about the feedback provided.
source§impl PutFeedbackOutput
impl PutFeedbackOutput
sourcepub fn builder() -> PutFeedbackOutputBuilder
pub fn builder() -> PutFeedbackOutputBuilder
Creates a new builder-style object to manufacture PutFeedbackOutput.
Trait Implementations§
source§impl Clone for PutFeedbackOutput
impl Clone for PutFeedbackOutput
source§fn clone(&self) -> PutFeedbackOutput
fn clone(&self) -> PutFeedbackOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for PutFeedbackOutput
impl Debug for PutFeedbackOutput
source§impl PartialEq for PutFeedbackOutput
impl PartialEq for PutFeedbackOutput
source§fn eq(&self, other: &PutFeedbackOutput) -> bool
fn eq(&self, other: &PutFeedbackOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for PutFeedbackOutput
impl RequestId for PutFeedbackOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for PutFeedbackOutput
Auto Trait Implementations§
impl RefUnwindSafe for PutFeedbackOutput
impl Send for PutFeedbackOutput
impl Sync for PutFeedbackOutput
impl Unpin for PutFeedbackOutput
impl UnwindSafe for PutFeedbackOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.