line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::LexModels::PutBotAliasResponse; |
3
|
1
|
|
|
1
|
|
457
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has BotName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'botName'); |
5
|
|
|
|
|
|
|
has BotVersion => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'botVersion'); |
6
|
|
|
|
|
|
|
has Checksum => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'checksum'); |
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 LastUpdatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'lastUpdatedDate'); |
10
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name'); |
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::PutBotAliasResponse |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 BotName => Str |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
The name of the bot that the alias points to. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 BotVersion => Str |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The version of the bot that the alias points to. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 Checksum => Str |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
The checksum for the current version of the alias. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 CreatedDate => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The date that the bot alias was created. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 Description => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
A description of the alias. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 LastUpdatedDate => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The date that the bot alias was updated. When you create a resource, |
52
|
|
|
|
|
|
|
the creation date and the last updated date are the same. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 Name => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
The name of the alias. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head2 _request_id => Str |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=cut |
64
|
|
|
|
|
|
|
|