File Coverage

blib/lib/Paws/WAFRegional/ListWebACLsResponse.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::ListWebACLsResponse;
3 1     1   669 use Moose;
  1         4  
  1         9  
4             has NextMarker => (is => 'ro', isa => 'Str');
5             has WebACLs => (is => 'ro', isa => 'ArrayRef[Paws::WAFRegional::WebACLSummary]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::WAFRegional::ListWebACLsResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 NextMarker => Str
19              
20             If you have more C<WebACL> objects than the number that you specified
21             for C<Limit> in the request, the response includes a C<NextMarker>
22             value. To list more C<WebACL> objects, submit another C<ListWebACLs>
23             request, and specify the C<NextMarker> value from the response in the
24             C<NextMarker> value in the next request.
25              
26              
27             =head2 WebACLs => ArrayRef[L<Paws::WAFRegional::WebACLSummary>]
28              
29             An array of WebACLSummary objects.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36              
37             1;