line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ElasticBeanstalk::DescribeEnvironmentHealthResult; |
3
|
1
|
|
|
1
|
|
450
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has ApplicationMetrics => (is => 'ro', isa => 'Paws::ElasticBeanstalk::ApplicationMetrics'); |
5
|
|
|
|
|
|
|
has Causes => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
6
|
|
|
|
|
|
|
has Color => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has EnvironmentName => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has HealthStatus => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has InstancesHealth => (is => 'ro', isa => 'Paws::ElasticBeanstalk::InstanceHealthSummary'); |
10
|
|
|
|
|
|
|
has RefreshedAt => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
### main pod documentation begin ### |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Paws::ElasticBeanstalk::DescribeEnvironmentHealthResult |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 ApplicationMetrics => L<Paws::ElasticBeanstalk::ApplicationMetrics> |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Application request metrics for the environment. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 Causes => ArrayRef[Str|Undef] |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Descriptions of the data that contributed to the environment's current |
33
|
|
|
|
|
|
|
health status. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 Color => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
The health color of the environment. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 EnvironmentName => Str |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
The environment's name. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 HealthStatus => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The health status of the environment. For example, C<Ok>. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 InstancesHealth => L<Paws::ElasticBeanstalk::InstanceHealthSummary> |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
Summary health information for the instances in the environment. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 RefreshedAt => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The date and time that the health information was retrieved. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 Status => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
The environment's operational status. C<Ready>, C<Launching>, |
64
|
|
|
|
|
|
|
C<Updating>, C<Terminating>, or C<Terminated>. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
Valid values are: C<"Green">, C<"Yellow">, C<"Red">, C<"Grey"> |
67
|
|
|
|
|
|
|
=head2 _request_id => Str |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |
71
|
|
|
|
|
|
|
|