File Coverage

blib/lib/Paws/CloudFront/CreateCloudFrontOriginAccessIdentityResult.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::CreateCloudFrontOriginAccessIdentityResult;
3 1     1   600 use Moose;
  1         2  
  1         11  
4             has CloudFrontOriginAccessIdentity => (is => 'ro', isa => 'Paws::CloudFront::CloudFrontOriginAccessIdentity');
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::CreateCloudFrontOriginAccessIdentityResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 CloudFrontOriginAccessIdentity => L<Paws::CloudFront::CloudFrontOriginAccessIdentity>
21              
22             The origin access identity's information.
23              
24              
25              
26             =head2 ETag => Str
27              
28             The current version of the origin access identity created.
29              
30              
31              
32             =head2 Location => Str
33              
34             The fully qualified URI of the new origin access identity just created.
35             For example:
36             C<https://cloudfront.amazonaws.com/2010-11-01/origin-access-identity/cloudfront/E74FTE3AJFJ256A>.
37              
38              
39              
40              
41             =cut
42