Struct aws_sdk_transcribe::model::InterruptionFilter
source · [−]#[non_exhaustive]pub struct InterruptionFilter {
pub threshold: Option<i64>,
pub participant_role: Option<ParticipantRole>,
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 interruption.
participant_role: Option<ParticipantRole>
Indicates whether the caller or customer was interrupting.
absolute_time_range: Option<AbsoluteTimeRange>
An object you can use to specify a time range (in milliseconds) for when you'd want to find the interruption. For example, you could search for an interruption 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 a interruption. 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 where there was no interruption.
Implementations
Indicates whether the caller or customer was interrupting.
An object you can use to specify a time range (in milliseconds) for when you'd want to find the interruption. For example, you could search for an interruption 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.
An object that allows percentages to specify the proportion of the call where there was a interruption. 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.
Creates a new builder-style object to manufacture InterruptionFilter
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 InterruptionFilter
impl Send for InterruptionFilter
impl Sync for InterruptionFilter
impl Unpin for InterruptionFilter
impl UnwindSafe for InterruptionFilter
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