| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::LexModels::GetBotChannelAssociationsResponse; |
|
3
|
1
|
|
|
1
|
|
559
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
|
|
has BotChannelAssociations => (is => 'ro', isa => 'ArrayRef[Paws::LexModels::BotChannelAssociation]', traits => ['NameInRequest'], request_name => 'botChannelAssociations'); |
|
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::GetBotChannelAssociationsResponse |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 BotChannelAssociations => ArrayRef[L<Paws::LexModels::BotChannelAssociation>] |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
An array of objects, one for each association, that provides |
|
22
|
|
|
|
|
|
|
information about the Amazon Lex bot and its association with the |
|
23
|
|
|
|
|
|
|
channel. |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 NextToken => Str |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
A pagination token that fetches the next page of associations. If the |
|
29
|
|
|
|
|
|
|
response to this call is truncated, Amazon Lex returns a pagination |
|
30
|
|
|
|
|
|
|
token in the response. To fetch the next page of associations, specify |
|
31
|
|
|
|
|
|
|
the pagination token in the next request. |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=cut |
|
38
|
|
|
|
|
|
|
|