Learn R Programming

paws (version 0.1.12)

transcribeservice: Amazon Transcribe Service

Description

Operations and objects for transcribing speech to text.

Usage

transcribeservice(config = list())

Value

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

Service syntax

svc <- transcribeservice(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

create_language_modelCreates a new custom language model
create_medical_vocabularyCreates a new custom vocabulary that you can use to change how Amazon Transcribe Medical transcribes your audio file
create_vocabularyCreates a new custom vocabulary that you can use to change the way Amazon Transcribe handles transcription of an audio file
create_vocabulary_filterCreates a new vocabulary filter that you can use to filter words, such as profane words, from the output of a transcription job
delete_language_modelDeletes a custom language model using its name
delete_medical_transcription_jobDeletes a transcription job generated by Amazon Transcribe Medical and any related information
delete_medical_vocabularyDeletes a vocabulary from Amazon Transcribe Medical
delete_transcription_jobDeletes a previously submitted transcription job along with any other generated results such as the transcription, models, and so on
delete_vocabularyDeletes a vocabulary from Amazon Transcribe
delete_vocabulary_filterRemoves a vocabulary filter
describe_language_modelGets information about a single custom language model
get_medical_transcription_jobReturns information about a transcription job from Amazon Transcribe Medical
get_medical_vocabularyRetrieves information about a medical vocabulary
get_transcription_jobReturns information about a transcription job
get_vocabularyGets information about a vocabulary
get_vocabulary_filterReturns information about a vocabulary filter
list_language_modelsProvides more information about the custom language models you've created
list_medical_transcription_jobsLists medical transcription jobs with a specified status or substring that matches their names
list_medical_vocabulariesReturns a list of vocabularies that match the specified criteria
list_transcription_jobsLists transcription jobs with the specified status
list_vocabulariesReturns a list of vocabularies that match the specified criteria
list_vocabulary_filtersGets information about vocabulary filters
start_medical_transcription_jobStarts a batch job to transcribe medical speech to text
start_transcription_jobStarts an asynchronous job to transcribe speech to text
update_medical_vocabularyUpdates a vocabulary with new values that you provide in a different text file from the one you used to create the vocabulary
update_vocabularyUpdates an existing vocabulary with new values
update_vocabulary_filterUpdates a vocabulary filter with a new list of filtered words

Examples

Run this code
if (FALSE) {
svc <- transcribeservice()
svc$create_language_model(
  Foo = 123
)
}

Run the code above in your browser using DataLab