PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::Polly::StartSpeechSynthesisTask; use Moose; has Engine => (is => 'ro', isa => 'Str'); has LanguageCode => (is => 'ro', isa => 'Str'); has LexiconNames => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has OutputFormat => (is => 'ro', isa => 'Str', required => 1); has OutputS3BucketName => (is => 'ro', isa => 'Str', required => 1); has OutputS3KeyPrefix => (is => 'ro', isa => 'Str'); has SampleRate => (is => 'ro', isa => 'Str'); has SnsTopicArn => (is => 'ro', isa => 'Str'); has SpeechMarkTypes => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has Text => (is => 'ro', isa => 'Str', required => 1); has TextType => (is => 'ro', isa => 'Str'); has VoiceId => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'StartSpeechSynthesisTask'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/v1/synthesisTasks'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Polly::StartSpeechSynthesisTaskOutput'); 1; ### main pod documentation begin ### =head1 NAME Paws::Polly::StartSpeechSynthesisTask - Arguments for method StartSpeechSynthesisTask on L =head1 DESCRIPTION This class represents the parameters used for calling the method StartSpeechSynthesisTask on the L service. Use the attributes of this class as arguments to method StartSpeechSynthesisTask. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to StartSpeechSynthesisTask. =head1 SYNOPSIS my $polly = Paws->service('Polly'); my $StartSpeechSynthesisTaskOutput = $polly->StartSpeechSynthesisTask( OutputFormat => 'json', OutputS3BucketName => 'MyOutputS3BucketName', Text => 'MyText', VoiceId => 'Aditi', Engine => 'standard', # OPTIONAL LanguageCode => 'arb', # OPTIONAL LexiconNames => [ 'MyLexiconName', ... ], # OPTIONAL OutputS3KeyPrefix => 'MyOutputS3KeyPrefix', # OPTIONAL SampleRate => 'MySampleRate', # OPTIONAL SnsTopicArn => 'MySnsTopicArn', # OPTIONAL SpeechMarkTypes => [ 'sentence', ... # values: sentence, ssml, viseme, word ], # OPTIONAL TextType => 'ssml', # OPTIONAL ); # Results: my $SynthesisTask = $StartSpeechSynthesisTaskOutput->SynthesisTask; # Returns a L 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 L =head1 ATTRIBUTES =head2 Engine => Str Specifies the engine (C or C) for Amazon Polly to use when processing input text for speech synthesis. Using a voice that is not supported for the engine selected will result in an error. Valid values are: C<"standard">, C<"neural"> =head2 LanguageCode => Str Optional language code for the Speech Synthesis request. This is only necessary if using a bilingual voice, such as Aditi, which can be used for either Indian English (en-IN) or Hindi (hi-IN). If a bilingual voice is used and no language code is specified, Amazon Polly will use the default language of the bilingual voice. The default language for any voice is the one returned by the DescribeVoices (https://docs.aws.amazon.com/polly/latest/dg/API_DescribeVoices.html) operation for the C parameter. For example, if no language code is specified, Aditi will use Indian English rather than Hindi. Valid values are: C<"arb">, C<"cmn-CN">, C<"cy-GB">, C<"da-DK">, C<"de-DE">, C<"en-AU">, C<"en-GB">, C<"en-GB-WLS">, C<"en-IN">, C<"en-US">, C<"es-ES">, C<"es-MX">, C<"es-US">, C<"fr-CA">, C<"fr-FR">, C<"is-IS">, C<"it-IT">, C<"ja-JP">, C<"hi-IN">, C<"ko-KR">, C<"nb-NO">, C<"nl-NL">, C<"pl-PL">, C<"pt-BR">, C<"pt-PT">, C<"ro-RO">, C<"ru-RU">, C<"sv-SE">, C<"tr-TR"> =head2 LexiconNames => ArrayRef[Str|Undef] List of one or more pronunciation lexicon names you want the service to apply during synthesis. Lexicons are applied only if the language of the lexicon is the same as the language of the voice. =head2 B OutputFormat => Str The format in which the returned output will be encoded. For audio stream, this will be mp3, ogg_vorbis, or pcm. For speech marks, this will be json. Valid values are: C<"json">, C<"mp3">, C<"ogg_vorbis">, C<"pcm"> =head2 B OutputS3BucketName => Str Amazon S3 bucket name to which the output file will be saved. =head2 OutputS3KeyPrefix => Str The Amazon S3 key prefix for the output speech file. =head2 SampleRate => Str The audio frequency specified in Hz. The valid values for mp3 and ogg_vorbis are "8000", "16000", "22050", and "24000". The default value for standard voices is "22050". The default value for neural voices is "24000". Valid values for pcm are "8000" and "16000" The default value is "16000". =head2 SnsTopicArn => Str ARN for the SNS topic optionally used for providing status notification for a speech synthesis task. =head2 SpeechMarkTypes => ArrayRef[Str|Undef] The type of speech marks returned for the input text. =head2 B Text => Str The input text to synthesize. If you specify ssml as the TextType, follow the SSML format for the input text. =head2 TextType => Str Specifies whether the input text is plain text or SSML. The default value is plain text. Valid values are: C<"ssml">, C<"text"> =head2 B VoiceId => Str Voice ID to use for the synthesis. Valid values are: C<"Aditi">, C<"Amy">, C<"Astrid">, C<"Bianca">, C<"Brian">, C<"Camila">, C<"Carla">, C<"Carmen">, C<"Celine">, C<"Chantal">, C<"Conchita">, C<"Cristiano">, C<"Dora">, C<"Emma">, C<"Enrique">, C<"Ewa">, C<"Filiz">, C<"Gabrielle">, C<"Geraint">, C<"Giorgio">, C<"Gwyneth">, C<"Hans">, C<"Ines">, C<"Ivy">, C<"Jacek">, C<"Jan">, C<"Joanna">, C<"Joey">, C<"Justin">, C<"Karl">, C<"Kendra">, C<"Kevin">, C<"Kimberly">, C<"Lea">, C<"Liv">, C<"Lotte">, C<"Lucia">, C<"Lupe">, C<"Mads">, C<"Maja">, C<"Marlene">, C<"Mathieu">, C<"Matthew">, C<"Maxim">, C<"Mia">, C<"Miguel">, C<"Mizuki">, C<"Naja">, C<"Nicole">, C<"Olivia">, C<"Penelope">, C<"Raveena">, C<"Ricardo">, C<"Ruben">, C<"Russell">, C<"Salli">, C<"Seoyeon">, C<"Takumi">, C<"Tatyana">, C<"Vicki">, C<"Vitoria">, C<"Zeina">, C<"Zhiyu"> =head1 SEE ALSO This class forms part of L, documenting arguments for method StartSpeechSynthesisTask in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut