NAME
Paws::Transcribe::CreateMedicalVocabulary - Arguments for method CreateMedicalVocabulary on Paws::Transcribe
DESCRIPTION
This class represents the parameters used for calling the method CreateMedicalVocabulary on the Amazon Transcribe Service service. Use the attributes of this class as arguments to method CreateMedicalVocabulary.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateMedicalVocabulary.
SYNOPSIS
my $transcribe = Paws->service('Transcribe');
my $CreateMedicalVocabularyResponse = $transcribe->CreateMedicalVocabulary(
LanguageCode => 'af-ZA',
VocabularyFileUri => 'MyUri',
VocabularyName => 'MyVocabularyName',
);
# Results:
my $FailureReason = $CreateMedicalVocabularyResponse->FailureReason;
my $LanguageCode = $CreateMedicalVocabularyResponse->LanguageCode;
my $LastModifiedTime = $CreateMedicalVocabularyResponse->LastModifiedTime;
my $VocabularyName = $CreateMedicalVocabularyResponse->VocabularyName;
my $VocabularyState = $CreateMedicalVocabularyResponse->VocabularyState;
# Returns a L<Paws::Transcribe::CreateMedicalVocabularyResponse> 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/CreateMedicalVocabulary
ATTRIBUTES
REQUIRED LanguageCode => Str
The language code for the language used for the entries in your custom vocabulary. The language code of your custom vocabulary must match the language code of your transcription job. US English (en-US) is the only language code available for 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"
REQUIRED VocabularyFileUri => Str
The location in Amazon S3 of the text file you use to define your custom vocabulary. The URI must be in the same AWS Region as the resource that you're calling. Enter information about your VocabularyFileUri
in the following format:
https://s3.<aws-region>.amazonaws.com/<bucket-name>/<keyprefix>/<objectkey>
The following is an example URI for a vocabulary file that is stored in Amazon S3:
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, see Medical Custom Vocabularies (http://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html#how-vocabulary-med).
REQUIRED VocabularyName => Str
The name of the custom vocabulary. This case-sensitive name must be unique within an AWS account. If you try to create a vocabulary with the same name as a previous vocabulary, you get a ConflictException
error.
SEE ALSO
This class forms part of Paws, documenting arguments for method CreateMedicalVocabulary in Paws::Transcribe
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues