![]() |
![]()
| ![]() |
![]()
NAMEPaws::Polly::Voice USAGEThis class represents one of two things: Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::Polly::Voice object: $service_obj->Method(Att1 => { AdditionalLanguageCodes => $value, ..., SupportedEngines => $value }); Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Polly::Voice object: $result = $service_obj->Method(...); $result->Att1->AdditionalLanguageCodes DESCRIPTIONDescription of the voice. ATTRIBUTESAdditionalLanguageCodes => ArrayRef[Str|Undef]Additional codes for languages available for the specified voice in addition to its default language. For example, the default language for Aditi is Indian English (en-IN) because it was first used for that language. Since Aditi is bilingual and fluent in both Indian English and Hindi, this parameter would show the code "hi-IN". Gender => StrGender of the voice. Id => StrAmazon Polly assigned voice ID. This is the ID that you specify when calling the "SynthesizeSpeech" operation. LanguageCode => StrLanguage code of the voice. LanguageName => StrHuman readable name of the language in English. Name => StrName of the voice (for example, Salli, Kendra, etc.). This provides a human readable voice name that you might display in your application. SupportedEngines => ArrayRef[Str|Undef]Specifies which engines ("standard" or "neural") that are supported by a given voice. SEE ALSOThis class forms part of Paws, describing an object used in Paws::Polly 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>
|