Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

InterruptionFilter

import type { InterruptionFilter } from "https://aws-api.deno.dev/v0.3/services/transcribeservice.ts?docs=full";

An object that enables you to configure your category to be applied to call analytics jobs where either the customer or agent was interrupted.

interface InterruptionFilter {
AbsoluteTimeRange?: AbsoluteTimeRange | null;
Negate?: boolean | null;
ParticipantRole?: ParticipantRole | null;
RelativeTimeRange?: RelativeTimeRange | null;
Threshold?: number | null;
}

§Properties

§
AbsoluteTimeRange?: AbsoluteTimeRange | null
[src]

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.

§
Negate?: boolean | null
[src]

Set to TRUE to look for a time period where there was no interruption.

§
ParticipantRole?: ParticipantRole | null
[src]

Indicates whether the caller or customer was interrupting.

§
RelativeTimeRange?: RelativeTimeRange | null
[src]

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.

§
Threshold?: number | null
[src]

The duration of the interruption.