line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::WAFRegional::GetWebACLResponse; |
3
|
1
|
|
|
1
|
|
637
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
14
|
|
4
|
|
|
|
|
|
|
has WebACL => (is => 'ro', isa => 'Paws::WAFRegional::WebACL'); |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::WAFRegional::GetWebACLResponse |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head2 WebACL => L<Paws::WAFRegional::WebACL> |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Information about the WebACL that you specified in the C<GetWebACL> |
20
|
|
|
|
|
|
|
request. For more information, see the following topics: |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=over |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=item * |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
WebACL: Contains C<DefaultAction>, C<MetricName>, C<Name>, an array of |
27
|
|
|
|
|
|
|
C<Rule> objects, and C<WebACLId> |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=item * |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
C<DefaultAction> (Data type is WafAction): Contains C<Type> |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=item * |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
C<Rules>: Contains an array of C<ActivatedRule> objects, which contain |
36
|
|
|
|
|
|
|
C<Action>, C<Priority>, and C<RuleId> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=item * |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
C<Action>: Contains C<Type> |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=back |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 _request_id => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=cut |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
1; |