line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::WAF::ListSqlInjectionMatchSetsResponse; |
3
|
1
|
|
|
1
|
|
734
|
use Moose; |
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
13
|
|
4
|
|
|
|
|
|
|
has NextMarker => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has SqlInjectionMatchSets => (is => 'ro', isa => 'ArrayRef[Paws::WAF::SqlInjectionMatchSetSummary]'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::WAF::ListSqlInjectionMatchSetsResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 NextMarker => Str |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
If you have more SqlInjectionMatchSet 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<SqlInjectionMatchSet> objects, |
23
|
|
|
|
|
|
|
submit another C<ListSqlInjectionMatchSets> 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 SqlInjectionMatchSets => ArrayRef[L<Paws::WAF::SqlInjectionMatchSetSummary>] |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
An array of SqlInjectionMatchSetSummary objects. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 _request_id => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
1; |