File Coverage

blib/lib/Paws/WAF/GetByteMatchSetResponse.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::GetByteMatchSetResponse;
3 1     1   611 use Moose;
  1         3  
  1         10  
4             has ByteMatchSet => (is => 'ro', isa => 'Paws::WAF::ByteMatchSet');
5              
6             has _request_id => (is => 'ro', isa => 'Str');
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::WAF::GetByteMatchSetResponse
13              
14             =head1 ATTRIBUTES
15              
16              
17             =head2 ByteMatchSet => L<Paws::WAF::ByteMatchSet>
18              
19             Information about the ByteMatchSet that you specified in the
20             C<GetByteMatchSet> request. For more information, see the following
21             topics:
22              
23             =over
24              
25             =item *
26              
27             ByteMatchSet: Contains C<ByteMatchSetId>, C<ByteMatchTuples>, and
28             C<Name>
29              
30             =item *
31              
32             C<ByteMatchTuples>: Contains an array of ByteMatchTuple objects. Each
33             C<ByteMatchTuple> object contains FieldToMatch,
34             C<PositionalConstraint>, C<TargetString>, and C<TextTransformation>
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;