UpdateMedicalVocabularyRequest
public struct UpdateMedicalVocabularyRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The 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.
Declaration
Swift
public let languageCode: LanguageCode
-
The 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 in the Amazon S3 Developer Guide. For more information about custom vocabularies in Amazon Transcribe Medical, see Medical Custom Vocabularies.
Declaration
Swift
public let vocabularyFileUri: String?
-
The 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.
Declaration
Swift
public let vocabularyName: String
-
Undocumented
Declaration
Swift
public init(languageCode: LanguageCode, vocabularyFileUri: String? = nil, vocabularyName: String)
-
Declaration
Swift
public func validate(name: String) throws