File Coverage

blib/lib/Paws/Polly/LexiconAttributes.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::Polly::LexiconAttributes;
2 1     1   548 use Moose;
  1         3  
  1         12  
3             has Alphabet => (is => 'ro', isa => 'Str');
4             has LanguageCode => (is => 'ro', isa => 'Str');
5             has LastModified => (is => 'ro', isa => 'Str');
6             has LexemesCount => (is => 'ro', isa => 'Int');
7             has LexiconArn => (is => 'ro', isa => 'Str');
8             has Size => (is => 'ro', isa => 'Int');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::Polly::LexiconAttributes
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::Polly::LexiconAttributes object:
27              
28             $service_obj->Method(Att1 => { Alphabet => $value, ..., Size => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::Polly::LexiconAttributes object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->Alphabet
36              
37             =head1 DESCRIPTION
38              
39             Contains metadata describing the lexicon such as the number of lexemes,
40             language code, and so on. For more information, see Managing Lexicons.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 Alphabet => Str
46              
47             Phonetic alphabet used in the lexicon. Valid values are C<ipa> and
48             C<x-sampa>.
49              
50              
51             =head2 LanguageCode => Str
52              
53             Language code that the lexicon applies to. A lexicon with a language
54             code such as "en" would be applied to all English languages (en-GB,
55             en-US, en-AUS, en-WLS, and so on.
56              
57              
58             =head2 LastModified => Str
59              
60             Date lexicon was last modified (a timestamp value).
61              
62              
63             =head2 LexemesCount => Int
64              
65             Number of lexemes in the lexicon.
66              
67              
68             =head2 LexiconArn => Str
69              
70             Amazon Resource Name (ARN) of the lexicon.
71              
72              
73             =head2 Size => Int
74              
75             Total size of the lexicon, in characters.
76              
77              
78              
79             =head1 SEE ALSO
80              
81             This class forms part of L<Paws>, describing an object used in L<Paws::Polly>
82              
83             =head1 BUGS and CONTRIBUTIONS
84              
85             The source code is located here: https://github.com/pplu/aws-sdk-perl
86              
87             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
88              
89             =cut
90