File Coverage

blib/lib/Paws/CloudFront/CreateStreamingDistributionWithTagsResult.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::CreateStreamingDistributionWithTagsResult;
3 1     1   365 use Moose;
  1         2  
  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   6327 use MooseX::ClassAttribute;
  1         3  
  1         9  
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::CreateStreamingDistributionWithTagsResult
18              
19             =head1 ATTRIBUTES
20              
21              
22             =head2 ETag => Str
23              
24              
25              
26              
27              
28             =head2 Location => Str
29              
30             The fully qualified URI of the new streaming distribution resource just
31             created. For example:C<
32             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