File Coverage

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