File Coverage

blib/lib/Paws/ElasticBeanstalk/Latency.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             package Paws::ElasticBeanstalk::Latency;
2 1     1   466 use Moose;
  1         3  
  1         6  
3             has P10 => (is => 'ro', isa => 'Num');
4             has P50 => (is => 'ro', isa => 'Num');
5             has P75 => (is => 'ro', isa => 'Num');
6             has P85 => (is => 'ro', isa => 'Num');
7             has P90 => (is => 'ro', isa => 'Num');
8             has P95 => (is => 'ro', isa => 'Num');
9             has P99 => (is => 'ro', isa => 'Num');
10             has P999 => (is => 'ro', isa => 'Num');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::ElasticBeanstalk::Latency
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::ElasticBeanstalk::Latency object:
29              
30             $service_obj->Method(Att1 => { P10 => $value, ..., P999 => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::ElasticBeanstalk::Latency object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->P10
38              
39             =head1 DESCRIPTION
40              
41             Represents the average latency for the slowest X percent of requests
42             over the last 10 seconds.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 P10 => Num
48              
49             The average latency for the slowest 90 percent of requests over the
50             last 10 seconds.
51              
52              
53             =head2 P50 => Num
54              
55             The average latency for the slowest 50 percent of requests over the
56             last 10 seconds.
57              
58              
59             =head2 P75 => Num
60              
61             The average latency for the slowest 25 percent of requests over the
62             last 10 seconds.
63              
64              
65             =head2 P85 => Num
66              
67             The average latency for the slowest 15 percent of requests over the
68             last 10 seconds.
69              
70              
71             =head2 P90 => Num
72              
73             The average latency for the slowest 10 percent of requests over the
74             last 10 seconds.
75              
76              
77             =head2 P95 => Num
78              
79             The average latency for the slowest 5 percent of requests over the last
80             10 seconds.
81              
82              
83             =head2 P99 => Num
84              
85             The average latency for the slowest 1 percent of requests over the last
86             10 seconds.
87              
88              
89             =head2 P999 => Num
90              
91             The average latency for the slowest 0.1 percent of requests over the
92             last 10 seconds.
93              
94              
95              
96             =head1 SEE ALSO
97              
98             This class forms part of L<Paws>, describing an object used in L<Paws::ElasticBeanstalk>
99              
100             =head1 BUGS and CONTRIBUTIONS
101              
102             The source code is located here: https://github.com/pplu/aws-sdk-perl
103              
104             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
105              
106             =cut
107