File Coverage

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