File Coverage

blib/lib/Paws/WAFRegional/GetSizeConstraintSetResponse.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::GetSizeConstraintSetResponse;
3 1     1   652 use Moose;
  1         3  
  1         11  
4             has SizeConstraintSet => (is => 'ro', isa => 'Paws::WAFRegional::SizeConstraintSet');
5              
6             has _request_id => (is => 'ro', isa => 'Str');
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::WAFRegional::GetSizeConstraintSetResponse
13              
14             =head1 ATTRIBUTES
15              
16              
17             =head2 SizeConstraintSet => L<Paws::WAFRegional::SizeConstraintSet>
18              
19             Information about the SizeConstraintSet that you specified in the
20             C<GetSizeConstraintSet> request. For more information, see the
21             following topics:
22              
23             =over
24              
25             =item *
26              
27             SizeConstraintSet: Contains C<SizeConstraintSetId>, C<SizeConstraints>,
28             and C<Name>
29              
30             =item *
31              
32             C<SizeConstraints>: Contains an array of SizeConstraint objects. Each
33             C<SizeConstraint> object contains FieldToMatch, C<TextTransformation>,
34             C<ComparisonOperator>, and C<Size>
35              
36             =item *
37              
38             FieldToMatch: Contains C<Data> and C<Type>
39              
40             =back
41              
42              
43              
44             =head2 _request_id => Str
45              
46              
47             =cut
48              
49             1;