| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Polly::GetLexiconOutput; |
|
3
|
1
|
|
|
1
|
|
441
|
use Moose; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
|
|
has Lexicon => (is => 'ro', isa => 'Paws::Polly::Lexicon'); |
|
5
|
|
|
|
|
|
|
has LexiconAttributes => (is => 'ro', isa => 'Paws::Polly::LexiconAttributes'); |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
8
|
|
|
|
|
|
|
1; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::Polly::GetLexiconOutput |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 Lexicon => L<Paws::Polly::Lexicon> |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Lexicon object that provides name and the string content of the |
|
22
|
|
|
|
|
|
|
lexicon. |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 LexiconAttributes => L<Paws::Polly::LexiconAttributes> |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Metadata of the lexicon, including phonetic alphabetic used, language |
|
28
|
|
|
|
|
|
|
code, lexicon ARN, number of lexemes defined in the lexicon, and size |
|
29
|
|
|
|
|
|
|
of lexicon in bytes. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
|
36
|
|
|
|
|
|
|
|