line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudFront::CreateDistributionResult; |
3
|
1
|
|
|
1
|
|
404
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
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::CreateDistributionResult |
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
|
|
|
|
|
|
|
|