line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudFront::UpdateStreamingDistributionResult; |
3
|
1
|
|
|
1
|
|
372
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has ETag => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'ETag'); |
5
|
|
|
|
|
|
|
has StreamingDistribution => (is => 'ro', isa => 'Paws::CloudFront::StreamingDistribution'); |
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
5461
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
8
|
|
|
|
|
|
|
class_has _payload => (is => 'ro', default => 'StreamingDistribution'); |
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::CloudFront::UpdateStreamingDistributionResult |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 ETag => Str |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The current version of the configuration. For example: |
24
|
|
|
|
|
|
|
C<E2QWRUHAPOMQZL>. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 StreamingDistribution => L<Paws::CloudFront::StreamingDistribution> |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
The streaming distribution's information. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
36
|
|
|
|
|
|
|
|