File Coverage

blib/lib/Paws/CloudFront/CreateDistributionWithTagsResult.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::CloudFront::CreateDistributionWithTagsResult;
3 1     1   1524 use Moose;
  1         5  
  1         67  
4             has Distribution => (is => 'ro', isa => 'Paws::CloudFront::Distribution');
5             has ETag => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'ETag');
6             has Location => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'Location');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::CloudFront::CreateDistributionWithTagsResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Distribution => L<Paws::CloudFront::Distribution>
21              
22             The distribution's information.
23              
24              
25              
26             =head2 ETag => Str
27              
28             The current version of the distribution created.
29              
30              
31              
32             =head2 Location => Str
33              
34             The fully qualified URI of the new distribution resource just created.
35             For example:
36             C<https://cloudfront.amazonaws.com/2010-11-01/distribution/EDFDVBD632BHDS5>.
37              
38              
39              
40              
41             =cut
42