line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::ElasticBeanstalk::EventDescription; |
2
|
1
|
|
|
1
|
|
468
|
use Moose; |
|
1
|
|
|
1
|
|
4
|
|
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
730
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
3
|
|
|
|
|
|
|
has ApplicationName => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has EnvironmentName => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has EventDate => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has Message => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has PlatformArn => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has RequestId => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has Severity => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has TemplateName => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
has VersionLabel => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
### main pod documentation begin ### |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Paws::ElasticBeanstalk::EventDescription |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 USAGE |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
This class represents one of two things: |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
27
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::ElasticBeanstalk::EventDescription object: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { ApplicationName => $value, ..., VersionLabel => $value }); |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head3 Results returned from an API call |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::ElasticBeanstalk::EventDescription object: |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
38
|
|
|
|
|
|
|
$result->Att1->ApplicationName |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 DESCRIPTION |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Describes an event. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 ApplicationName => Str |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
The application associated with the event. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 EnvironmentName => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
The name of the environment associated with this event. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 EventDate => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The date when the event occurred. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 Message => Str |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The event message. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 PlatformArn => Str |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
The ARN of the custom platform. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 RequestId => Str |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
The web service request ID for the activity of this event. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 Severity => Str |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
The severity level of this event. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head2 TemplateName => Str |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
The name of the configuration associated with this event. |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head2 VersionLabel => Str |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
The release label for the application version associated with this |
90
|
|
|
|
|
|
|
event. |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
=head1 SEE ALSO |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::ElasticBeanstalk> |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
=cut |
105
|
|
|
|
|
|
|
|