File Coverage

blib/lib/Paws/CloudFront/GetStreamingDistributionConfigResult.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CloudFront::GetStreamingDistributionConfigResult;
3 1     1   385 use Moose;
  1         3  
  1         6  
4             has ETag => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'ETag');
5             has StreamingDistributionConfig => (is => 'ro', isa => 'Paws::CloudFront::StreamingDistributionConfig');
6              
7 1     1   5508 use MooseX::ClassAttribute;
  1         3  
  1         7  
8             class_has _payload => (is => 'ro', default => 'StreamingDistributionConfig');
9             has _request_id => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::CloudFront::GetStreamingDistributionConfigResult
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 StreamingDistributionConfig => L<Paws::CloudFront::StreamingDistributionConfig>
29              
30             The streaming distribution's configuration information.
31              
32              
33              
34              
35             =cut
36