line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudFront::CreateStreamingDistributionResult; |
3
|
1
|
|
|
1
|
|
348
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
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
|
1
|
|
|
1
|
|
5542
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
9
|
|
|
|
|
|
|
class_has _payload => (is => 'ro', default => 'StreamingDistribution'); |
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::CloudFront::CreateStreamingDistributionResult |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 ETag => Str |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The current version of the streaming distribution created. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 Location => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
The fully qualified URI of the new streaming distribution resource just |
31
|
|
|
|
|
|
|
created. For example: |
32
|
|
|
|
|
|
|
C<https://cloudfront.amazonaws.com/2010-11-01/streaming-distribution/EGTXBD79H29TRA8>. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 StreamingDistribution => L<Paws::CloudFront::StreamingDistribution> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
The streaming distribution's information. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
44
|
|
|
|
|
|
|
|