Struct aws_sdk_transcribe::types::Summarization
source · #[non_exhaustive]pub struct Summarization {
pub generate_abstractive_summary: bool,
}
Expand description
Contains GenerateAbstractiveSummary
, which is a required parameter if you want to enable Generative call summarization in your Call Analytics request.
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.generate_abstractive_summary: bool
Enables Generative call summarization in your Call Analytics request
Generative call summarization provides a summary of the transcript including important components discussed in the conversation.
For more information, see Enabling generative call summarization.
Implementations§
source§impl Summarization
impl Summarization
sourcepub fn generate_abstractive_summary(&self) -> bool
pub fn generate_abstractive_summary(&self) -> bool
Enables Generative call summarization in your Call Analytics request
Generative call summarization provides a summary of the transcript including important components discussed in the conversation.
For more information, see Enabling generative call summarization.
source§impl Summarization
impl Summarization
sourcepub fn builder() -> SummarizationBuilder
pub fn builder() -> SummarizationBuilder
Creates a new builder-style object to manufacture Summarization
.
Trait Implementations§
source§impl Clone for Summarization
impl Clone for Summarization
source§fn clone(&self) -> Summarization
fn clone(&self) -> Summarization
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 Summarization
impl Debug for Summarization
source§impl PartialEq for Summarization
impl PartialEq for Summarization
source§fn eq(&self, other: &Summarization) -> bool
fn eq(&self, other: &Summarization) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Summarization
Auto Trait Implementations§
impl RefUnwindSafe for Summarization
impl Send for Summarization
impl Sync for Summarization
impl Unpin for Summarization
impl UnwindSafe for Summarization
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.