File Coverage

blib/lib/Paws/CloudFront/CreateStreamingDistributionWithTagsResult.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CloudFront::CreateStreamingDistributionWithTagsResult;
3 1     1   816 use Moose;
  1         4  
  1         8  
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::CreateStreamingDistributionWithTagsResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 ETag => Str
21              
22              
23              
24              
25              
26             =head2 Location => Str
27              
28             The fully qualified URI of the new streaming distribution resource just
29             created. For example:C<
30             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