File Coverage

blib/lib/Paws/WAFRegional/GetSampledRequestsResponse.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::WAFRegional::GetSampledRequestsResponse;
3 1     1   590 use Moose;
  1         3  
  1         10  
4             has PopulationSize => (is => 'ro', isa => 'Int');
5             has SampledRequests => (is => 'ro', isa => 'ArrayRef[Paws::WAFRegional::SampledHTTPRequest]');
6             has TimeWindow => (is => 'ro', isa => 'Paws::WAFRegional::TimeWindow');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::WAFRegional::GetSampledRequestsResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 PopulationSize => Int
20              
21             The total number of requests from which C<GetSampledRequests> got a
22             sample of C<MaxItems> requests. If C<PopulationSize> is less than
23             C<MaxItems>, the sample includes every request that your AWS resource
24             received during the specified time range.
25              
26              
27             =head2 SampledRequests => ArrayRef[L<Paws::WAFRegional::SampledHTTPRequest>]
28              
29             A complex type that contains detailed information about each of the
30             requests in the sample.
31              
32              
33             =head2 TimeWindow => L<Paws::WAFRegional::TimeWindow>
34              
35             Usually, C<TimeWindow> is the time range that you specified in the
36             C<GetSampledRequests> request. However, if your AWS resource received
37             more than 5,000 requests during the time range that you specified in
38             the request, C<GetSampledRequests> returns the time range for the first
39             5,000 requests.
40              
41              
42             =head2 _request_id => Str
43              
44              
45             =cut
46              
47             1;