File Coverage

blib/lib/Paws/LexModels/GetBotAliasesResponse.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              
2             package Paws::LexModels::GetBotAliasesResponse;
3 1     1   528 use Moose;
  1         6  
  1         13  
4             has BotAliases => (is => 'ro', isa => 'ArrayRef[Paws::LexModels::BotAliasMetadata]');
5             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::LexModels::GetBotAliasesResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 BotAliases => ArrayRef[L<Paws::LexModels::BotAliasMetadata>]
20              
21             An array of C<BotAliasMetadata> objects, each describing a bot alias.
22              
23              
24             =head2 NextToken => Str
25              
26             A pagination token for fetching next page of aliases. If the response
27             to this call is truncated, Amazon Lex returns a pagination token in the
28             response. To fetch the next page of aliases, specify the pagination
29             token in the next request.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36