File Coverage

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