File Coverage

blib/lib/Paws/WAF/CreateRateBasedRuleResponse.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::CreateRateBasedRuleResponse;
3 1     1   435 use Moose;
  1         3  
  1         8  
4             has ChangeToken => (is => 'ro', isa => 'Str');
5             has Rule => (is => 'ro', isa => 'Paws::WAF::RateBasedRule');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::WAF::CreateRateBasedRuleResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 ChangeToken => Str
19              
20             The C<ChangeToken> that you used to submit the C<CreateRateBasedRule>
21             request. You can also use this value to query the status of the
22             request. For more information, see GetChangeTokenStatus.
23              
24              
25             =head2 Rule => L<Paws::WAF::RateBasedRule>
26              
27             The RateBasedRule that is returned in the C<CreateRateBasedRule>
28             response.
29              
30              
31             =head2 _request_id => Str
32              
33              
34             =cut
35              
36             1;