Struct aws_sdk_connect::types::builders::RealTimeContactAnalysisTranscriptItemWithContentBuilder
source · #[non_exhaustive]pub struct RealTimeContactAnalysisTranscriptItemWithContentBuilder { /* private fields */ }
Expand description
A builder for RealTimeContactAnalysisTranscriptItemWithContent
.
Implementations§
source§impl RealTimeContactAnalysisTranscriptItemWithContentBuilder
impl RealTimeContactAnalysisTranscriptItemWithContentBuilder
sourcepub fn content(self, input: impl Into<String>) -> Self
pub fn content(self, input: impl Into<String>) -> Self
Part of the transcript content that contains identified issue. Can be redacted
sourcepub fn set_content(self, input: Option<String>) -> Self
pub fn set_content(self, input: Option<String>) -> Self
Part of the transcript content that contains identified issue. Can be redacted
sourcepub fn get_content(&self) -> &Option<String>
pub fn get_content(&self) -> &Option<String>
Part of the transcript content that contains identified issue. Can be redacted
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
Transcript identifier. Matches the identifier from one of the TranscriptSegments.
This field is required.sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
Transcript identifier. Matches the identifier from one of the TranscriptSegments.
sourcepub fn get_id(&self) -> &Option<String>
pub fn get_id(&self) -> &Option<String>
Transcript identifier. Matches the identifier from one of the TranscriptSegments.
sourcepub fn character_offsets(
self,
input: RealTimeContactAnalysisCharacterInterval
) -> Self
pub fn character_offsets( self, input: RealTimeContactAnalysisCharacterInterval ) -> Self
Begin and end offsets for a part of text.
sourcepub fn set_character_offsets(
self,
input: Option<RealTimeContactAnalysisCharacterInterval>
) -> Self
pub fn set_character_offsets( self, input: Option<RealTimeContactAnalysisCharacterInterval> ) -> Self
Begin and end offsets for a part of text.
sourcepub fn get_character_offsets(
&self
) -> &Option<RealTimeContactAnalysisCharacterInterval>
pub fn get_character_offsets( &self ) -> &Option<RealTimeContactAnalysisCharacterInterval>
Begin and end offsets for a part of text.
sourcepub fn build(
self
) -> Result<RealTimeContactAnalysisTranscriptItemWithContent, BuildError>
pub fn build( self ) -> Result<RealTimeContactAnalysisTranscriptItemWithContent, BuildError>
Consumes the builder and constructs a RealTimeContactAnalysisTranscriptItemWithContent
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RealTimeContactAnalysisTranscriptItemWithContentBuilder
impl Clone for RealTimeContactAnalysisTranscriptItemWithContentBuilder
source§fn clone(&self) -> RealTimeContactAnalysisTranscriptItemWithContentBuilder
fn clone(&self) -> RealTimeContactAnalysisTranscriptItemWithContentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for RealTimeContactAnalysisTranscriptItemWithContentBuilder
impl Default for RealTimeContactAnalysisTranscriptItemWithContentBuilder
source§fn default() -> RealTimeContactAnalysisTranscriptItemWithContentBuilder
fn default() -> RealTimeContactAnalysisTranscriptItemWithContentBuilder
source§impl PartialEq for RealTimeContactAnalysisTranscriptItemWithContentBuilder
impl PartialEq for RealTimeContactAnalysisTranscriptItemWithContentBuilder
source§fn eq(
&self,
other: &RealTimeContactAnalysisTranscriptItemWithContentBuilder
) -> bool
fn eq( &self, other: &RealTimeContactAnalysisTranscriptItemWithContentBuilder ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RealTimeContactAnalysisTranscriptItemWithContentBuilder
Auto Trait Implementations§
impl Freeze for RealTimeContactAnalysisTranscriptItemWithContentBuilder
impl RefUnwindSafe for RealTimeContactAnalysisTranscriptItemWithContentBuilder
impl Send for RealTimeContactAnalysisTranscriptItemWithContentBuilder
impl Sync for RealTimeContactAnalysisTranscriptItemWithContentBuilder
impl Unpin for RealTimeContactAnalysisTranscriptItemWithContentBuilder
impl UnwindSafe for RealTimeContactAnalysisTranscriptItemWithContentBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more