List Call Analytics Jobs
transcribeservice_list_call_analytics_jobs | R Documentation |
Provides a list of Call Analytics jobs that match the specified criteria¶
Description¶
Provides a list of Call Analytics jobs that match the specified criteria. If no criteria are specified, all Call Analytics jobs are returned.
To get detailed information about a specific Call Analytics job, use the operation.
Usage¶
transcribeservice_list_call_analytics_jobs(Status, JobNameContains,
NextToken, MaxResults)
Arguments¶
Status |
Returns only Call Analytics jobs with the specified status. Jobs
are ordered by creation date, with the newest job first. If you do not
include |
JobNameContains |
Returns only the Call Analytics jobs that contain the specified string. The search is not case sensitive. |
NextToken |
If your |
MaxResults |
The maximum number of Call Analytics jobs to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you do not specify a value, a default of 5 is used. |
Value¶
A list with the following syntax:
list(
Status = "QUEUED"|"IN_PROGRESS"|"FAILED"|"COMPLETED",
NextToken = "string",
CallAnalyticsJobSummaries = list(
list(
CallAnalyticsJobName = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
StartTime = as.POSIXct(
"2015-01-01"
),
CompletionTime = as.POSIXct(
"2015-01-01"
),
LanguageCode = "af-ZA"|"ar-AE"|"ar-SA"|"da-DK"|"de-CH"|"de-DE"|"en-AB"|"en-AU"|"en-GB"|"en-IE"|"en-IN"|"en-US"|"en-WL"|"es-ES"|"es-US"|"fa-IR"|"fr-CA"|"fr-FR"|"he-IL"|"hi-IN"|"id-ID"|"it-IT"|"ja-JP"|"ko-KR"|"ms-MY"|"nl-NL"|"pt-BR"|"pt-PT"|"ru-RU"|"ta-IN"|"te-IN"|"tr-TR"|"zh-CN"|"zh-TW"|"th-TH"|"en-ZA"|"en-NZ"|"vi-VN"|"sv-SE"|"ab-GE"|"ast-ES"|"az-AZ"|"ba-RU"|"be-BY"|"bg-BG"|"bn-IN"|"bs-BA"|"ca-ES"|"ckb-IQ"|"ckb-IR"|"cs-CZ"|"cy-WL"|"el-GR"|"et-ET"|"eu-ES"|"fi-FI"|"gl-ES"|"gu-IN"|"ha-NG"|"hr-HR"|"hu-HU"|"hy-AM"|"is-IS"|"ka-GE"|"kab-DZ"|"kk-KZ"|"kn-IN"|"ky-KG"|"lg-IN"|"lt-LT"|"lv-LV"|"mhr-RU"|"mi-NZ"|"mk-MK"|"ml-IN"|"mn-MN"|"mr-IN"|"mt-MT"|"no-NO"|"or-IN"|"pa-IN"|"pl-PL"|"ps-AF"|"ro-RO"|"rw-RW"|"si-LK"|"sk-SK"|"sl-SI"|"so-SO"|"sr-RS"|"su-ID"|"sw-BI"|"sw-KE"|"sw-RW"|"sw-TZ"|"sw-UG"|"tl-PH"|"tt-RU"|"ug-CN"|"uk-UA"|"uz-UZ"|"wo-SN"|"zu-ZA",
CallAnalyticsJobStatus = "QUEUED"|"IN_PROGRESS"|"FAILED"|"COMPLETED",
CallAnalyticsJobDetails = list(
Skipped = list(
list(
Feature = "GENERATIVE_SUMMARIZATION",
ReasonCode = "INSUFFICIENT_CONVERSATION_CONTENT"|"FAILED_SAFETY_GUIDELINES",
Message = "string"
)
)
),
FailureReason = "string"
)
)
)
Request syntax¶
svc$list_call_analytics_jobs(
Status = "QUEUED"|"IN_PROGRESS"|"FAILED"|"COMPLETED",
JobNameContains = "string",
NextToken = "string",
MaxResults = 123
)