Operations and objects for transcribing speech to text.
transcribeservice(config = list())
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.
Optional configuration of credentials, endpoint, and/or region.
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"
)
)
create_language_model | Creates a new custom language model |
create_medical_vocabulary | Creates a new custom vocabulary that you can use to change how Amazon Transcribe Medical transcribes your audio file |
create_vocabulary | Creates a new custom vocabulary that you can use to change the way Amazon Transcribe handles transcription of an audio file |
create_vocabulary_filter | Creates a new vocabulary filter that you can use to filter words, such as profane words, from the output of a transcription job |
delete_language_model | Deletes a custom language model using its name |
delete_medical_transcription_job | Deletes a transcription job generated by Amazon Transcribe Medical and any related information |
delete_medical_vocabulary | Deletes a vocabulary from Amazon Transcribe Medical |
delete_transcription_job | Deletes a previously submitted transcription job along with any other generated results such as the transcription, models, and so on |
delete_vocabulary | Deletes a vocabulary from Amazon Transcribe |
delete_vocabulary_filter | Removes a vocabulary filter |
describe_language_model | Gets information about a single custom language model |
get_medical_transcription_job | Returns information about a transcription job from Amazon Transcribe Medical |
get_medical_vocabulary | Retrieves information about a medical vocabulary |
get_transcription_job | Returns information about a transcription job |
get_vocabulary | Gets information about a vocabulary |
get_vocabulary_filter | Returns information about a vocabulary filter |
list_language_models | Provides more information about the custom language models you've created |
list_medical_transcription_jobs | Lists medical transcription jobs with a specified status or substring that matches their names |
list_medical_vocabularies | Returns a list of vocabularies that match the specified criteria |
list_transcription_jobs | Lists transcription jobs with the specified status |
list_vocabularies | Returns a list of vocabularies that match the specified criteria |
list_vocabulary_filters | Gets information about vocabulary filters |
start_medical_transcription_job | Starts a batch job to transcribe medical speech to text |
start_transcription_job | Starts an asynchronous job to transcribe speech to text |
update_medical_vocabulary | Updates a vocabulary with new values that you provide in a different text file from the one you used to create the vocabulary |
update_vocabulary | Updates an existing vocabulary with new values |
update_vocabulary_filter | Updates a vocabulary filter with a new list of filtered words |
if (FALSE) {
svc <- transcribeservice()
svc$create_language_model(
Foo = 123
)
}
Run the code above in your browser using DataLab