File Coverage

blib/lib/Paws/LexModels/GetBotChannelAssociationResponse.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::GetBotChannelAssociationResponse;
3 1     1   552 use Moose;
  1         3  
  1         8  
4             has BotAlias => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'botAlias');
5             has BotConfiguration => (is => 'ro', isa => 'Paws::LexModels::ChannelConfigurationMap', traits => ['NameInRequest'], request_name => 'botConfiguration');
6             has BotName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'botName');
7             has CreatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'createdDate');
8             has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description');
9             has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name');
10             has Type => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'type');
11              
12             has _request_id => (is => 'ro', isa => 'Str');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::LexModels::GetBotChannelAssociationResponse
20              
21             =head1 ATTRIBUTES
22              
23              
24             =head2 BotAlias => Str
25              
26             An alias pointing to the specific version of the Amazon Lex bot to
27             which this association is being made.
28              
29              
30             =head2 BotConfiguration => L<Paws::LexModels::ChannelConfigurationMap>
31              
32             Provides information that the messaging platform needs to communicate
33             with the Amazon Lex bot.
34              
35              
36             =head2 BotName => Str
37              
38             The name of the Amazon Lex bot.
39              
40              
41             =head2 CreatedDate => Str
42              
43             The date that the association between the bot and the channel was
44             created.
45              
46              
47             =head2 Description => Str
48              
49             A description of the association between the bot and the channel.
50              
51              
52             =head2 Name => Str
53              
54             The name of the association between the bot and the channel.
55              
56              
57             =head2 Type => Str
58              
59             The type of the messaging platform.
60              
61             Valid values are: C<"Facebook">, C<"Slack">, C<"Twilio-Sms">
62             =head2 _request_id => Str
63              
64              
65             =cut
66