You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::TranscribeService::Types::ListMedicalVocabulariesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeService::Types::ListMedicalVocabulariesRequest
- Defined in:
- (unknown)
Overview
When passing ListMedicalVocabulariesRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
next_token: "NextToken",
max_results: 1,
state_equals: "PENDING", # accepts PENDING, READY, FAILED
name_contains: "VocabularyName",
}
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of vocabularies to return in the response.
-
#name_contains ⇒ String
Returns vocabularies whose names contain the specified string.
-
#next_token ⇒ String
If the result of your previous request to
ListMedicalVocabularieswas truncated, include theNextTokento fetch the next set of vocabularies. -
#state_equals ⇒ String
When specified, returns only vocabularies with the
VocabularyStateequal to the specified vocabulary state.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of vocabularies to return in the response.
#name_contains ⇒ String
Returns vocabularies whose names contain the specified string. The
search is not case sensitive. ListMedicalVocabularies returns both
\"vocabularyname\" and \"VocabularyName\".
#next_token ⇒ String
If the result of your previous request to ListMedicalVocabularies was
truncated, include the NextToken to fetch the next set of
vocabularies.
#state_equals ⇒ String
When specified, returns only vocabularies with the VocabularyState
equal to the specified vocabulary state. Use this field to see which
vocabularies are ready for your medical transcription jobs.
Possible values:
- PENDING
- READY
- FAILED