line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::WAFRegional::GetByteMatchSetResponse; |
3
|
1
|
|
|
1
|
|
439
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has ByteMatchSet => (is => 'ro', isa => 'Paws::WAFRegional::ByteMatchSet'); |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::WAFRegional::GetByteMatchSetResponse |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head2 ByteMatchSet => L<Paws::WAFRegional::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; |