File Coverage

blib/lib/Paws/CloudFront/GetInvalidationResult.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CloudFront::GetInvalidationResult;
3 1     1   445 use Moose;
  1         2  
  1         6  
4             has Invalidation => (is => 'ro', isa => 'Paws::CloudFront::Invalidation');
5              
6 1     1   5779 use MooseX::ClassAttribute;
  1         2  
  1         6  
7             class_has _payload => (is => 'ro', default => 'Invalidation');
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::CloudFront::GetInvalidationResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Invalidation => L<Paws::CloudFront::Invalidation>
21              
22             The invalidation's information. For more information, see Invalidation
23             Complex Type.
24              
25              
26              
27              
28             =cut
29