NAME

Paws::Polly::DescribeVoices - Arguments for method DescribeVoices on Paws::Polly

DESCRIPTION

This class represents the parameters used for calling the method DescribeVoices on the Amazon Polly service. Use the attributes of this class as arguments to method DescribeVoices.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeVoices.

SYNOPSIS

  my $polly = Paws->service('Polly');
# To describe available voices
# Returns the list of voices that are available for use when requesting speech
# synthesis. Displayed languages are those within the specified language code.
# If no language code is specified, voices for all available languages are
# displayed.
  my $DescribeVoicesOutput =
    $polly->DescribeVoices( 'LanguageCode' => 'en-GB' );

  # Results:
  my $Voices = $DescribeVoicesOutput->Voices;

  # Returns a L<Paws::Polly::DescribeVoicesOutput> 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/polly/DescribeVoices

ATTRIBUTES

Engine => Str

Specifies the engine (standard or neural) used by Amazon Polly when processing input text for speech synthesis.

Valid values are: "standard", "neural"

IncludeAdditionalLanguageCodes => Bool

Boolean value indicating whether to return any bilingual voices that use the specified language as an additional language. For instance, if you request all languages that use US English (es-US), and there is an Italian voice that speaks both Italian (it-IT) and US English, that voice will be included if you specify yes but not if you specify no.

LanguageCode => Str

The language identification tag (ISO 639 code for the language name-ISO 3166 country code) for filtering the list of voices returned. If you don't specify this optional parameter, all available voices are returned.

Valid values are: "arb", "cmn-CN", "cy-GB", "da-DK", "de-DE", "en-AU", "en-GB", "en-GB-WLS", "en-IN", "en-US", "es-ES", "es-MX", "es-US", "fr-CA", "fr-FR", "is-IS", "it-IT", "ja-JP", "hi-IN", "ko-KR", "nb-NO", "nl-NL", "pl-PL", "pt-BR", "pt-PT", "ro-RO", "ru-RU", "sv-SE", "tr-TR"

NextToken => Str

An opaque pagination token returned from the previous DescribeVoices operation. If present, this indicates where to continue the listing.

SEE ALSO

This class forms part of Paws, documenting arguments for method DescribeVoices in Paws::Polly

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