line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::WAF::ListWebACLsResponse; |
3
|
1
|
|
|
1
|
|
501
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has NextMarker => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has WebACLs => (is => 'ro', isa => 'ArrayRef[Paws::WAF::WebACLSummary]'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::WAF::ListWebACLsResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 NextMarker => Str |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
If you have more C<WebACL> objects than the number that you specified |
21
|
|
|
|
|
|
|
for C<Limit> in the request, the response includes a C<NextMarker> |
22
|
|
|
|
|
|
|
value. To list more C<WebACL> objects, submit another C<ListWebACLs> |
23
|
|
|
|
|
|
|
request, and specify the C<NextMarker> value from the response in the |
24
|
|
|
|
|
|
|
C<NextMarker> value in the next request. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 WebACLs => ArrayRef[L<Paws::WAF::WebACLSummary>] |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
An array of WebACLSummary objects. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 _request_id => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
1; |