File Coverage

blib/lib/Paws/WAF/GetRuleResponse.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::GetRuleResponse;
3 1     1   514 use Moose;
  1         5  
  1         11  
4             has Rule => (is => 'ro', isa => 'Paws::WAF::Rule');
5              
6             has _request_id => (is => 'ro', isa => 'Str');
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::WAF::GetRuleResponse
13              
14             =head1 ATTRIBUTES
15              
16              
17             =head2 Rule => L<Paws::WAF::Rule>
18              
19             Information about the Rule that you specified in the C<GetRule>
20             request. For more information, see the following topics:
21              
22             =over
23              
24             =item *
25              
26             Rule: Contains C<MetricName>, C<Name>, an array of C<Predicate>
27             objects, and C<RuleId>
28              
29             =item *
30              
31             Predicate: Each C<Predicate> object contains C<DataId>, C<Negated>, and
32             C<Type>
33              
34             =back
35              
36              
37              
38             =head2 _request_id => Str
39              
40              
41             =cut
42              
43             1;