File Coverage

blib/lib/Paws/CloudFront/CreateInvalidationResult.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::CreateInvalidationResult;
3 1     1   709 use Moose;
  1     1   4  
  1         9  
  1         525  
  1         3  
  1         10  
4             has Invalidation => (is => 'ro', isa => 'Paws::CloudFront::Invalidation');
5             has Location => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'Location');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CloudFront::CreateInvalidationResult
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Invalidation => L<Paws::CloudFront::Invalidation>
20              
21             The invalidation's information.
22              
23              
24              
25             =head2 Location => Str
26              
27             The fully qualified URI of the distribution and invalidation batch
28             request, including the C<Invalidation ID>.
29              
30              
31              
32              
33             =cut
34