Description Usage Arguments Value Request syntax
View source: R/transcribeservice_operations.R
Lists medical transcription jobs with a specified status or substring that matches their names.
1 2 | transcribeservice_list_medical_transcription_jobs(Status,
JobNameContains, NextToken, MaxResults)
|
Status |
When specified, returns only medical transcription jobs with the specified status. Jobs are ordered by creation date, with the newest jobs returned first. If you don't specify a status, Amazon Transcribe Medical returns all transcription jobs ordered by creation date. |
JobNameContains |
When specified, the jobs returned in the list are limited to jobs whose name contains the specified string. |
NextToken |
If you a receive a truncated result in the previous request of
|
MaxResults |
The maximum number of medical transcription jobs to return in the response. IF there are fewer results in the list, this response contains only the actual results. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | list(
Status = "QUEUED"|"IN_PROGRESS"|"FAILED"|"COMPLETED",
NextToken = "string",
MedicalTranscriptionJobSummaries = list(
list(
MedicalTranscriptionJobName = "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"|"cy-GB"|"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"|"ga-IE"|"gd-GB"|"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",
TranscriptionJobStatus = "QUEUED"|"IN_PROGRESS"|"FAILED"|"COMPLETED",
FailureReason = "string",
OutputLocationType = "CUSTOMER_BUCKET"|"SERVICE_BUCKET",
Specialty = "PRIMARYCARE",
Type = "CONVERSATION"|"DICTATION"
)
)
)
|
1 2 3 4 5 6 | svc$list_medical_transcription_jobs(
Status = "QUEUED"|"IN_PROGRESS"|"FAILED"|"COMPLETED",
JobNameContains = "string",
NextToken = "string",
MaxResults = 123
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.