line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudFront::CreateStreamingDistributionResult; |
3
|
1
|
|
|
1
|
|
721
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
12
|
|
4
|
|
|
|
|
|
|
has ETag => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'ETag'); |
5
|
|
|
|
|
|
|
has Location => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'Location'); |
6
|
|
|
|
|
|
|
has StreamingDistribution => (is => 'ro', isa => 'Paws::CloudFront::StreamingDistribution'); |
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::CreateStreamingDistributionResult |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 ETag => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The current version of the streaming distribution created. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 Location => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The fully qualified URI of the new streaming distribution resource just |
29
|
|
|
|
|
|
|
created. For example: |
30
|
|
|
|
|
|
|
C<https://cloudfront.amazonaws.com/2010-11-01/streaming-distribution/EGTXBD79H29TRA8>. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 StreamingDistribution => L<Paws::CloudFront::StreamingDistribution> |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
The streaming distribution's information. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=cut |
42
|
|
|
|
|
|
|
|