File Coverage

blib/lib/Paws/WAF/GetWebACLResponse.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::GetWebACLResponse;
3 1     1   645 use Moose;
  1         3  
  1         11  
4             has WebACL => (is => 'ro', isa => 'Paws::WAF::WebACL');
5              
6             has _request_id => (is => 'ro', isa => 'Str');
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::WAF::GetWebACLResponse
13              
14             =head1 ATTRIBUTES
15              
16              
17             =head2 WebACL => L<Paws::WAF::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;