Struct aws_sdk_transcribe::model::NonTalkTimeFilter
source · [−]#[non_exhaustive]pub struct NonTalkTimeFilter {
pub threshold: Option<i64>,
pub absolute_time_range: Option<AbsoluteTimeRange>,
pub relative_time_range: Option<RelativeTimeRange>,
pub negate: Option<bool>,
}
Expand description
An object that enables you to configure your category to be applied to call analytics jobs where either the customer or agent was interrupted.
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.threshold: Option<i64>
The duration of the period when neither the customer nor agent was talking.
absolute_time_range: Option<AbsoluteTimeRange>
An object you can use to specify a time range (in milliseconds) for when no one is talking. For example, you could specify a time period between the 30,000 millisecond mark and the 45,000 millisecond mark. You could also specify the time period as the first 15,000 milliseconds or the last 15,000 milliseconds.
relative_time_range: Option<RelativeTimeRange>
An object that allows percentages to specify the proportion of the call where there was silence. For example, you can specify the first half of the call. You can also specify the period of time between halfway through to three-quarters of the way through the call. Because the length of conversation can vary between calls, you can apply relative time ranges across all calls.
negate: Option<bool>
Set to TRUE
to look for a time period when people were talking.
Implementations
sourceimpl NonTalkTimeFilter
impl NonTalkTimeFilter
sourcepub fn threshold(&self) -> Option<i64>
pub fn threshold(&self) -> Option<i64>
The duration of the period when neither the customer nor agent was talking.
sourcepub fn absolute_time_range(&self) -> Option<&AbsoluteTimeRange>
pub fn absolute_time_range(&self) -> Option<&AbsoluteTimeRange>
An object you can use to specify a time range (in milliseconds) for when no one is talking. For example, you could specify a time period between the 30,000 millisecond mark and the 45,000 millisecond mark. You could also specify the time period as the first 15,000 milliseconds or the last 15,000 milliseconds.
sourcepub fn relative_time_range(&self) -> Option<&RelativeTimeRange>
pub fn relative_time_range(&self) -> Option<&RelativeTimeRange>
An object that allows percentages to specify the proportion of the call where there was silence. For example, you can specify the first half of the call. You can also specify the period of time between halfway through to three-quarters of the way through the call. Because the length of conversation can vary between calls, you can apply relative time ranges across all calls.
sourceimpl NonTalkTimeFilter
impl NonTalkTimeFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NonTalkTimeFilter
Trait Implementations
sourceimpl Clone for NonTalkTimeFilter
impl Clone for NonTalkTimeFilter
sourcefn clone(&self) -> NonTalkTimeFilter
fn clone(&self) -> NonTalkTimeFilter
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 more
sourceimpl Debug for NonTalkTimeFilter
impl Debug for NonTalkTimeFilter
sourceimpl PartialEq<NonTalkTimeFilter> for NonTalkTimeFilter
impl PartialEq<NonTalkTimeFilter> for NonTalkTimeFilter
sourcefn eq(&self, other: &NonTalkTimeFilter) -> bool
fn eq(&self, other: &NonTalkTimeFilter) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &NonTalkTimeFilter) -> bool
fn ne(&self, other: &NonTalkTimeFilter) -> bool
This method tests for !=
.
impl StructuralPartialEq for NonTalkTimeFilter
Auto Trait Implementations
impl RefUnwindSafe for NonTalkTimeFilter
impl Send for NonTalkTimeFilter
impl Sync for NonTalkTimeFilter
impl Unpin for NonTalkTimeFilter
impl UnwindSafe for NonTalkTimeFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more