![]() |
![]()
| ![]() |
![]()
NAMEPaws::Transcribe::UpdateMedicalVocabulary - Arguments for method UpdateMedicalVocabulary on Paws::Transcribe DESCRIPTIONThis class represents the parameters used for calling the method UpdateMedicalVocabulary on the Amazon Transcribe Service service. Use the attributes of this class as arguments to method UpdateMedicalVocabulary. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateMedicalVocabulary. SYNOPSISmy $transcribe = Paws->service('Transcribe'); my $UpdateMedicalVocabularyResponse = $transcribe->UpdateMedicalVocabulary( LanguageCode => 'af-ZA', VocabularyName => 'MyVocabularyName', VocabularyFileUri => 'MyUri', # OPTIONAL ); # Results: my $LanguageCode = $UpdateMedicalVocabularyResponse->LanguageCode; my $LastModifiedTime = $UpdateMedicalVocabularyResponse->LastModifiedTime; my $VocabularyName = $UpdateMedicalVocabularyResponse->VocabularyName; my $VocabularyState = $UpdateMedicalVocabularyResponse->VocabularyState; # Returns a L<Paws::Transcribe::UpdateMedicalVocabularyResponse> object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/transcribe/UpdateMedicalVocabulary> ATTRIBUTESREQUIRED LanguageCode => StrThe language code of the language used for the entries in the updated vocabulary. US English (en-US) is the only valid language code in Amazon Transcribe Medical. Valid values are: "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" VocabularyFileUri => StrThe location in Amazon S3 of the text file that contains the you use for your custom vocabulary. The URI must be in the same AWS Region as the resource that you are calling. The following is the format for a URI: "https://s3.<aws-region>.amazonaws.com/<bucket-name>/<keyprefix>/<objectkey>" For example: "https://s3.us-east-1.amazonaws.com/AWSDOC-EXAMPLE-BUCKET/vocab.txt" For more information about Amazon S3 object names, see Object Keys (http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys) in the Amazon S3 Developer Guide. For more information about custom vocabularies in Amazon Transcribe Medical, see Medical Custom Vocabularies (http://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html#how-vocabulary). REQUIRED VocabularyName => StrThe name of the vocabulary to update. The name is case sensitive. If you try to update a vocabulary with the same name as a vocabulary you've already made, you get a "ConflictException" error. SEE ALSOThis class forms part of Paws, documenting arguments for method UpdateMedicalVocabulary in Paws::Transcribe BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|